summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2013-12-07 17:54:11 +0100
committerMichael Vogt <mvo@debian.org>2013-12-07 17:54:11 +0100
commit8fafb8adc032002284f53359e1308efa609f9239 (patch)
tree2348ae1953446a069c0e44bcd20915c22c4d89b1
parentbc435af429f427c6a5db971c3d4cc7f15a2fe55d (diff)
parentce34af08ad6866869147e3525fa6c89d8dcb4601 (diff)
Merge branch 'debian/sid' into ubuntu/master
Conflicts: debian/changelog debian/gbp.conf
-rw-r--r--apt-pkg/deb/dpkgpm.h1
-rw-r--r--apt-pkg/install-progress.cc32
-rw-r--r--apt-pkg/install-progress.h9
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog27
-rw-r--r--debian/gbp.conf1
-rw-r--r--debian/libapt-pkg4.12.symbols82
-rw-r--r--doc/apt-verbatim.ent2
-rw-r--r--doc/makefile2
-rw-r--r--doc/po/apt-doc.pot1350
-rw-r--r--doc/po/de.po1459
-rw-r--r--doc/po/es.po1452
-rw-r--r--doc/po/fr.po1444
-rw-r--r--doc/po/it.po1454
-rw-r--r--doc/po/ja.po1449
-rw-r--r--doc/po/pl.po1431
-rw-r--r--doc/po/pt.po1450
-rw-r--r--doc/po/pt_BR.po1395
-rw-r--r--po/ar.po1774
-rw-r--r--po/ast.po1856
-rw-r--r--po/bg.po1868
-rw-r--r--po/bs.po1683
-rw-r--r--po/ca.po1878
-rw-r--r--po/cs.po1866
-rw-r--r--po/cy.po1855
-rw-r--r--po/da.po1866
-rw-r--r--po/de.po1895
-rw-r--r--po/dz.po1838
-rw-r--r--po/el.po1859
-rw-r--r--po/es.po1881
-rw-r--r--po/eu.po1853
-rw-r--r--po/fi.po1855
-rw-r--r--po/fr.po1914
-rw-r--r--po/gl.po1879
-rw-r--r--po/hu.po1866
-rw-r--r--po/it.po1895
-rw-r--r--po/ja.po1867
-rw-r--r--po/km.po1818
-rw-r--r--po/ko.po1848
-rw-r--r--po/ku.po1696
-rw-r--r--po/lt.po1803
-rw-r--r--po/mr.po1840
-rw-r--r--po/nb.po1867
-rw-r--r--po/ne.po1826
-rw-r--r--po/nl.po1880
-rw-r--r--po/nn.po1840
-rw-r--r--po/pl.po1911
-rw-r--r--po/pt.po1871
-rw-r--r--po/pt_BR.po1859
-rw-r--r--po/ro.po1862
-rw-r--r--po/ru.po1894
-rw-r--r--po/sk.po1878
-rw-r--r--po/sl.po1889
-rw-r--r--po/sv.po1882
-rw-r--r--po/th.po1819
-rw-r--r--po/tl.po1842
-rw-r--r--po/tr.po1877
-rw-r--r--po/uk.po1887
-rw-r--r--po/vi.po1850
-rw-r--r--po/zh_CN.po1815
-rw-r--r--po/zh_TW.po1818
-rwxr-xr-xprepare-release41
-rw-r--r--vendor/debian/makefile2
-rw-r--r--vendor/makefile3
-rw-r--r--vendor/ubuntu/makefile2
65 files changed, 48054 insertions, 44656 deletions
diff --git a/apt-pkg/deb/dpkgpm.h b/apt-pkg/deb/dpkgpm.h
index 06318d94f..02e12a6d9 100644
--- a/apt-pkg/deb/dpkgpm.h
+++ b/apt-pkg/deb/dpkgpm.h
@@ -89,7 +89,6 @@ class pkgDPkgPM : public pkgPackageManager
const std::string &short_pkgname);
// Terminal progress
- void SetupTerminalScrollArea(int nr_scrolled_rows);
void SendTerminalProgress(float percentage);
// apport integration
diff --git a/apt-pkg/install-progress.cc b/apt-pkg/install-progress.cc
index 09b1bef9e..b82b7efde 100644
--- a/apt-pkg/install-progress.cc
+++ b/apt-pkg/install-progress.cc
@@ -10,6 +10,7 @@
#include <sstream>
#include <fcntl.h>
+
namespace APT {
namespace Progress {
@@ -221,6 +222,14 @@ bool PackageManagerProgressDeb822Fd::StatusChanged(std::string PackageName,
return true;
}
+int PackageManagerFancy::GetNumberTerminalRows()
+{
+ struct winsize win;
+ if(ioctl(STDOUT_FILENO, TIOCGWINSZ, (char *)&win) != 0)
+ return -1;
+
+ return win.ws_row;
+}
void PackageManagerFancy::SetupTerminalScrollArea(int nr_rows)
{
@@ -248,23 +257,32 @@ void PackageManagerFancy::SetupTerminalScrollArea(int nr_rows)
}
PackageManagerFancy::PackageManagerFancy()
- : nr_terminal_rows(-1)
{
- struct winsize win;
- if(ioctl(STDOUT_FILENO, TIOCGWINSZ, (char *)&win) == 0)
- {
- nr_terminal_rows = win.ws_row;
- }
+ // setup terminal size
+ old_SIGWINCH = signal(SIGWINCH, HandleSIGWINCH);
+}
+
+PackageManagerFancy::~PackageManagerFancy()
+{
+ signal(SIGWINCH, old_SIGWINCH);
+}
+
+void PackageManagerFancy::HandleSIGWINCH(int)
+{
+ int nr_terminal_rows = GetNumberTerminalRows();
+ SetupTerminalScrollArea(nr_terminal_rows);
}
void PackageManagerFancy::Start()
{
+ int nr_terminal_rows = GetNumberTerminalRows();
if (nr_terminal_rows > 0)
SetupTerminalScrollArea(nr_terminal_rows);
}
void PackageManagerFancy::Stop()
{
+ int nr_terminal_rows = GetNumberTerminalRows();
if (nr_terminal_rows > 0)
{
SetupTerminalScrollArea(nr_terminal_rows + 1);
@@ -284,7 +302,7 @@ bool PackageManagerFancy::StatusChanged(std::string PackageName,
HumanReadableAction))
return false;
- int row = nr_terminal_rows;
+ int row = GetNumberTerminalRows();
static string save_cursor = "\033[s";
static string restore_cursor = "\033[u";
diff --git a/apt-pkg/install-progress.h b/apt-pkg/install-progress.h
index d721c6373..4b7590983 100644
--- a/apt-pkg/install-progress.h
+++ b/apt-pkg/install-progress.h
@@ -3,7 +3,7 @@
#include <string>
#include <unistd.h>
-
+#include <signal.h>
namespace APT {
namespace Progress {
@@ -117,11 +117,14 @@ namespace Progress {
class PackageManagerFancy : public PackageManager
{
protected:
- int nr_terminal_rows;
- void SetupTerminalScrollArea(int nr_rows);
+ static void SetupTerminalScrollArea(int nr_rows);
+ static int GetNumberTerminalRows();
+ static void HandleSIGWINCH(int);
+ sighandler_t old_SIGWINCH;
public:
PackageManagerFancy();
+ ~PackageManagerFancy();
virtual void Start();
virtual void Stop();
virtual bool StatusChanged(std::string PackageName,
diff --git a/configure.ac b/configure.ac
index 9fb20b95f..7db147ba4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib)
AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in)
PACKAGE="apt"
-PACKAGE_VERSION="0.9.9.4"
+PACKAGE_VERSION="0.9.14"
PACKAGE_MAIL="APT Development Team <deity@lists.debian.org>"
AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE")
AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION")
diff --git a/debian/changelog b/debian/changelog
index 525a50f30..eba44dea4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,31 @@
-apt (0.9.13.1ubuntu1) trusty; urgency=low
+apt (0.9.14ubuntu1) trusty; urgency=low
* Merged from debian/sid
- -- Michael Vogt <michael.vogt@ubuntu.com> Fri, 29 Nov 2013 22:59:22 +0100
+ -- Michael Vogt <michael.vogt@ubuntu.com> Sat, 07 Dec 2013 17:53:59 +0100
+
+apt (0.9.14) unstable; urgency=low
+
+ [ David Kalnischkies ]
+ * merge ubuntus apport reporting changes to reduce diff
+ * enable NOISE for build logs to enable analyse
+ * introduce a vendor system to change sources.list
+ * add a vendor specific file to have configurable entities
+ * use a substvar to set the archive-keyring in debian/control
+ * cherry-pick ubuntus (disabled) net-update fixes
+ * generate apt-key script with vendor info about keys
+ * drop old /var/state to /var/lib transition artefacts
+
+ [ Steve Langasek ]
+ * prepare-release: declare the packages needed as source build deps.
+
+ [ Michael Vogt ]
+ * enable release based selection for deb-src (closes: 731102)
+ * document Dpkg::Progress-Fancy (closes: 726169), thanks to James McCoy
+ * vendor/makefile: fix build error for parallel builds
+ * Handle SIGWINCH in APT::Progress-Fancy=1
+
+ -- Michael Vogt <mvo@debian.org> Sat, 07 Dec 2013 14:54:31 +0100
apt (0.9.13.1) unstable; urgency=low
diff --git a/debian/gbp.conf b/debian/gbp.conf
index a9da2423b..0b205c1fd 100644
--- a/debian/gbp.conf
+++ b/debian/gbp.conf
@@ -1,6 +1,5 @@
[DEFAULT]
prebuild = ./prepare-release pre-export
postbuild = ./prepare-release post-build
-export-dir = ../build-area
debian-branch = ubuntu/master
debian-tag = %(version)s
diff --git a/debian/libapt-pkg4.12.symbols b/debian/libapt-pkg4.12.symbols
index 2b86c9676..af43a7b07 100644
--- a/debian/libapt-pkg4.12.symbols
+++ b/debian/libapt-pkg4.12.symbols
@@ -698,11 +698,9 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER#
(c++)"metaIndex::~metaIndex()@Base" 0.8.0
(c++)"pkgDPkgPM::SendV2Pkgs(_IO_FILE*)@Base" 0.8.0
(c++)"pkgDPkgPM::DoTerminalPty(int)@Base" 0.8.0
- (c++)"pkgDPkgPM::DoDpkgStatusFd(int, int)@Base" 0.8.0
(c++)"pkgDPkgPM::WriteHistoryTag(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.8.0
(c++)"pkgDPkgPM::WriteApportReport(char const*, char const*)@Base" 0.8.0
(c++)"pkgDPkgPM::RunScriptsWithPkgs(char const*)@Base" 0.8.0
- (c++)"pkgDPkgPM::ProcessDpkgStatusLine(int, char*)@Base" 0.8.0
(c++)"pkgDPkgPM::handleDisappearAction(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 0.8.0
(c++)"pkgDPkgPM::Go(int)@Base" 0.8.0
(c++)"pkgDPkgPM::Reset()@Base" 0.8.0
@@ -1453,6 +1451,67 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER#
(c++)"vtable for APT::PackageContainerInterface@Base" 0.8.16~exp9
(c++)"vtable for APT::VersionContainerInterface::const_iterator@Base" 0.8.16~exp9
(c++)"vtable for APT::VersionContainerInterface@Base" 0.8.16~exp9
+### rework of the packagemanager rework
+ (c++)"APT::Progress::PackageManager::ConffilePrompt(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManager::Error(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerFancy::GetNumberTerminalRows()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerFancy::HandleSIGWINCH(int)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerFancy::~PackageManagerFancy()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerFancy::PackageManagerFancy()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerFancy::SetupTerminalScrollArea(int)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerFancy::Start()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerFancy::StatusChanged(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerFancy::Stop()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManager::fork()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManager::GetPulseInterval()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManager::~PackageManager()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressDeb822Fd::ConffilePrompt(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressDeb822Fd::Error(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressDeb822Fd::~PackageManagerProgressDeb822Fd()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressDeb822Fd::PackageManagerProgressDeb822Fd(int)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressDeb822Fd::StartDpkg()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressDeb822Fd::StatusChanged(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressDeb822Fd::Stop()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressDeb822Fd::WriteToStatusFd(std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressFactory()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressFd::ConffilePrompt(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressFd::Error(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressFd::~PackageManagerProgressFd()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressFd::PackageManagerProgressFd(int)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressFd::StartDpkg()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressFd::StatusChanged(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressFd::Stop()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerProgressFd::WriteToStatusFd(std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManager::Pulse()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManager::Start()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManager::StartDpkg()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManager::StatusChanged(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManager::Stop()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerText::~PackageManagerText()@Base" 0.9.13~exp1
+ (c++)"APT::Progress::PackageManagerText::StatusChanged(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13~exp1
+ (c++)"APT::String::Strip(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 0.9.13~exp1
+ (c++)"APT::Upgrade::Upgrade(pkgDepCache&, int)@Base" 0.9.13~exp1
+ (c++)"pkgDPkgPM::BuildPackagesProgressMap()@Base" 0.9.13~exp1
+ (c++)"pkgDPkgPM::DoDpkgStatusFd(int)@Base" 0.9.13~exp1
+ (c++)"pkgDPkgPM::GoNoABIBreak(APT::Progress::PackageManager*)@Base" 0.9.13~exp1
+ (c++)"pkgDPkgPM::ProcessDpkgStatusLine(char*)@Base" 0.9.13~exp1
+ (c++)"pkgDPkgPM::StartPtyMagic()@Base" 0.9.13~exp1
+ (c++)"pkgDPkgPM::StopPtyMagic()@Base" 0.9.13~exp1
+ (c++)"typeinfo for APT::Progress::PackageManager@Base" 0.9.13~exp1
+ (c++)"typeinfo for APT::Progress::PackageManagerFancy@Base" 0.9.13~exp1
+ (c++)"typeinfo for APT::Progress::PackageManagerProgressDeb822Fd@Base" 0.9.13~exp1
+ (c++)"typeinfo for APT::Progress::PackageManagerProgressFd@Base" 0.9.13~exp1
+ (c++)"typeinfo for APT::Progress::PackageManagerText@Base" 0.9.13~exp1
+ (c++)"typeinfo name for APT::Progress::PackageManager@Base" 0.9.13~exp1
+ (c++)"typeinfo name for APT::Progress::PackageManagerFancy@Base" 0.9.13~exp1
+ (c++)"typeinfo name for APT::Progress::PackageManagerProgressDeb822Fd@Base" 0.9.13~exp1
+ (c++)"typeinfo name for APT::Progress::PackageManagerProgressFd@Base" 0.9.13~exp1
+ (c++)"typeinfo name for APT::Progress::PackageManagerText@Base" 0.9.13~exp1
+ (c++)"vtable for APT::Progress::PackageManager@Base" 0.9.13~exp1
+ (c++)"vtable for APT::Progress::PackageManagerFancy@Base" 0.9.13~exp1
+ (c++)"vtable for APT::Progress::PackageManagerProgressDeb822Fd@Base" 0.9.13~exp1
+ (c++)"vtable for APT::Progress::PackageManagerProgressFd@Base" 0.9.13~exp1
+ (c++)"vtable for APT::Progress::PackageManagerText@Base" 0.9.13~exp1
### mixed stuff
(c++)"GetListOfFilesInDir(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, bool)@Base" 0.8.16~exp13
(c++)"pkgCache::DepIterator::IsIgnorable(pkgCache::PkgIterator const&) const@Base" 0.8.16~exp10
@@ -1493,12 +1552,29 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER#
(c++)"pkgDepCache::IsInstallOkMultiArchSameVersionSynced(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 0.9.9.1
(c++)"pkgDPkgPM::SendPkgsInfo(_IO_FILE*, unsigned int const&)@Base" 0.9.9.1
(c++)"pkgCache::VerIterator::MultiArchType() const@Base" 0.9.9.1
+ (c++)"CommandLine::GetCommand(CommandLine::Dispatch const*, unsigned int, char const* const*)@Base" 0.9.11
+ (c++)"CommandLine::MakeArgs(char, char const*, char const*, unsigned long)@Base" 0.9.11
+ (c++)"Configuration::Clear()@Base" 0.9.11
+ (c++)"Glob(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)@Base" 0.9.11
+ (c++)"APT::CacheFilter::PackageNameMatchesFnmatch::operator()(pkgCache::GrpIterator const&)@Base" 0.9.11
+ (c++)"APT::CacheFilter::PackageNameMatchesFnmatch::operator()(pkgCache::PkgIterator const&)@Base" 0.9.11
+ (c++)"APT::PackageContainerInterface::FromFnmatch(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, APT::CacheSetHelper&)@Base" 0.9.11
+ (c++|optional=private)"pkgTagFile::Resize(unsigned long long)@Base" 0.9.11
+ (c++)"pkgTagSection::pkgTagSection()@Base" 0.9.11
+ (c++)"strv_length(char const**)@Base" 0.9.11
+ (c++)"StringSplit(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, unsigned int)@Base" 0.9.11.3
+ (c++)"pkgAcquire::Item::RenameOnError(pkgAcquire::Item::RenameOnErrorState)@Base" 0.9.12
+ (c++)"APT::String::Endswith(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 0.9.13.1
+ (c++)"ExecFork(std::set<int, std::less<int>, std::allocator<int> >)@Base" 0.9.13.1
+ (c++)"MergeKeepFdsFromConfiguration(std::set<int, std::less<int>, std::allocator<int> >&)@Base" 0.9.13.1
+ (c++)"HashString::FromFile(std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.13.1
+ (c++)"HashString::GetHashForFile(std::basic_string<char, std::char_traits<char>, std::allocator<char> >) const@Base" 0.9.13.1
+ (c++)"indexRecords::GetSuite() const@Base" 0.9.13.2
### demangle strangeness - buildd report it as MISSING and as new…
(c++)"pkgAcqMetaSig::pkgAcqMetaSig(pkgAcquire*, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::vector<IndexTarget*, std::allocator<IndexTarget*> > const*, indexRecords*)@Base" 0.8.0
### gcc artefacts
(c++|regex|optional=std)"^std::vector<DiffInfo, .+@Base$" 0.8.0
(c++|regex|optional=std)"^std::vector<.+ >::(vector|push_back|erase|_[^ ]+)\(.+\)( const|)@Base$" 0.8.0
- (c++|optional=std)"std::ctype<char>::widen(char) const@Base" 0.8.0
(c++|optional=std)"char* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_S_construct<__gnu_cxx::__normal_iterator<char const*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(__gnu_cxx::__normal_iterator<char const*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char const*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<char> const&, std::forward_iterator_tag)@Base" 0.8.0
(c++|optional=std)"char* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_S_construct<__gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(__gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<char> const&, std::forward_iterator_tag)@Base" 0.8.0
(c++|optional=std)"char* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag)@Base" 0.8.0
diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent
index 30b0c7fe0..11f722fbf 100644
--- a/doc/apt-verbatim.ent
+++ b/doc/apt-verbatim.ent
@@ -219,7 +219,7 @@
">
<!-- this will be updated by 'prepare-release' -->
-<!ENTITY apt-product-version "0.9.7.6ubuntu2">
+<!ENTITY apt-product-version "0.9.14">
<!-- (Code)names for various things used all over the place -->
<!ENTITY oldstable-codename "squeeze">
diff --git a/doc/makefile b/doc/makefile
index 49f3e1b56..4b63e542f 100644
--- a/doc/makefile
+++ b/doc/makefile
@@ -28,7 +28,7 @@ include $(COPY_H)
clean: clean/subdirs clean/examples
veryclean: veryclean/subdirs clean/examples
-manpages: manpages/subdirs apt-vendor.ent
+manpages: apt-vendor.ent manpages/subdirs
debiandoc: debiandoc/subdirs
DOCUMENTATIONPO = $(patsubst %.po,%,$(notdir $(wildcard po/*.po)))
diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot
index 43e14b779..d2fbb8579 100644
--- a/doc/po/apt-doc.pot
+++ b/doc/po/apt-doc.pot
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: apt-doc 0.9.8.1\n"
+"Project-Id-Version: apt-doc 0.9.9.4\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-06-13 13:46+0300\n"
+"POT-Creation-Date: 2013-12-07 14:40+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"
@@ -497,27 +497,27 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-get.8.xml:26 apt-cache.8.xml:26 apt-key.8.xml:25 apt-mark.8.xml:26 apt-secure.8.xml:25 apt-cdrom.8.xml:25 apt-config.8.xml:26
+#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28
msgid "8"
msgstr ""
#. type: Content of: <refentry><refmeta><refmiscinfo>
-#: apt-get.8.xml:27 apt-cache.8.xml:27 apt-key.8.xml:26 apt-mark.8.xml:27 apt-secure.8.xml:26 apt-cdrom.8.xml:26 apt-config.8.xml:27 apt.conf.5.xml:32 apt_preferences.5.xml:26 sources.list.5.xml:27 apt-extracttemplates.1.xml:27 apt-sortpkgs.1.xml:27 apt-ftparchive.1.xml:27
+#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29
msgid "APT"
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-get.8.xml:33
+#: apt-get.8.xml:35
msgid "APT package handling utility -- command-line interface"
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:38 apt-cache.8.xml:38 apt-key.8.xml:37 apt-mark.8.xml:38 apt-secure.8.xml:50 apt-cdrom.8.xml:37 apt-config.8.xml:38 apt.conf.5.xml:41 apt_preferences.5.xml:36 sources.list.5.xml:36 apt-extracttemplates.1.xml:38 apt-sortpkgs.1.xml:38 apt-ftparchive.1.xml:38
+#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40
msgid "Description"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:39
+#: apt-get.8.xml:41
msgid ""
"<command>apt-get</command> is the command-line tool for handling packages, "
"and may be considered the user's \"back-end\" to other tools using the APT "
@@ -526,14 +526,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:44 apt-cache.8.xml:44 apt-cdrom.8.xml:51 apt-config.8.xml:44 apt-ftparchive.1.xml:54
+#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 apt-ftparchive.1.xml:56
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><listitem><para>
-#: apt-get.8.xml:49
+#: apt-get.8.xml:51
msgid ""
"<literal>update</literal> is used to resynchronize the package index files "
"from their sources. The indexes of available packages are fetched from the "
@@ -548,7 +548,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:61
+#: apt-get.8.xml:63
msgid ""
"<literal>upgrade</literal> is used to install the newest versions of all "
"packages currently installed on the system from the sources enumerated in "
@@ -564,7 +564,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:74
+#: apt-get.8.xml:76
msgid ""
"<literal>dist-upgrade</literal> in addition to performing the function of "
"<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@ -579,7 +579,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:87
+#: apt-get.8.xml:89
msgid ""
"<literal>dselect-upgrade</literal> is used in conjunction with the "
"traditional Debian packaging front-end, "
@@ -590,7 +590,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:98
+#: apt-get.8.xml:100
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 "
@@ -607,7 +607,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:116
+#: apt-get.8.xml:118
msgid ""
"A specific version of a package can be selected for installation by "
"following the package name with an equals and the version of the package to "
@@ -618,14 +618,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:123
+#: apt-get.8.xml:125
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:126
+#: apt-get.8.xml:128
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 "
@@ -637,14 +637,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:137
+#: apt-get.8.xml:139
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:141
+#: apt-get.8.xml:143
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 "
@@ -656,7 +656,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:151
+#: apt-get.8.xml:153
msgid ""
"<literal>remove</literal> is identical to <literal>install</literal> except "
"that packages are removed instead of installed. Note that removing a package "
@@ -666,7 +666,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:159
+#: apt-get.8.xml:161
msgid ""
"<literal>purge</literal> is identical to <literal>remove</literal> except "
"that packages are removed and purged (any configuration files are deleted "
@@ -674,7 +674,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:164
+#: apt-get.8.xml:166
msgid ""
"<literal>source</literal> causes <command>apt-get</command> to fetch source "
"packages. APT will examine the available packages to decide which source "
@@ -686,7 +686,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:172
+#: apt-get.8.xml:174
msgid ""
"Source packages are tracked separately from binary packages via "
"<literal>deb-src</literal> lines in the &sources-list; file. This means that "
@@ -696,7 +696,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:178
+#: apt-get.8.xml:180
msgid ""
"If the <option>--compile</option> option is specified then the package will "
"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
@@ -706,7 +706,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:185
+#: apt-get.8.xml:187
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 "
@@ -716,7 +716,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:191
+#: apt-get.8.xml:193
msgid ""
"Note that source packages are not installed and tracked in the "
"<command>dpkg</command> database like binary packages; they are simply "
@@ -724,7 +724,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:197
+#: apt-get.8.xml:199
msgid ""
"<literal>build-dep</literal> causes apt-get to install/remove packages in an "
"attempt to satisfy the build dependencies for a source package. By default "
@@ -734,21 +734,21 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:204
+#: apt-get.8.xml:206
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:209
+#: apt-get.8.xml:211
msgid ""
"<literal>download</literal> will download the given binary package into the "
"current directory."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:215
+#: apt-get.8.xml:217
msgid ""
"<literal>clean</literal> clears out the local repository of retrieved "
"package files. It removes everything but the lock file from "
@@ -760,7 +760,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:225
+#: apt-get.8.xml:227
msgid ""
"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
"local repository of retrieved package files. The difference is that it only "
@@ -772,7 +772,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:235
+#: apt-get.8.xml:237
msgid ""
"<literal>autoremove</literal> is used to remove packages that were "
"automatically installed to satisfy dependencies for other packages and are "
@@ -780,7 +780,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:240
+#: apt-get.8.xml:242
msgid ""
"<literal>changelog</literal> downloads a package changelog and displays it "
"through <command>sensible-pager</command>. The server name and base "
@@ -795,33 +795,33 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:258 apt-cache.8.xml:248 apt-mark.8.xml:108 apt-config.8.xml:84 apt-extracttemplates.1.xml:52 apt-sortpkgs.1.xml:48 apt-ftparchive.1.xml:504
+#: apt-get.8.xml:260 apt-cache.8.xml:250 apt-mark.8.xml:110 apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 apt-ftparchive.1.xml:506
msgid "options"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:263
+#: apt-get.8.xml:265
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><listitem><para>
-#: apt-get.8.xml:268
+#: apt-get.8.xml:270
msgid ""
"Consider suggested packages as a dependency for installing. Configuration "
"Item: <literal>APT::Install-Suggests</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:273
+#: apt-get.8.xml:275
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><listitem><para>
-#: apt-get.8.xml:278
+#: apt-get.8.xml:280
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 "
@@ -837,7 +837,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:293
+#: apt-get.8.xml:295
msgid ""
"Ignore missing packages; if packages cannot be retrieved or fail the "
"integrity check after retrieval (corrupted package files), hold back those "
@@ -849,7 +849,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:304
+#: apt-get.8.xml:306
msgid ""
"Disables downloading of packages. This is best used with "
"<option>--ignore-missing</option> to force APT to use only the .debs it has "
@@ -858,7 +858,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:311
+#: apt-get.8.xml:313
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 "
@@ -870,7 +870,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:326
+#: apt-get.8.xml:328
msgid ""
"No action; perform a simulation of events that would occur but do not "
"actually change the system. Configuration Item: "
@@ -878,7 +878,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:330
+#: apt-get.8.xml:332
msgid ""
"Simulated runs performed as a user will automatically deactivate locking "
"(<literal>Debug::NoLocking</literal>), and if the option "
@@ -890,7 +890,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:338
+#: apt-get.8.xml:340
msgid ""
"Simulated runs print out a series of lines, each representing a "
"<command>dpkg</command> operation: configure (<literal>Conf</literal>), "
@@ -900,7 +900,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:346
+#: apt-get.8.xml:348
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 "
@@ -910,28 +910,28 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:354
+#: apt-get.8.xml:356
msgid ""
"Automatic \"no\" to all prompts. Configuration Item: "
"<literal>APT::Get::Assume-No</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:359
+#: apt-get.8.xml:361
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><listitem><para>
-#: apt-get.8.xml:365
+#: apt-get.8.xml:367
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><listitem><para>
-#: apt-get.8.xml:371
+#: apt-get.8.xml:373
msgid ""
"This option controls the architecture packages are built for by "
"<command>apt-get source --compile</command> and how cross-builddependencies "
@@ -942,14 +942,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:381
+#: apt-get.8.xml:383
msgid ""
"Compile source packages after downloading them. Configuration Item: "
"<literal>APT::Get::Compile</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:386
+#: apt-get.8.xml:388
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 "
@@ -958,7 +958,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:393
+#: apt-get.8.xml:395
+msgid ""
+"Allow installing new packages when used in conjunction with "
+"<literal>upgrade</literal>. This is useful if the update of a installed "
+"package requires new dependencies to be installed. Instead of holding the "
+"package back <literal>upgrade</literal> will upgrade the package and install "
+"the new dependencies. Note that <literal>upgrade</literal> with this option "
+"will never remove packages, only allow adding new ones. Configuration Item: "
+"<literal>APT::Get::Upgrade-Allow-New</literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:407
msgid ""
"Do not upgrade packages; when used in conjunction with "
"<literal>install</literal>, <literal>no-upgrade</literal> will prevent "
@@ -967,7 +979,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:400
+#: apt-get.8.xml:414
msgid ""
"Do not install new packages; when used in conjunction with "
"<literal>install</literal>, <literal>only-upgrade</literal> will install "
@@ -977,7 +989,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:408
+#: apt-get.8.xml:422
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 "
@@ -987,7 +999,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:416
+#: apt-get.8.xml:430
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 "
@@ -1000,7 +1012,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:427
+#: apt-get.8.xml:441
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 "
@@ -1010,14 +1022,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:435
+#: apt-get.8.xml:449
msgid ""
"Re-install packages that are already installed and at the newest version. "
"Configuration Item: <literal>APT::Get::ReInstall</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:440
+#: apt-get.8.xml:454
msgid ""
"This option is on by default; use <literal>--no-list-cleanup</literal> to "
"turn it off. When it is on, <command>apt-get</command> will automatically "
@@ -1028,7 +1040,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:450
+#: apt-get.8.xml:464
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 "
@@ -1043,7 +1055,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:465
+#: apt-get.8.xml:479
msgid ""
"Only perform operations that are 'trivial'. Logically this can be considered "
"related to <option>--assume-yes</option>; where "
@@ -1053,14 +1065,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:472
+#: apt-get.8.xml:486
msgid ""
"If any packages are to be removed apt-get immediately aborts without "
"prompting. Configuration Item: <literal>APT::Get::Remove</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:478
+#: apt-get.8.xml:492
msgid ""
"If the command is either <literal>install</literal> or "
"<literal>remove</literal>, then this option acts like running the "
@@ -1069,7 +1081,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:485
+#: apt-get.8.xml:499
msgid ""
"Only has meaning for the <literal>source</literal> and "
"<literal>build-dep</literal> commands. Indicates that the given source "
@@ -1081,7 +1093,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:496
+#: apt-get.8.xml:510
msgid ""
"Download only the diff, dsc, or tar file of a source archive. Configuration "
"Item: <literal>APT::Get::Diff-Only</literal>, "
@@ -1090,32 +1102,42 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:502
+#: apt-get.8.xml:516
msgid ""
"Only process architecture-dependent build-dependencies. Configuration Item: "
"<literal>APT::Get::Arch-Only</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:507
+#: apt-get.8.xml:521
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><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:527
+msgid ""
+"Show user friendly progress information in the terminal window when packages "
+"are installed, upgraded or removed. For a machine parsable version of this "
+"data see README.progress-reporting in the apt doc directory. Configuration "
+"Item: <literal>DpkgPM::Progress</literal> and "
+"<literal>Dpkg::Progress-Fancy</literal>."
+msgstr ""
+
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125 apt.conf.5.xml:1167 apt_preferences.5.xml:698
+#: apt-get.8.xml:540 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 apt.conf.5.xml:1200 apt_preferences.5.xml:700
msgid "Files"
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131 apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109 apt.conf.5.xml:1173 apt_preferences.5.xml:705 sources.list.5.xml:252 apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607
+#: apt-get.8.xml:550 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:258 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 apt-ftparchive.1.xml:609
msgid "See Also"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:529
+#: apt-get.8.xml:551
msgid ""
"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, "
@@ -1123,24 +1145,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:534 apt-cache.8.xml:355 apt-mark.8.xml:135 apt-cdrom.8.xml:149 apt-config.8.xml:114 apt-extracttemplates.1.xml:74 apt-sortpkgs.1.xml:67 apt-ftparchive.1.xml:611
+#: apt-get.8.xml:556 apt-cache.8.xml:357 apt-mark.8.xml:137 apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613
msgid "Diagnostics"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:535
+#: apt-get.8.xml:557
msgid ""
"<command>apt-get</command> returns zero on normal operation, decimal 100 on "
"error."
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cache.8.xml:33
+#: apt-cache.8.xml:35
msgid "query the APT cache"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:39
+#: apt-cache.8.xml:41
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 "
@@ -1149,19 +1171,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:49
+#: apt-cache.8.xml:51
msgid ""
"<literal>gencaches</literal> creates APT's package cache. This is done "
"implicitly by all commands needing this cache if it is missing or outdated."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:53 apt-cache.8.xml:142 apt-cache.8.xml:163 apt-cache.8.xml:185 apt-cache.8.xml:190 apt-cache.8.xml:206 apt-cache.8.xml:224 apt-cache.8.xml:236
+#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165 apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208 apt-cache.8.xml:226 apt-cache.8.xml:238
msgid "&synopsis-pkg;"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:54
+#: apt-cache.8.xml:56
msgid ""
"<literal>showpkg</literal> displays information about the packages listed on "
"the command line. Remaining arguments are package names. The available "
@@ -1175,7 +1197,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-cache.8.xml:66
+#: apt-cache.8.xml:68
#, no-wrap
msgid ""
"Package: libreadline2\n"
@@ -1191,7 +1213,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:78
+#: apt-cache.8.xml:80
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, "
@@ -1203,21 +1225,21 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:87
+#: apt-cache.8.xml:89
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:90
+#: apt-cache.8.xml:92
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:94
+#: apt-cache.8.xml:96
msgid ""
"<literal>Normal packages</literal> is the number of regular, ordinary "
"package names; these are packages that bear a one-to-one correspondence "
@@ -1226,7 +1248,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:100
+#: apt-cache.8.xml:102
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 "
@@ -1237,7 +1259,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:108
+#: apt-cache.8.xml:110
msgid ""
"<literal>Single virtual packages</literal> is the number of packages with "
"only one package providing a particular virtual package. For example, in the "
@@ -1246,7 +1268,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:114
+#: apt-cache.8.xml:116
msgid ""
"<literal>Mixed virtual packages</literal> is the number of packages that "
"either provide a particular virtual package or have the virtual package name "
@@ -1255,7 +1277,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:121
+#: apt-cache.8.xml:123
msgid ""
"<literal>Missing</literal> is the number of package names that were "
"referenced in a dependency but were not provided by any package. Missing "
@@ -1265,7 +1287,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:128
+#: apt-cache.8.xml:130
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 "
@@ -1275,14 +1297,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:135
+#: apt-cache.8.xml:137
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><listitem><para>
-#: apt-cache.8.xml:143
+#: apt-cache.8.xml:145
msgid ""
"<literal>showsrc</literal> displays all the source package records that "
"match the given package names. All versions are shown, as well as all "
@@ -1290,28 +1312,28 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:149
+#: apt-cache.8.xml:151
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><listitem><para>
-#: apt-cache.8.xml:154
+#: apt-cache.8.xml:156
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><listitem><para>
-#: apt-cache.8.xml:159
+#: apt-cache.8.xml:161
msgid ""
"<literal>unmet</literal> displays a summary of all unmet dependencies in the "
"package cache."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:164
+#: apt-cache.8.xml:166
msgid ""
"<literal>show</literal> performs a function similar to <command>dpkg "
"--print-avail</command>; it displays the package records for the named "
@@ -1319,12 +1341,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:169
+#: apt-cache.8.xml:171
msgid "&synopsis-regex;"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:170
+#: apt-cache.8.xml:172
msgid ""
"<literal>search</literal> performs a full text search on all available "
"package lists for the POSIX regex pattern given, see &regex;. It searches "
@@ -1337,33 +1359,33 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:181
+#: apt-cache.8.xml:183
msgid ""
"Separate arguments can be used to specify multiple search patterns that are "
"and'ed together."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:186
+#: apt-cache.8.xml:188
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><listitem><para>
-#: apt-cache.8.xml:191
+#: apt-cache.8.xml:193
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:195
+#: apt-cache.8.xml:197
msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:196
+#: apt-cache.8.xml:198
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 "
@@ -1373,7 +1395,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:201
+#: apt-cache.8.xml:203
msgid ""
"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 "
@@ -1381,7 +1403,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:207
+#: apt-cache.8.xml:209
msgid ""
"<literal>dotty</literal> takes a list of packages on the command line and "
"generates output suitable for use by dotty from the <ulink "
@@ -1394,7 +1416,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:216
+#: apt-cache.8.xml:218
msgid ""
"The resulting nodes will have several shapes; normal packages are boxes, "
"pure virtual packages are triangles, mixed virtual packages are diamonds, "
@@ -1403,12 +1425,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:221
+#: apt-cache.8.xml:223
msgid "Caution, dotty cannot graph larger sets of packages."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:225
+#: apt-cache.8.xml:227
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 "
@@ -1416,12 +1438,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:229
+#: apt-cache.8.xml:231
msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:230
+#: apt-cache.8.xml:232
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 "
@@ -1430,7 +1452,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:237
+#: apt-cache.8.xml:239
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 "
@@ -1442,7 +1464,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:253
+#: apt-cache.8.xml:255
msgid ""
"Select the file to store the package cache. The package cache is the primary "
"cache used by all operations. Configuration Item: "
@@ -1450,7 +1472,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:259
+#: apt-cache.8.xml:261
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 "
@@ -1460,7 +1482,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:267
+#: apt-cache.8.xml:269
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 "
@@ -1469,7 +1491,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:274
+#: apt-cache.8.xml:276
msgid ""
"Print only important dependencies; for use with <literal>unmet</literal> and "
"<literal>depends</literal>. Causes only Depends and Pre-Depends relations to "
@@ -1477,7 +1499,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:288
+#: apt-cache.8.xml:290
msgid ""
"Per default the <literal>depends</literal> and <literal>rdepends</literal> "
"print all dependencies. This can be tweaked with these flags which will omit "
@@ -1487,14 +1509,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:295
+#: apt-cache.8.xml:297
msgid ""
"Print full package records when searching. Configuration Item: "
"<literal>APT::Cache::ShowFull</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:300
+#: apt-cache.8.xml:302
msgid ""
"Print full records for all available versions. This is the default; to turn "
"it off, use <option>--no-all-versions</option>. If "
@@ -1505,7 +1527,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:309
+#: apt-cache.8.xml:311
msgid ""
"Perform automatic package cache regeneration, rather than use the cache as "
"it is. This is the default; to turn it off, use "
@@ -1514,14 +1536,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:315
+#: apt-cache.8.xml:317
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><listitem><para>
-#: apt-cache.8.xml:320
+#: apt-cache.8.xml:322
msgid ""
"Make <literal>pkgnames</literal> print all names, including virtual packages "
"and missing dependencies. Configuration Item: "
@@ -1529,7 +1551,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:326
+#: apt-cache.8.xml:328
msgid ""
"Make <literal>depends</literal> and <literal>rdepends</literal> recursive so "
"that all packages mentioned are printed once. Configuration Item: "
@@ -1537,7 +1559,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:333
+#: apt-cache.8.xml:335
msgid ""
"Limit the output of <literal>depends</literal> and "
"<literal>rdepends</literal> to packages which are currently installed. "
@@ -1545,24 +1567,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:351
+#: apt-cache.8.xml:353
msgid "&apt-conf;, &sources-list;, &apt-get;"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:356
+#: apt-cache.8.xml:358
msgid ""
"<command>apt-cache</command> returns zero on normal operation, decimal 100 "
"on error."
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-key.8.xml:32
+#: apt-key.8.xml:34
msgid "APT key management utility"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:39
+#: apt-key.8.xml:41
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 "
@@ -1570,12 +1592,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:45
+#: apt-key.8.xml:47
msgid "Commands"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:50
+#: apt-key.8.xml:52
msgid ""
"Add a new key to the list of trusted keys. The key is read from the "
"filename given with the parameter &synopsis-param-filename; or if the "
@@ -1583,49 +1605,48 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:63
+#: apt-key.8.xml:65
msgid "Remove a key from the list of trusted keys."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:74
+#: apt-key.8.xml:76
msgid "Output the key &synopsis-param-keyid; to standard output."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:85
+#: apt-key.8.xml:87
msgid "Output all trusted keys to standard output."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:96
+#: apt-key.8.xml:98
msgid "List trusted keys."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:107
+#: apt-key.8.xml:109
msgid "List fingerprints of trusted keys."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:118
+#: apt-key.8.xml:120
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:130
+#: apt-key.8.xml:132
msgid ""
"Update the local keyring with the archive keyring and remove from the local "
"keyring the archive keys which are no longer valid. The archive keyring is "
"shipped in the <literal>archive-keyring</literal> package of your "
-"distribution, e.g. the &keyring-package; package in "
-"&keyring-distro;."
+"distribution, e.g. the &keyring-package; package in &keyring-distro;."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:144
+#: apt-key.8.xml:146
msgid ""
"Perform an update working similarly to the <command>update</command> command "
"above, but get the archive keyring from a URI instead and validate it "
@@ -1636,19 +1657,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:160 apt-cdrom.8.xml:80
+#: apt-key.8.xml:162 apt-cdrom.8.xml:82
msgid "Options"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:161
+#: apt-key.8.xml:163
msgid ""
"Note that options need to be defined before the commands described in the "
"previous section."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:164
+#: apt-key.8.xml:166
msgid ""
"With this option it is possible to specify a particular keyring file the "
"command should operate on. The default is that a command is executed on the "
@@ -1659,54 +1680,54 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:179
+#: apt-key.8.xml:181
msgid "<filename>/etc/apt/trustdb.gpg</filename>"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:180
+#: apt-key.8.xml:182
msgid "Local trust database of archive keys."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:183
+#: apt-key.8.xml:185
msgid "&keyring-filename;"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:184
+#: apt-key.8.xml:186
msgid "Keyring of &keyring-distro; archive trusted keys."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:187
+#: apt-key.8.xml:189
msgid "&keyring-removed-filename;"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:188
+#: apt-key.8.xml:190
msgid "Keyring of &keyring-distro; archive removed trusted keys."
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:197
+#: apt-key.8.xml:199
msgid "&apt-get;, &apt-secure;"
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-mark.8.xml:33
+#: apt-mark.8.xml:35
msgid "mark/unmark a package as being automatically-installed"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:39
+#: apt-mark.8.xml:41
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:43
+#: apt-mark.8.xml:45
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 "
@@ -1716,7 +1737,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:52
+#: apt-mark.8.xml:54
msgid ""
"<literal>auto</literal> is used to mark a package as being automatically "
"installed, which will cause the package to be removed when no more manually "
@@ -1724,7 +1745,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:60
+#: apt-mark.8.xml:62
msgid ""
"<literal>manual</literal> is used to mark a package as being manually "
"installed, which will prevent the package from being automatically removed "
@@ -1732,7 +1753,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:68
+#: apt-mark.8.xml:70
msgid ""
"<literal>hold</literal> is used to mark a package as held back, which will "
"prevent the package from being automatically installed, upgraded or "
@@ -1742,14 +1763,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:78
+#: apt-mark.8.xml:80
msgid ""
"<literal>unhold</literal> is used to cancel a previously set hold on a "
"package to allow all actions again."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:84
+#: apt-mark.8.xml:86
msgid ""
"<literal>showauto</literal> is used to print a list of automatically "
"installed packages with each package on a new line. All automatically "
@@ -1758,7 +1779,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:92
+#: apt-mark.8.xml:94
msgid ""
"<literal>showmanual</literal> can be used in the same way as "
"<literal>showauto</literal> except that it will print a list of manually "
@@ -1766,14 +1787,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:99
+#: apt-mark.8.xml:101
msgid ""
"<literal>showhold</literal> is used to print a list of packages on hold in "
"the same way as for the other show commands."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:115
+#: apt-mark.8.xml:117
msgid ""
"Read/Write package stats from the filename given with the parameter "
"&synopsis-param-filename; instead of from the default location, which is "
@@ -1782,19 +1803,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:136
+#: apt-mark.8.xml:138
msgid ""
"<command>apt-mark</command> returns zero on normal operation, non-zero on "
"error."
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-secure.8.xml:47
+#: apt-secure.8.xml:49
msgid "Archive authentication support for APT"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:52
+#: apt-secure.8.xml:54
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 "
@@ -1803,7 +1824,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:60
+#: apt-secure.8.xml:62
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 "
@@ -1813,19 +1834,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:69
+#: apt-secure.8.xml:71
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:74
+#: apt-secure.8.xml:76
msgid "Trusted archives"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:77
+#: apt-secure.8.xml:79
msgid ""
"The chain of trust from an apt archive to the end user is made up of several "
"steps. <command>apt-secure</command> is the last step in this chain; "
@@ -1836,7 +1857,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:85
+#: apt-secure.8.xml:87
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 "
@@ -1845,7 +1866,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:92
+#: apt-secure.8.xml:94
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. In order to become "
@@ -1856,20 +1877,20 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:102
+#: apt-secure.8.xml:104
msgid ""
"Once the uploaded package is verified and included in the archive, the "
"maintainer signature is stripped off, and checksums of the package are "
"computed and put in the Packages file. The checksums 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 for this &keyring-distro; release, and distributed "
-"alongside the packages and the Packages files on &keyring-distro; mirrors. The keys "
-"are in the &keyring-distro; archive keyring available in the "
-"&keyring-package; package."
+"then signed by the archive key for this &keyring-distro; release, and "
+"distributed alongside the packages and the Packages files on "
+"&keyring-distro; mirrors. The keys are in the &keyring-distro; archive "
+"keyring available in the &keyring-package; package."
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:113
+#: apt-secure.8.xml:115
msgid ""
"End users can check the signature of the Release file, extract a checksum of "
"a package from it and compare it with the checksum of the package they "
@@ -1877,14 +1898,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:118
+#: apt-secure.8.xml:120
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:123
+#: apt-secure.8.xml:125
msgid ""
"<literal>Network \"man in the middle\" attacks</literal>. Without signature "
"checking, malicious agents can introduce themselves into the package "
@@ -1894,7 +1915,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:131
+#: apt-secure.8.xml:133
msgid ""
"<literal>Mirror network compromise</literal>. Without signature checking, a "
"malicious agent can compromise a mirror host and modify the files in it to "
@@ -1903,7 +1924,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:138
+#: apt-secure.8.xml:140
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 "
@@ -1912,12 +1933,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:144
+#: apt-secure.8.xml:146
msgid "User configuration"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:146
+#: apt-secure.8.xml:148
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 "
@@ -1926,7 +1947,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:153
+#: apt-secure.8.xml:155
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 "
@@ -1937,19 +1958,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:162
+#: apt-secure.8.xml:164
msgid "Archive configuration"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:164
+#: apt-secure.8.xml:166
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:169
+#: apt-secure.8.xml:171
msgid ""
"<emphasis>Create a toplevel Release file</emphasis>, if it does not exist "
"already. You can do this by running <command>apt-ftparchive "
@@ -1957,7 +1978,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:174
+#: apt-secure.8.xml:176
msgid ""
"<emphasis>Sign it</emphasis>. You can do this by running <command>gpg "
"--clearsign -o InRelease Release</command> and <command>gpg -abs -o "
@@ -1965,7 +1986,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:178
+#: apt-secure.8.xml:180
msgid ""
"<emphasis>Publish the key fingerprint</emphasis>, that way your users will "
"know what key they need to import in order to authenticate the files in the "
@@ -1973,7 +1994,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:185
+#: apt-secure.8.xml:187
msgid ""
"Whenever the contents of the archive change (new packages are added or "
"removed) the archive maintainer has to follow the first two steps outlined "
@@ -1981,14 +2002,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:193
+#: apt-secure.8.xml:195
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:197
+#: apt-secure.8.xml:199
msgid ""
"For more background information you might want to review the <ulink "
"url=\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian "
@@ -1999,24 +2020,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:210
+#: apt-secure.8.xml:212
msgid "Manpage Authors"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:212
+#: apt-secure.8.xml:214
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><refpurpose>
-#: apt-cdrom.8.xml:32
+#: apt-cdrom.8.xml:34
msgid "APT CD-ROM management utility"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:38
+#: apt-cdrom.8.xml:40
msgid ""
"<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of "
"available sources. <command>apt-cdrom</command> takes care of determining "
@@ -2025,7 +2046,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:45
+#: apt-cdrom.8.xml:47
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 disc in a multi-CD set "
@@ -2033,7 +2054,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:56
+#: apt-cdrom.8.xml:58
msgid ""
"<literal>add</literal> is used to add a new disc to the source list. It will "
"unmount the CD-ROM device, prompt for a disc to be inserted and then proceed "
@@ -2043,7 +2064,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:64
+#: apt-cdrom.8.xml:66
msgid ""
"APT uses a CD-ROM ID to track which disc is currently in the drive and "
"maintains a database of these IDs in "
@@ -2051,14 +2072,22 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:72
+#: apt-cdrom.8.xml:74
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><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:85
+#: apt-cdrom.8.xml:87
+msgid ""
+"Do not try to auto-detect the CD-ROM path. Usually combined with the "
+"<option>--cdrom</option> option. Configuration Item: "
+"<literal>Acquire::cdrom::AutoDetect</literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-cdrom.8.xml:95
msgid ""
"Mount point; specify the location to mount the CD-ROM. This mount point must "
"be listed in <filename>/etc/fstab</filename> and properly configured. "
@@ -2066,7 +2095,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:94
+#: apt-cdrom.8.xml:104
msgid ""
"Rename a disc; change the label of a disc or override the disc's given "
"label. This option will cause <command>apt-cdrom</command> to prompt for a "
@@ -2074,7 +2103,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:103
+#: apt-cdrom.8.xml:113
msgid ""
"No mounting; prevent <command>apt-cdrom</command> from mounting and "
"unmounting the mount point. Configuration Item: "
@@ -2082,7 +2111,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:111
+#: 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 "
@@ -2091,7 +2120,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:121
+#: 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 "
@@ -2099,7 +2128,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:132
+#: 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: "
@@ -2107,24 +2136,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:145
+#: apt-cdrom.8.xml:155
msgid "&apt-conf;, &apt-get;, &sources-list;"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:150
+#: 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><refpurpose>
-#: apt-config.8.xml:33
+#: apt-config.8.xml:35
msgid "APT Configuration Query program"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:39
+#: apt-config.8.xml:41
msgid ""
"<command>apt-config</command> is an internal program used by various "
"portions of the APT suite to provide consistent configurability. It accesses "
@@ -2133,7 +2162,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:51
+#: apt-config.8.xml:53
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 "
@@ -2143,7 +2172,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-config.8.xml:59
+#: apt-config.8.xml:61
#, no-wrap
msgid ""
"OPTS=\"-f\"\n"
@@ -2152,14 +2181,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:64
+#: apt-config.8.xml:66
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:68
+#: apt-config.8.xml:70
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 "
@@ -2167,24 +2196,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:77
+#: apt-config.8.xml:79
msgid "Just show the contents of the configuration space."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:90
+#: apt-config.8.xml:92
msgid ""
"Include options which have an empty value. This is the default, so use "
"--no-empty to remove them from the output."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-config.8.xml:95
+#: apt-config.8.xml:97
msgid "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:96
+#: apt-config.8.xml:98
msgid ""
"Defines the output of each config option. &percnt;t will be replaced with "
"its individual name, &percnt;f with its full hierarchical name and &percnt;v "
@@ -2195,39 +2224,39 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:110 apt-extracttemplates.1.xml:71 apt-sortpkgs.1.xml:64 apt-ftparchive.1.xml:608
+#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66 apt-ftparchive.1.xml:610
msgid "&apt-conf;"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:115
+#: apt-config.8.xml:117
msgid ""
"<command>apt-config</command> returns zero on normal operation, decimal 100 "
"on error."
msgstr ""
#. type: Content of: <refentry><refentryinfo><author><contrib>
-#: apt.conf.5.xml:20
+#: apt.conf.5.xml:22
msgid "Initial documentation of Debug::*."
msgstr ""
#. type: Content of: <refentry><refentryinfo><author><email>
-#: apt.conf.5.xml:21
+#: apt.conf.5.xml:23
msgid "dburrows@debian.org"
msgstr ""
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt.conf.5.xml:31 apt_preferences.5.xml:25 sources.list.5.xml:26
+#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28
msgid "5"
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt.conf.5.xml:38
+#: apt.conf.5.xml:40
msgid "Configuration file for APT"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:42
+#: apt.conf.5.xml:44
msgid ""
"<filename>/etc/apt/apt.conf</filename> is the main configuration file shared "
"by all the tools in the APT suite of tools, though it is by no means the "
@@ -2236,21 +2265,21 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><orderedlist><para>
-#: apt.conf.5.xml:48
+#: apt.conf.5.xml:50
msgid ""
"When an APT tool starts up it will read the configuration files in the "
"following order:"
msgstr ""
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:50
+#: apt.conf.5.xml:52
msgid ""
"the file specified by the <envar>APT_CONFIG</envar> environment variable (if "
"any)"
msgstr ""
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:52
+#: apt.conf.5.xml:54
msgid ""
"all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
"order which have either no or \"<literal>conf</literal>\" as filename "
@@ -2262,24 +2291,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:59
+#: apt.conf.5.xml:61
msgid "the main configuration file specified by <literal>Dir::Etc::main</literal>"
msgstr ""
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:61
+#: apt.conf.5.xml:63
msgid ""
"the command line options are applied to override the configuration "
"directives or to load even more configuration files."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:65
+#: apt.conf.5.xml:67
msgid "Syntax"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:66
+#: apt.conf.5.xml:68
msgid ""
"The configuration file is organized in a tree with options organized into "
"functional groups. Option specification is given with a double colon "
@@ -2289,7 +2318,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:72
+#: apt.conf.5.xml:74
msgid ""
"Syntactically the configuration language is modeled after what the ISC tools "
"such as bind and dhcp use. Lines starting with <literal>//</literal> are "
@@ -2304,7 +2333,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:85
+#: apt.conf.5.xml:87
#, no-wrap
msgid ""
"APT {\n"
@@ -2316,7 +2345,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:93
+#: apt.conf.5.xml:95
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 "
@@ -2324,27 +2353,27 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:98
+#: apt.conf.5.xml:100
#, no-wrap
msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:101
+#: apt.conf.5.xml:103
msgid ""
"In general the sample configuration file &configureindex; is a good guide "
"for how it should look."
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:104
+#: apt.conf.5.xml:106
msgid ""
"Case is not significant in names of configuration items, 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:107
+#: apt.conf.5.xml:109
msgid ""
"Names for the configuration items are optional if a list is defined as can "
"be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If "
@@ -2354,7 +2383,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:112
+#: apt.conf.5.xml:114
msgid ""
"Two special commands are defined: <literal>#include</literal> (which is "
"deprecated and not supported by alternative implementations) and "
@@ -2366,7 +2395,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:122
+#: apt.conf.5.xml:124
msgid ""
"The <literal>#clear</literal> command is the only way to delete a list or a "
"complete scope. Reopening a scope (or using the syntax described below with "
@@ -2376,7 +2405,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:130
+#: apt.conf.5.xml:132
msgid ""
"All of the APT tools take an -o option which allows an arbitrary "
"configuration directive to be specified on the command line. The syntax is a "
@@ -2388,7 +2417,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:138
+#: apt.conf.5.xml:140
msgid ""
"Note that appending items to a list using <literal>::</literal> only works "
"for one item per line, and that you should not use it in combination with "
@@ -2405,19 +2434,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:153
+#: apt.conf.5.xml:155
msgid "The APT Group"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:154
+#: apt.conf.5.xml:156
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><listitem><para>
-#: apt.conf.5.xml:159
+#: apt.conf.5.xml:161
msgid ""
"System Architecture; sets the architecture to use when fetching files and "
"parsing package lists. The internal default is the architecture apt was "
@@ -2425,7 +2454,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:166
+#: apt.conf.5.xml:168
msgid ""
"All Architectures the system supports. For instance, CPUs implementing the "
"<literal>amd64</literal> (also called <literal>x86-64</literal>) "
@@ -2439,7 +2468,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:179
+#: apt.conf.5.xml:181
msgid ""
"Default release to install packages from if more than one version is "
"available. Contains release name, codename or release version. Examples: "
@@ -2448,14 +2477,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:185
+#: apt.conf.5.xml:187
msgid ""
"Ignore held packages; this global option causes the problem resolver to "
"ignore held packages in its decision making."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:190
+#: apt.conf.5.xml:192
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 "
@@ -2464,7 +2493,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:198
+#: apt.conf.5.xml:200
msgid ""
"Defaults to on, which will cause APT to install essential and important "
"packages as soon as possible in an install/upgrade operation, in order to "
@@ -2479,7 +2508,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:210
+#: apt.conf.5.xml:212
msgid ""
"The immediate configuration marker is also applied in the potentially "
"problematic case of circular dependencies, since a dependency with the "
@@ -2496,7 +2525,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:223
+#: apt.conf.5.xml:225
msgid ""
"Before a big operation like <literal>dist-upgrade</literal> is run with this "
"option disabled you should try to explicitly <literal>install</literal> the "
@@ -2507,7 +2536,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:234
+#: apt.conf.5.xml:236
msgid ""
"Never enable this option unless you <emphasis>really</emphasis> know what "
"you are doing. It permits APT to temporarily remove an essential package to "
@@ -2520,7 +2549,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:246
+#: apt.conf.5.xml:248
msgid ""
"APT uses since version 0.7.26 a resizable memory mapped cache file to store "
"the available information. <literal>Cache-Start</literal> acts as a hint of "
@@ -2541,38 +2570,38 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:262
+#: apt.conf.5.xml:264
msgid "Defines which packages are considered essential build dependencies."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:266
+#: apt.conf.5.xml:268
msgid ""
"The Get subsection controls the &apt-get; tool; please see its documentation "
"for more information about the options here."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:271
+#: apt.conf.5.xml:273
msgid ""
"The Cache subsection controls the &apt-cache; tool; please see its "
"documentation for more information about the options here."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:276
+#: apt.conf.5.xml:278
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:282
+#: apt.conf.5.xml:284
msgid "The Acquire Group"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:283
+#: apt.conf.5.xml:285
msgid ""
"The <literal>Acquire</literal> group of options controls the download of "
"packages as well as the various \"acquire methods\" responsible for the "
@@ -2580,7 +2609,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:290
+#: apt.conf.5.xml:292
msgid ""
"Security related option defaulting to true, as giving a Release file's "
"validation an expiration date prevents replay attacks over a long timescale, "
@@ -2593,7 +2622,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:303
+#: apt.conf.5.xml:305
msgid ""
"Maximum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -2605,7 +2634,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:315
+#: apt.conf.5.xml:317
msgid ""
"Minimum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -2617,7 +2646,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:327
+#: apt.conf.5.xml:329
msgid ""
"Try to download deltas called <literal>PDiffs</literal> for indexes (like "
"<filename>Packages</filename> files) instead of downloading whole ones. True "
@@ -2625,7 +2654,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:330
+#: apt.conf.5.xml:332
msgid ""
"Two sub-options to limit the use of PDiffs are also available: "
"<literal>FileLimit</literal> can be used to specify a maximum number of "
@@ -2637,7 +2666,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:340
+#: apt.conf.5.xml:342
msgid ""
"Queuing mode; <literal>Queue-Mode</literal> can be one of "
"<literal>host</literal> or <literal>access</literal> which determines how "
@@ -2647,21 +2676,21 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:348
+#: apt.conf.5.xml:350
msgid ""
"Number of retries to perform. If this is non-zero APT will retry failed "
"files the given number of times."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:353
+#: apt.conf.5.xml:355
msgid ""
"Use symlinks for source archives. If set to true then source archives will "
"be symlinked when possible instead of copying. True is the default."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:358
+#: apt.conf.5.xml:360
msgid ""
"<literal>http::Proxy</literal> sets the default proxy to use for HTTP "
"URIs. It is in the standard form of "
@@ -2674,7 +2703,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:366
+#: apt.conf.5.xml:368
msgid ""
"Three settings are provided for cache control with HTTP/1.1 compliant proxy "
"caches. <literal>No-Cache</literal> tells the proxy not to use its cached "
@@ -2686,14 +2715,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:376 apt.conf.5.xml:448
+#: apt.conf.5.xml:378 apt.conf.5.xml:466
msgid ""
"The option <literal>timeout</literal> sets the timeout timer used by the "
"method; this value applies to the connection as well as the data timeout."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:379
+#: apt.conf.5.xml:381
msgid ""
"The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to "
"enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial "
@@ -2705,24 +2734,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:386
+#: apt.conf.5.xml:388
msgid ""
"<literal>Acquire::http::AllowRedirect</literal> controls whether APT will "
"follow redirects, which is enabled by default."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:389
+#: apt.conf.5.xml:391
msgid ""
"The used bandwidth can be limited with "
"<literal>Acquire::http::Dl-Limit</literal> which accepts integer values in "
-"kilobytes. The default value is 0 which deactivates the limit and tries to "
-"use all available bandwidth (note that this option implicitly disables "
-"downloading from multiple servers at the same time.)"
+"kilobytes per second. The default value is 0 which deactivates the limit and "
+"tries to use all available bandwidth. Note that this option implicitly "
+"disables downloading from multiple servers at the same time."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:394
+#: apt.conf.5.xml:398
msgid ""
"<literal>Acquire::http::User-Agent</literal> can be used to set a different "
"User-Agent for the http download method as some proxies allow access for "
@@ -2732,6 +2761,20 @@ msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
#: apt.conf.5.xml:402
msgid ""
+"<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify "
+"an external command to discover the http proxy to use. Apt expects the "
+"command to output the proxy on stdout in the style "
+"<literal>http://proxy:port/</literal>. This will override the generic "
+"<literal>Acquire::http::Proxy</literal> but not any specific host proxy "
+"configuration set via <literal>Acquire::http::Proxy::$HOST</literal>. See "
+"the &squid-deb-proxy-client; package for an example implementation that uses "
+"avahi. This option takes precedence over the legacy option name "
+"<literal>ProxyAutoDetect</literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:420
+msgid ""
"The <literal>Cache-control</literal>, <literal>Timeout</literal>, "
"<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and "
"<literal>proxy</literal> options work for HTTPS URIs in the same way as for "
@@ -2741,7 +2784,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:410
+#: apt.conf.5.xml:428
msgid ""
"<literal>CaInfo</literal> suboption specifies place of file that holds info "
"about trusted certificates. <literal>&lt;host&gt;::CaInfo</literal> is the "
@@ -2765,7 +2808,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:431
+#: apt.conf.5.xml:449
msgid ""
"<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. "
"It is in the standard form of "
@@ -2786,7 +2829,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:451
+#: apt.conf.5.xml:469
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, "
@@ -2796,7 +2839,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:458
+#: apt.conf.5.xml:476
msgid ""
"It is possible to proxy FTP over HTTP by setting the "
"<envar>ftp_proxy</envar> environment variable to an HTTP URL - see the "
@@ -2806,7 +2849,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:463
+#: apt.conf.5.xml:481
msgid ""
"The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@ -2816,13 +2859,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:477
+#: apt.conf.5.xml:495
#, no-wrap
msgid "/cdrom/::Mount \"foo\";"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:472
+#: apt.conf.5.xml:490
msgid ""
"For URIs using the <literal>cdrom</literal> method, the only configurable "
"option is the mount point, <literal>cdrom::Mount</literal>, which must be "
@@ -2835,7 +2878,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:485
+#: apt.conf.5.xml:503
msgid ""
"For GPGV URIs the only configurable option is "
"<literal>gpgv::Options</literal>, which passes additional parameters to "
@@ -2843,7 +2886,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:496
+#: apt.conf.5.xml:514
#, no-wrap
msgid ""
"Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> "
@@ -2851,7 +2894,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:491
+#: apt.conf.5.xml:509
msgid ""
"List of compression types which are understood by the acquire methods. "
"Files like <filename>Packages</filename> can be available in various "
@@ -2863,19 +2906,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:501
+#: apt.conf.5.xml:519
#, no-wrap
msgid "Acquire::CompressionTypes::Order:: \"gz\";"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:504
+#: apt.conf.5.xml:522
#, no-wrap
msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:497
+#: apt.conf.5.xml:515
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 "
@@ -2893,13 +2936,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:511
+#: apt.conf.5.xml:529
#, no-wrap
msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:506
+#: apt.conf.5.xml:524
msgid ""
"Note that the "
"<literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> will be "
@@ -2915,7 +2958,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:516
+#: apt.conf.5.xml:534
msgid ""
"The special type <literal>uncompressed</literal> can be used to give "
"uncompressed files a preference, but note that most archives don't provide "
@@ -2923,7 +2966,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:523
+#: apt.conf.5.xml:541
msgid ""
"When downloading <literal>gzip</literal> compressed indexes (Packages, "
"Sources, or Translations), keep them gzip compressed locally instead of "
@@ -2932,7 +2975,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:531
+#: apt.conf.5.xml:549
msgid ""
"The Languages subsection controls which <filename>Translation</filename> "
"files are downloaded and in which order APT tries to display the "
@@ -2944,13 +2987,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting>
-#: apt.conf.5.xml:548
+#: apt.conf.5.xml:566
#, no-wrap
msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:536
+#: apt.conf.5.xml:554
msgid ""
"The default list includes \"environment\" and "
"\"en\". \"<literal>environment</literal>\" has a special meaning here: it "
@@ -2972,7 +3015,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:549
+#: apt.conf.5.xml:567
msgid ""
"Note: To prevent problems resulting from APT being executed in different "
"environments (e.g. by different users or by other programs) all Translation "
@@ -2982,22 +3025,22 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:558
+#: apt.conf.5.xml:576
msgid "When downloading, force to use only the IPv4 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:564
+#: apt.conf.5.xml:582
msgid "When downloading, force to use only the IPv6 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:571
+#: apt.conf.5.xml:589
msgid "Directories"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:573
+#: apt.conf.5.xml:591
msgid ""
"The <literal>Dir::State</literal> section has directories that pertain to "
"local state information. <literal>lists</literal> is the directory to place "
@@ -3009,7 +3052,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:580
+#: apt.conf.5.xml:598
msgid ""
"<literal>Dir::Cache</literal> contains locations pertaining to local cache "
"information, such as the two package caches <literal>srcpkgcache</literal> "
@@ -3022,7 +3065,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:589
+#: apt.conf.5.xml:607
msgid ""
"<literal>Dir::Etc</literal> contains the location of configuration files, "
"<literal>sourcelist</literal> gives the location of the sourcelist and "
@@ -3032,7 +3075,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:595
+#: apt.conf.5.xml:613
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 "
@@ -3040,7 +3083,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:599
+#: apt.conf.5.xml:617
msgid ""
"Binary programs are pointed to by "
"<literal>Dir::Bin</literal>. <literal>Dir::Bin::Methods</literal> specifies "
@@ -3052,7 +3095,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:607
+#: apt.conf.5.xml:625
msgid ""
"The configuration item <literal>RootDir</literal> has a special meaning. If "
"set, all paths in <literal>Dir::</literal> will be relative to "
@@ -3065,7 +3108,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:620
+#: apt.conf.5.xml:638
msgid ""
"The <literal>Ignore-Files-Silently</literal> list can be used to specify "
"which files APT should silently ignore while parsing the files in the "
@@ -3076,12 +3119,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:629
+#: apt.conf.5.xml:647
msgid "APT in DSelect"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:631
+#: apt.conf.5.xml:649
msgid ""
"When APT is used as a &dselect; method several configuration directives "
"control the default behavior. These are in the <literal>DSelect</literal> "
@@ -3089,7 +3132,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:636
+#: apt.conf.5.xml:654
msgid ""
"Cache Clean mode; this value may be one of <literal>always</literal>, "
"<literal>prompt</literal>, <literal>auto</literal>, "
@@ -3103,40 +3146,40 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:650
+#: apt.conf.5.xml:668
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the install phase."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:655
+#: apt.conf.5.xml:673
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the update phase."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:660
+#: apt.conf.5.xml:678
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:666
+#: apt.conf.5.xml:684
msgid "How APT calls &dpkg;"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:667
+#: apt.conf.5.xml:685
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:672
+#: apt.conf.5.xml:690
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 "
@@ -3144,7 +3187,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:678
+#: apt.conf.5.xml:696
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 "
@@ -3153,47 +3196,68 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:685
+#: apt.conf.5.xml:703
msgid ""
"This is a list of shell commands to run before invoking &dpkg;. Like "
"<literal>options</literal> this must be specified in list notation. The "
"commands are invoked in order using <filename>/bin/sh</filename>; should any "
"fail APT will abort. APT will pass the filenames of all .deb files it is "
-"going to install to the commands, one per line on standard input."
+"going to install to the commands, one per line on the requested file "
+"descriptor, defaulting to standard input."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:691
+#: apt.conf.5.xml:710
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 3 adds the architecture and "
+"<literal>MultiArch</literal> flag to each version being dumped."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:715
+msgid ""
+"The version of the protocol to be used for the command "
+"<literal><replaceable>cmd</replaceable></literal> can be chosen by setting "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::Version</literal> "
+"accordingly, the default being version 1. If APT isn't supporting the "
+"requested version it will send the information in the highest version it has "
+"support for instead."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:722
+msgid ""
+"The file descriptor to be used to send the information can be requested with "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</literal> "
+"which defaults to <literal>0</literal> for standard input and is available "
+"since version 0.9.11. Support for the option can be detected by looking for "
+"the environment variable <envar>APT_HOOK_INFO_FD</envar> which contains the "
+"number of the used file descriptor as a confirmation."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:699
+#: apt.conf.5.xml:732
msgid ""
"APT chdirs to this directory before invoking &dpkg;, the default is "
"<filename>/</filename>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:704
+#: apt.conf.5.xml:737
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:709
+#: apt.conf.5.xml:742
msgid "dpkg trigger usage (and related options)"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:710
+#: apt.conf.5.xml:743
msgid ""
"APT can call &dpkg; in such a way as to let it make aggressive use of "
"triggers over multiple calls of &dpkg;. Without further options &dpkg; will "
@@ -3208,7 +3272,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
-#: apt.conf.5.xml:725
+#: apt.conf.5.xml:758
#, no-wrap
msgid ""
"DPkg::NoTriggers \"true\";\n"
@@ -3218,7 +3282,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:719
+#: apt.conf.5.xml:752
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 "
@@ -3232,7 +3296,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:732
+#: apt.conf.5.xml:765
msgid ""
"Add the no triggers flag to all &dpkg; calls (except the ConfigurePending "
"call). See &dpkg; if you are interested in what this actually means. In "
@@ -3245,7 +3309,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:740
+#: apt.conf.5.xml:773
msgid ""
"Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
"and \"<literal>no</literal>\". The default value is "
@@ -3263,7 +3327,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:755
+#: apt.conf.5.xml:788
msgid ""
"If this option is set APT will call <command>dpkg --configure "
"--pending</command> to let &dpkg; handle all required configurations and "
@@ -3275,7 +3339,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:762
+#: apt.conf.5.xml:795
msgid ""
"Useful for the <literal>smart</literal> configuration as a package which has "
"pending triggers is not considered as <literal>installed</literal>, and "
@@ -3286,7 +3350,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:775
+#: apt.conf.5.xml:808
#, no-wrap
msgid ""
"OrderList::Score {\n"
@@ -3298,7 +3362,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:768
+#: apt.conf.5.xml:801
msgid ""
"Essential packages (and their dependencies) should be configured immediately "
"after unpacking. It is a good idea to do this quite early in the upgrade "
@@ -3312,12 +3376,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:788
+#: apt.conf.5.xml:821
msgid "Periodic and Archives options"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:789
+#: apt.conf.5.xml:822
msgid ""
"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
"of options configure behavior of apt periodic updates, which is done by the "
@@ -3326,12 +3390,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:797
+#: apt.conf.5.xml:830
msgid "Debug options"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:799
+#: apt.conf.5.xml:832
msgid ""
"Enabling options in the <literal>Debug::</literal> section will cause "
"debugging information to be sent to the standard error stream of the program "
@@ -3342,7 +3406,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:810
+#: apt.conf.5.xml:843
msgid ""
"<literal>Debug::pkgProblemResolver</literal> enables output about the "
"decisions made by <literal>dist-upgrade, upgrade, install, remove, "
@@ -3350,7 +3414,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:818
+#: apt.conf.5.xml:851
msgid ""
"<literal>Debug::NoLocking</literal> disables all file locking. This can be "
"used to run some operations (for instance, <literal>apt-get -s "
@@ -3358,7 +3422,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:827
+#: apt.conf.5.xml:860
msgid ""
"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
"time that <literal>apt</literal> invokes &dpkg;."
@@ -3368,65 +3432,65 @@ msgstr ""
#. motivating example, except I haven't a clue why you'd want
#. to do this.
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:835
+#: apt.conf.5.xml:868
msgid ""
"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
"in CD-ROM IDs."
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:845
+#: apt.conf.5.xml:878
msgid "A full list of debugging options to apt follows."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:854
+#: apt.conf.5.xml:887
msgid "Print information related to accessing <literal>cdrom://</literal> sources."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:865
+#: apt.conf.5.xml:898
msgid "Print information related to downloading packages using FTP."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:876
+#: apt.conf.5.xml:909
msgid "Print information related to downloading packages using HTTP."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:887
+#: apt.conf.5.xml:920
msgid "Print information related to downloading packages using HTTPS."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:898
+#: apt.conf.5.xml:931
msgid ""
"Print information related to verifying cryptographic signatures using "
"<literal>gpg</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:909
+#: apt.conf.5.xml:942
msgid ""
"Output information about the process of accessing collections of packages "
"stored on CD-ROMs."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:919
+#: apt.conf.5.xml:952
msgid "Describes the process of resolving build-dependencies in &apt-get;."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:929
+#: apt.conf.5.xml:962
msgid ""
"Output each cryptographic hash that is generated by the "
"<literal>apt</literal> libraries."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:939
+#: apt.conf.5.xml:972
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 "
@@ -3434,52 +3498,52 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:950
+#: apt.conf.5.xml:983
msgid ""
"Disable all file locking. For instance, this will allow two instances of "
"<quote><literal>apt-get update</literal></quote> to run at the same time."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:962
+#: apt.conf.5.xml:995
msgid "Log when items are added to or removed from the global download queue."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:972
+#: apt.conf.5.xml:1005
msgid ""
"Output status messages and errors related to verifying checksums and "
"cryptographic signatures of downloaded files."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:982
+#: apt.conf.5.xml:1015
msgid ""
"Output information about downloading and applying package index list diffs, "
"and errors relating to package index list diffs."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:994
+#: apt.conf.5.xml:1027
msgid ""
"Output information related to patching apt package lists when downloading "
"index diffs instead of full indices."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1005
+#: apt.conf.5.xml:1038
msgid "Log all interactions with the sub-processes that actually perform downloads."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1016
+#: apt.conf.5.xml:1049
msgid ""
"Log events related to the automatically-installed status of packages and to "
"the removal of unused packages."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1026
+#: apt.conf.5.xml:1059
msgid ""
"Generate debug messages describing which packages are being automatically "
"installed to resolve dependencies. This corresponds to the initial "
@@ -3489,7 +3553,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1040
+#: apt.conf.5.xml:1073
msgid ""
"Generate debug messages describing which packages are marked as "
"keep/install/remove while the ProblemResolver does his work. Each addition "
@@ -3507,45 +3571,45 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1061
+#: apt.conf.5.xml:1094
msgid ""
"When invoking &dpkg;, output the precise command line with which it is being "
"invoked, with arguments separated by a single space character."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1072
+#: apt.conf.5.xml:1105
msgid ""
"Output all the data received from &dpkg; on the status file descriptor and "
"any errors encountered while parsing it."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1083
+#: apt.conf.5.xml:1116
msgid ""
"Generate a trace of the algorithm that decides the order in which "
"<literal>apt</literal> should pass packages to &dpkg;."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1095
+#: apt.conf.5.xml:1128
msgid "Output status messages tracing the steps performed when invoking &dpkg;."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1106
+#: apt.conf.5.xml:1139
msgid "Output the priority of each package list on startup."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1116
+#: apt.conf.5.xml:1149
msgid ""
"Trace the execution of the dependency resolver (this applies only to what "
"happens when a complex dependency problem is encountered)."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1127
+#: apt.conf.5.xml:1160
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 "
@@ -3553,19 +3617,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1139
+#: apt.conf.5.xml:1172
msgid ""
"Print information about the vendors read from "
"<filename>/etc/apt/vendors.list</filename>."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:1161 apt_preferences.5.xml:545 sources.list.5.xml:211 apt-ftparchive.1.xml:596
+#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:217 apt-ftparchive.1.xml:598
msgid "Examples"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1162
+#: apt.conf.5.xml:1195
msgid ""
"&configureindex; is a configuration file showing example values for all "
"possible options."
@@ -3573,17 +3637,17 @@ msgstr ""
#. ? reading apt.conf
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1174
+#: apt.conf.5.xml:1207
msgid "&apt-cache;, &apt-config;, &apt-preferences;."
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt_preferences.5.xml:32
+#: apt_preferences.5.xml:34
msgid "Preference control file for APT"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:37
+#: apt_preferences.5.xml:39
msgid ""
"The APT preferences file <filename>/etc/apt/preferences</filename> and the "
"fragment files in the <filename>/etc/apt/preferences.d/</filename> folder "
@@ -3592,7 +3656,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:42
+#: apt_preferences.5.xml:44
msgid ""
"Several versions of a package may be available for installation when the "
"&sources-list; file contains references to more than one distribution (for "
@@ -3605,7 +3669,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:52
+#: apt_preferences.5.xml:54
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 "
@@ -3615,7 +3679,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:59
+#: apt_preferences.5.xml:61
msgid ""
"Preferences are a strong power in the hands of a system administrator but "
"they can become also their biggest nightmare if used without care! APT will "
@@ -3629,7 +3693,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:70
+#: apt_preferences.5.xml:72
msgid ""
"Note that the files in the <filename>/etc/apt/preferences.d</filename> "
"directory are parsed in alphanumeric ascending order and need to obey the "
@@ -3642,12 +3706,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:79
+#: apt_preferences.5.xml:81
msgid "APT's Default Priority Assignments"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:94
+#: apt_preferences.5.xml:96
#, no-wrap
msgid ""
"<command>apt-get install -t testing "
@@ -3655,13 +3719,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:97
+#: apt_preferences.5.xml:99
#, no-wrap
msgid "APT::Default-Release \"stable\";\n"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:81
+#: apt_preferences.5.xml:83
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 "
@@ -3678,19 +3742,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:101
+#: apt_preferences.5.xml:103
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:"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:106
+#: apt_preferences.5.xml:108
msgid "priority 1"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:107
+#: apt_preferences.5.xml:109
msgid ""
"to the versions coming from archives which in their "
"<filename>Release</filename> files are marked as \"NotAutomatic: yes\" but "
@@ -3699,12 +3763,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:113
+#: apt_preferences.5.xml:115
msgid "priority 100"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:114
+#: apt_preferences.5.xml:116
msgid ""
"to the version that is already installed (if any) and to the versions coming "
"from archives which in their <filename>Release</filename> files are marked "
@@ -3713,29 +3777,29 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:121
+#: apt_preferences.5.xml:123
msgid "priority 500"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:122
+#: apt_preferences.5.xml:124
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:126
+#: apt_preferences.5.xml:128
msgid "priority 990"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:127
+#: apt_preferences.5.xml:129
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:132
+#: apt_preferences.5.xml:134
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 "
@@ -3746,14 +3810,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:139
+#: apt_preferences.5.xml:141
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:142
+#: apt_preferences.5.xml:144
msgid ""
"Never downgrade unless the priority of an available version exceeds 1000. "
"(\"Downgrading\" is installing a less recent version of a package in place "
@@ -3763,19 +3827,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:148
+#: apt_preferences.5.xml:150
msgid "Install the highest priority version."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:149
+#: apt_preferences.5.xml:151
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:152
+#: apt_preferences.5.xml:154
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 "
@@ -3783,7 +3847,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:158
+#: apt_preferences.5.xml:160
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 "
@@ -3794,7 +3858,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:165
+#: apt_preferences.5.xml:167
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 "
@@ -3804,7 +3868,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:170
+#: apt_preferences.5.xml:172
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 "
@@ -3816,12 +3880,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:179
+#: apt_preferences.5.xml:181
msgid "The Effect of APT Preferences"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:181
+#: apt_preferences.5.xml:183
msgid ""
"The APT preferences file allows the system administrator to control the "
"assignment of priorities. The file consists of one or more multi-line "
@@ -3830,7 +3894,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:187
+#: apt_preferences.5.xml:189
msgid ""
"The specific form assigns a priority (a \"Pin-Priority\") to one or more "
"specified packages with a specified version or version range. For example, "
@@ -3841,7 +3905,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:194
+#: apt_preferences.5.xml:196
#, no-wrap
msgid ""
"Package: perl\n"
@@ -3850,7 +3914,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:200
+#: apt_preferences.5.xml:202
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 "
@@ -3860,7 +3924,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:206
+#: apt_preferences.5.xml:208
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 "
@@ -3868,7 +3932,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:211
+#: apt_preferences.5.xml:213
#, no-wrap
msgid ""
"Package: *\n"
@@ -3877,7 +3941,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:216
+#: apt_preferences.5.xml:218
msgid ""
"A note of caution: the keyword used here is \"<literal>origin</literal>\" "
"which can be used to match a hostname. The following record will assign a "
@@ -3886,7 +3950,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:220
+#: apt_preferences.5.xml:222
#, no-wrap
msgid ""
"Package: *\n"
@@ -3895,7 +3959,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:224
+#: apt_preferences.5.xml:226
msgid ""
"This should <emphasis>not</emphasis> be confused with the Origin of a "
"distribution as specified in a <filename>Release</filename> file. What "
@@ -3905,7 +3969,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:229
+#: apt_preferences.5.xml:231
msgid ""
"The following record assigns a low priority to all package versions "
"belonging to any distribution whose Archive name is "
@@ -3913,7 +3977,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:233
+#: apt_preferences.5.xml:235
#, no-wrap
msgid ""
"Package: *\n"
@@ -3922,7 +3986,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:238
+#: apt_preferences.5.xml:240
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any distribution whose Codename is "
@@ -3930,7 +3994,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:242
+#: apt_preferences.5.xml:244
#, no-wrap
msgid ""
"Package: *\n"
@@ -3939,7 +4003,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:247
+#: apt_preferences.5.xml:249
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any release whose Archive name is \"<literal>stable</literal>\" "
@@ -3947,7 +4011,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:252
+#: apt_preferences.5.xml:254
#, no-wrap
msgid ""
"Package: *\n"
@@ -3956,12 +4020,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:262
+#: apt_preferences.5.xml:264
msgid "Regular expressions and &glob; syntax"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:264
+#: apt_preferences.5.xml:266
msgid ""
"APT also supports pinning by &glob; expressions, and regular expressions "
"surrounded by slashes. For example, the following example assigns the "
@@ -3971,7 +4035,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:273
+#: apt_preferences.5.xml:275
#, no-wrap
msgid ""
"Package: gnome* /kde/\n"
@@ -3980,7 +4044,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:279
+#: apt_preferences.5.xml:281
msgid ""
"The rule for those expressions is that they can occur anywhere where a "
"string can occur. Thus, the following pin assigns the priority 990 to all "
@@ -3988,7 +4052,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:285
+#: apt_preferences.5.xml:287
#, no-wrap
msgid ""
"Package: *\n"
@@ -3997,7 +4061,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:291
+#: apt_preferences.5.xml:293
msgid ""
"If a regular expression occurs in a <literal>Package</literal> field, the "
"behavior is the same as if this regular expression were replaced with a list "
@@ -4008,89 +4072,89 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:307
+#: apt_preferences.5.xml:309
msgid "How APT Interprets Priorities"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:310
+#: apt_preferences.5.xml:312
msgid ""
"Priorities (P) assigned in the APT preferences file must be positive or "
"negative integers. They are interpreted as follows (roughly speaking):"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:315
+#: apt_preferences.5.xml:317
msgid "P &gt;= 1000"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:316
+#: apt_preferences.5.xml:318
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:320
+#: apt_preferences.5.xml:322
msgid "990 &lt;= P &lt; 1000"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:321
+#: apt_preferences.5.xml:323
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:326
+#: apt_preferences.5.xml:328
msgid "500 &lt;= P &lt; 990"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:327
+#: apt_preferences.5.xml:329
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:332
+#: apt_preferences.5.xml:334
msgid "100 &lt;= P &lt; 500"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:333
+#: apt_preferences.5.xml:335
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:338
+#: apt_preferences.5.xml:340
msgid "0 &lt; P &lt; 100"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:339
+#: apt_preferences.5.xml:341
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:343
+#: apt_preferences.5.xml:345
msgid "P &lt; 0"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:344
+#: apt_preferences.5.xml:346
msgid "prevents the version from being installed"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:349
+#: apt_preferences.5.xml:351
msgid ""
"If any specific-form records match an available package version then the "
"first such record determines the priority of the package version. Failing "
@@ -4099,14 +4163,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:355
+#: apt_preferences.5.xml:357
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:359
+#: apt_preferences.5.xml:361
#, no-wrap
msgid ""
"Package: perl\n"
@@ -4123,12 +4187,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:372
+#: apt_preferences.5.xml:374
msgid "Then:"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:374
+#: apt_preferences.5.xml:376
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 "
@@ -4139,7 +4203,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:379
+#: apt_preferences.5.xml:381
msgid ""
"A version of any package other than <literal>perl</literal> that is "
"available from the local system has priority over other versions, even "
@@ -4147,7 +4211,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:383
+#: apt_preferences.5.xml:385
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 "
@@ -4156,12 +4220,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:393
+#: apt_preferences.5.xml:395
msgid "Determination of Package Version and Distribution Properties"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:395
+#: apt_preferences.5.xml:397
msgid ""
"The locations listed in the &sources-list; file should provide "
"<filename>Packages</filename> and <filename>Release</filename> files to "
@@ -4169,7 +4233,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:399
+#: apt_preferences.5.xml:401
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>: "
@@ -4181,27 +4245,27 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:407
+#: apt_preferences.5.xml:409
msgid "the <literal>Package:</literal> line"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:408
+#: apt_preferences.5.xml:410
msgid "gives the package name"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:411 apt_preferences.5.xml:461
+#: apt_preferences.5.xml:413 apt_preferences.5.xml:463
msgid "the <literal>Version:</literal> line"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:412
+#: apt_preferences.5.xml:414
msgid "gives the version number for the named package"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:417
+#: apt_preferences.5.xml:419
msgid ""
"The <filename>Release</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
@@ -4214,12 +4278,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:428
+#: apt_preferences.5.xml:430
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:429
+#: apt_preferences.5.xml:431
msgid ""
"names the archive to which all the packages in the directory tree belong. "
"For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@ -4230,18 +4294,18 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:439
+#: apt_preferences.5.xml:441
#, no-wrap
msgid "Pin: release a=stable\n"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:445
+#: apt_preferences.5.xml:447
msgid "the <literal>Codename:</literal> line"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:446
+#: apt_preferences.5.xml:448
msgid ""
"names the codename to which all the packages in the directory tree belong. "
"For example, the line \"Codename: &testing-codename;\" specifies that all of "
@@ -4252,13 +4316,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:455
+#: apt_preferences.5.xml:457
#, no-wrap
msgid "Pin: release n=&testing-codename;\n"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:462
+#: apt_preferences.5.xml:464
msgid ""
"names the release version. For example, the packages in the tree might "
"belong to Debian release version &stable-version;. Note that there is "
@@ -4269,7 +4333,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:471
+#: apt_preferences.5.xml:473
#, no-wrap
msgid ""
"Pin: release v=&stable-version;\n"
@@ -4278,12 +4342,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:480
+#: apt_preferences.5.xml:482
msgid "the <literal>Component:</literal> line"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:481
+#: apt_preferences.5.xml:483
msgid ""
"names the licensing component associated with the packages in the directory "
"tree of the <filename>Release</filename> file. For example, the line "
@@ -4295,18 +4359,18 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:490
+#: apt_preferences.5.xml:492
#, no-wrap
msgid "Pin: release c=main\n"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:496
+#: apt_preferences.5.xml:498
msgid "the <literal>Origin:</literal> line"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:497
+#: apt_preferences.5.xml:499
msgid ""
"names the originator of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is "
@@ -4315,18 +4379,18 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:503
+#: apt_preferences.5.xml:505
#, no-wrap
msgid "Pin: release o=Debian\n"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:509
+#: apt_preferences.5.xml:511
msgid "the <literal>Label:</literal> line"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:510
+#: apt_preferences.5.xml:512
msgid ""
"names the label of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is "
@@ -4335,13 +4399,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:516
+#: apt_preferences.5.xml:518
#, no-wrap
msgid "Pin: release l=Debian\n"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:523
+#: apt_preferences.5.xml:525
msgid ""
"All of the <filename>Packages</filename> and <filename>Release</filename> "
"files retrieved from locations listed in the &sources-list; file are stored "
@@ -4356,12 +4420,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:536
+#: apt_preferences.5.xml:538
msgid "Optional Lines in an APT Preferences Record"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:538
+#: apt_preferences.5.xml:540
msgid ""
"Each record in the APT preferences file can optionally begin with one or "
"more lines beginning with the word <literal>Explanation:</literal>. This "
@@ -4369,12 +4433,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:547
+#: apt_preferences.5.xml:549
msgid "Tracking Stable"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:555
+#: apt_preferences.5.xml:557
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated\n"
@@ -4389,7 +4453,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:549
+#: apt_preferences.5.xml:551
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 "
@@ -4399,7 +4463,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:572 apt_preferences.5.xml:618 apt_preferences.5.xml:676
+#: apt_preferences.5.xml:574 apt_preferences.5.xml:620 apt_preferences.5.xml:678
#, no-wrap
msgid ""
"apt-get install <replaceable>package-name</replaceable>\n"
@@ -4408,7 +4472,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:567
+#: apt_preferences.5.xml:569
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 "
@@ -4417,13 +4481,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:584
+#: apt_preferences.5.xml:586
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/testing\n"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:578
+#: apt_preferences.5.xml:580
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>testing</literal> distribution; the package "
@@ -4432,12 +4496,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:590
+#: apt_preferences.5.xml:592
msgid "Tracking Testing or Unstable"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:599
+#: apt_preferences.5.xml:601
#, no-wrap
msgid ""
"Package: *\n"
@@ -4454,7 +4518,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:592
+#: apt_preferences.5.xml:594
msgid ""
"The following APT preferences file will cause APT to assign a high priority "
"to package versions from the <literal>testing</literal> distribution, a "
@@ -4465,7 +4529,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:613
+#: apt_preferences.5.xml:615
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 "
@@ -4474,13 +4538,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:633
+#: apt_preferences.5.xml:635
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:624
+#: apt_preferences.5.xml:626
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>unstable</literal> distribution. "
@@ -4492,12 +4556,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:640
+#: apt_preferences.5.xml:642
msgid "Tracking the evolution of a codename release"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:654
+#: apt_preferences.5.xml:656
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated package "
@@ -4519,7 +4583,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:642
+#: apt_preferences.5.xml:644
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 "
@@ -4534,7 +4598,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:671
+#: apt_preferences.5.xml:673
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 "
@@ -4543,13 +4607,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:691
+#: apt_preferences.5.xml:693
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/sid\n"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:682
+#: apt_preferences.5.xml:684
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>sid</literal> distribution. Thereafter, "
@@ -4561,17 +4625,17 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:706
+#: apt_preferences.5.xml:708
msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: sources.list.5.xml:33
+#: sources.list.5.xml:35
msgid "List of configured APT data sources"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:38
+#: sources.list.5.xml:40
msgid ""
"The source list <filename>/etc/apt/sources.list</filename> is designed to "
"support any number of active sources and a variety of source media. The file "
@@ -4582,7 +4646,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:45
+#: sources.list.5.xml:47
msgid ""
"Each line specifying a source starts with type "
"(e.g. <literal>deb-src</literal>) followed by options and arguments for "
@@ -4592,12 +4656,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:53
+#: sources.list.5.xml:55
msgid "sources.list.d"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:54
+#: sources.list.5.xml:56
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 "
@@ -4610,12 +4674,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:65
+#: sources.list.5.xml:67
msgid "The deb and deb-src types"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:66
+#: sources.list.5.xml:68
msgid ""
"The <literal>deb</literal> type references a typical two-level Debian "
"archive, <filename>distribution/component</filename>. The "
@@ -4631,20 +4695,20 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:78
+#: sources.list.5.xml:80
msgid ""
"The format for a <filename>sources.list</filename> entry using the "
"<literal>deb</literal> and <literal>deb-src</literal> types is:"
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:81
+#: sources.list.5.xml:83
#, no-wrap
msgid "deb [ options ] uri distribution [component1] [component2] [...]"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:83
+#: sources.list.5.xml:85
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. "
@@ -4657,7 +4721,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:92
+#: sources.list.5.xml:94
msgid ""
"<literal>distribution</literal> may also contain a variable, "
"<literal>$(ARCH)</literal> which expands to the Debian architecture (such as "
@@ -4669,7 +4733,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:100
+#: sources.list.5.xml:102
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 "
@@ -4684,7 +4748,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:112
+#: sources.list.5.xml:114
msgid ""
"<literal>options</literal> is always optional and needs to be surrounded by "
"square brackets. It can consist of multiple settings in the form "
@@ -4695,7 +4759,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:117
+#: sources.list.5.xml:120
msgid ""
"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</replaceable>,…</literal> "
"can be used to specify for which architectures information should be "
@@ -4704,7 +4768,17 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:121
+#: sources.list.5.xml:124
+msgid ""
+"<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</replaceable>,…</literal> "
+"and "
+"<literal>arch-=<replaceable>arch1</replaceable>,<replaceable>arch2</replaceable>,…</literal> "
+"which can be used to add/remove architectures from the set which will be "
+"downloaded."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
+#: sources.list.5.xml:127
msgid ""
"<literal>trusted=yes</literal> can be set to indicate that packages from "
"this source are always authenticated even if the "
@@ -4716,7 +4790,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:128
+#: sources.list.5.xml:134
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 "
@@ -4725,12 +4799,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:133
+#: sources.list.5.xml:139
msgid "Some examples:"
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:135
+#: sources.list.5.xml:141
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@ -4740,17 +4814,17 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:141
+#: sources.list.5.xml:147
msgid "URI specification"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:143
+#: sources.list.5.xml:149
msgid "The currently recognized URI types are:"
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:147
+#: sources.list.5.xml:153
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 "
@@ -4758,7 +4832,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:154
+#: sources.list.5.xml:160
msgid ""
"The cdrom scheme allows APT to use a local CD-ROM drive with media "
"swapping. Use the &apt-cdrom; program to create cdrom entries in the source "
@@ -4766,7 +4840,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:161
+#: sources.list.5.xml:167
msgid ""
"The http scheme specifies an HTTP server for the archive. If an environment "
"variable <envar>http_proxy</envar> is set with the format "
@@ -4777,7 +4851,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:172
+#: sources.list.5.xml:178
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 "
@@ -4790,7 +4864,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:184
+#: sources.list.5.xml:190
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. "
@@ -4799,7 +4873,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:191
+#: sources.list.5.xml:197
msgid ""
"The rsh/ssh method invokes RSH/SSH to connect to a remote host and access "
"the files as a given user. Prior configuration of rhosts or RSA keys is "
@@ -4808,12 +4882,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
-#: sources.list.5.xml:198
+#: sources.list.5.xml:204
msgid "adding more recognizable URI types"
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:200
+#: sources.list.5.xml:206
msgid ""
"APT can be extended with more methods shipped in other optional packages, "
"which should follow the naming scheme "
@@ -4825,42 +4899,42 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:212
+#: sources.list.5.xml:218
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:214
+#: sources.list.5.xml:220
#, no-wrap
msgid "deb file:/home/jason/debian stable main contrib non-free"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:216
+#: sources.list.5.xml:222
msgid "As above, except this uses the unstable (development) distribution."
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:217
+#: sources.list.5.xml:223
#, no-wrap
msgid "deb file:/home/jason/debian unstable main contrib non-free"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:219
+#: sources.list.5.xml:225
msgid "Source line for the above"
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:220
+#: sources.list.5.xml:226
#, 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:222
+#: sources.list.5.xml:228
msgid ""
"The first line gets package information for the architectures in "
"<literal>APT::Architectures</literal> while the second always retrieves "
@@ -4868,7 +4942,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:224
+#: sources.list.5.xml:230
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main\n"
@@ -4876,33 +4950,33 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:227
+#: sources.list.5.xml:233
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:229
+#: sources.list.5.xml:235
#, no-wrap
msgid "deb http://archive.debian.org/debian-archive hamm main"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:231
+#: sources.list.5.xml:237
msgid ""
"Uses FTP to access the archive at ftp.debian.org, under the debian "
"directory, and uses only the &stable-codename;/contrib area."
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:233
+#: sources.list.5.xml:239
#, no-wrap
msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:235
+#: sources.list.5.xml:241
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 "
@@ -4911,19 +4985,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:239
+#: sources.list.5.xml:245
#, no-wrap
msgid "deb ftp://ftp.debian.org/debian unstable contrib"
msgstr ""
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: sources.list.5.xml:248
+#: sources.list.5.xml:254
#, no-wrap
msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:241
+#: sources.list.5.xml:247
msgid ""
"Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
"directory, and uses only files found under "
@@ -4935,24 +5009,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:253
+#: sources.list.5.xml:259
msgid "&apt-cache; &apt-conf;"
msgstr ""
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-extracttemplates.1.xml:26 apt-sortpkgs.1.xml:26 apt-ftparchive.1.xml:26
+#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28
msgid "1"
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-extracttemplates.1.xml:33
+#: apt-extracttemplates.1.xml:35
msgid ""
"Utility to extract <command>debconf</command> config and templates from "
"Debian packages"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:39
+#: apt-extracttemplates.1.xml:41
msgid ""
"<command>apt-extracttemplates</command> will take one or more Debian package "
"files as input and write out (to a temporary directory) all associated "
@@ -4962,12 +5036,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:44
+#: apt-extracttemplates.1.xml:46
msgid "package version template-file config-script"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:45
+#: apt-extracttemplates.1.xml:47
msgid ""
"template-file and config-script are written to the temporary directory "
"specified by the <option>-t</option> or <option>--tempdir</option> "
@@ -4977,7 +5051,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-extracttemplates.1.xml:58
+#: apt-extracttemplates.1.xml:60
msgid ""
"Temporary directory in which to write extracted <command>debconf</command> "
"template files and config scripts. Configuration Item: "
@@ -4985,19 +5059,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:75
+#: apt-extracttemplates.1.xml:77
msgid ""
"<command>apt-extracttemplates</command> returns zero on normal operation, "
"decimal 100 on error."
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-sortpkgs.1.xml:33
+#: apt-sortpkgs.1.xml:35
msgid "Utility to sort package index files"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:39
+#: apt-sortpkgs.1.xml:41
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 "
@@ -5006,31 +5080,31 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:45
+#: apt-sortpkgs.1.xml:47
msgid "All output is sent to standard output; the input must be a seekable file."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-sortpkgs.1.xml:54
+#: apt-sortpkgs.1.xml:56
msgid ""
"Use source index field ordering. Configuration Item: "
"<literal>APT::SortPkgs::Source</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:68
+#: apt-sortpkgs.1.xml:70
msgid ""
"<command>apt-sortpkgs</command> returns zero on normal operation, decimal "
"100 on error."
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-ftparchive.1.xml:33
+#: apt-ftparchive.1.xml:35
msgid "Utility to generate index files"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:39
+#: apt-ftparchive.1.xml:41
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 "
@@ -5039,7 +5113,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:43
+#: apt-ftparchive.1.xml:45
msgid ""
"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; "
"program, incorporating its entire functionality via the "
@@ -5049,7 +5123,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:49
+#: apt-ftparchive.1.xml:51
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 "
@@ -5059,7 +5133,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:60
+#: apt-ftparchive.1.xml:62
msgid ""
"The packages command generates a package file from a directory tree. It "
"takes the given directory and recursively searches it for .deb files, "
@@ -5068,12 +5142,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:65 apt-ftparchive.1.xml:89
+#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91
msgid "The option <option>--db</option> can be used to specify a binary caching DB."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:70
+#: apt-ftparchive.1.xml:72
msgid ""
"The <literal>sources</literal> command generates a source index file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -5082,7 +5156,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:75
+#: apt-ftparchive.1.xml:77
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 "
@@ -5090,7 +5164,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:82
+#: apt-ftparchive.1.xml:84
msgid ""
"The <literal>contents</literal> command generates a contents file from a "
"directory tree. It takes the given directory and recursively searches it for "
@@ -5101,7 +5175,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:94
+#: apt-ftparchive.1.xml:96
msgid ""
"The <literal>release</literal> command generates a Release file from a "
"directory tree. It recursively searches the given directory for uncompressed "
@@ -5117,7 +5191,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:104
+#: apt-ftparchive.1.xml:106
msgid ""
"Values for the additional metadata fields in the Release file are taken from "
"the corresponding variables under "
@@ -5131,7 +5205,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:117
+#: apt-ftparchive.1.xml:119
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 "
@@ -5141,19 +5215,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:126
+#: apt-ftparchive.1.xml:128
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:132
+#: apt-ftparchive.1.xml:134
msgid "The Generate Configuration"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:134
+#: apt-ftparchive.1.xml:136
msgid ""
"The <literal>generate</literal> command uses a configuration file to "
"describe the archives that are going to be generated. It follows the typical "
@@ -5164,17 +5238,17 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:142
+#: apt-ftparchive.1.xml:144
msgid "The generate configuration has four separate sections, each described below."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:144
+#: apt-ftparchive.1.xml:146
msgid "<literal>Dir</literal> Section"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:146
+#: apt-ftparchive.1.xml:148
msgid ""
"The <literal>Dir</literal> section defines the standard directories needed "
"to locate the files required during the generation process. These "
@@ -5183,7 +5257,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:153
+#: apt-ftparchive.1.xml:155
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 "
@@ -5191,29 +5265,29 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:160
+#: apt-ftparchive.1.xml:162
msgid "Specifies the location of the override files."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:165
+#: apt-ftparchive.1.xml:167
msgid "Specifies the location of the cache files."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:170
+#: apt-ftparchive.1.xml:172
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:176
+#: apt-ftparchive.1.xml:178
msgid "<literal>Default</literal> Section"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:178
+#: apt-ftparchive.1.xml:180
msgid ""
"The <literal>Default</literal> section specifies default values, and "
"settings that control the operation of the generator. Other sections may "
@@ -5221,7 +5295,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:184
+#: apt-ftparchive.1.xml:186
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 "
@@ -5230,42 +5304,42 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:192
+#: apt-ftparchive.1.xml:194
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><listitem><para>
-#: apt-ftparchive.1.xml:198
+#: apt-ftparchive.1.xml:200
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><listitem><para>
-#: apt-ftparchive.1.xml:204
+#: apt-ftparchive.1.xml:206
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><listitem><para>
-#: apt-ftparchive.1.xml:210
+#: apt-ftparchive.1.xml:212
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><listitem><para>
-#: apt-ftparchive.1.xml:216
+#: apt-ftparchive.1.xml:218
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Translation-en master file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:222
+#: apt-ftparchive.1.xml:224
msgid ""
"Specifies the number of kilobytes to delink (and replace with hard links) "
"per run. This is used in conjunction with the per-section "
@@ -5273,14 +5347,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:229
+#: apt-ftparchive.1.xml:231
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><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:236 apt-ftparchive.1.xml:382
+#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384
msgid ""
"Specifies whether long descriptions should be included in the "
"<filename>Packages</filename> file or split out into a master "
@@ -5288,12 +5362,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:242
+#: apt-ftparchive.1.xml:244
msgid "<literal>TreeDefault</literal> Section"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:244
+#: apt-ftparchive.1.xml:246
msgid ""
"Sets defaults specific to <literal>Tree</literal> sections. All of these "
"variables are substitution variables and have the strings $(DIST), "
@@ -5301,7 +5375,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:251
+#: apt-ftparchive.1.xml:253
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 "
@@ -5309,7 +5383,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:258
+#: apt-ftparchive.1.xml:260
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 "
@@ -5320,35 +5394,35 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:269
+#: apt-ftparchive.1.xml:271
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><listitem><para>
-#: apt-ftparchive.1.xml:275
+#: apt-ftparchive.1.xml:277
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><listitem><para>
-#: apt-ftparchive.1.xml:281
+#: apt-ftparchive.1.xml:283
msgid ""
"Sets the output Packages file. Defaults to "
"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:287
+#: apt-ftparchive.1.xml:289
msgid ""
"Sets the output Sources file. Defaults to "
"<filename>$(DIST)/$(SECTION)/source/Sources</filename>"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:293
+#: apt-ftparchive.1.xml:295
msgid ""
"Sets the output Translation-en master file with the long descriptions if "
"they should be not included in the Packages file. Defaults to "
@@ -5356,7 +5430,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:300
+#: apt-ftparchive.1.xml:302
msgid ""
"Sets the path prefix that causes a symlink to be considered an internal link "
"instead of an external link. Defaults to "
@@ -5364,7 +5438,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:307
+#: apt-ftparchive.1.xml:309
msgid ""
"Sets the output Contents file. Defaults to "
"<filename>$(DIST)/$(SECTION)/Contents-$(ARCH)</filename>. If this setting "
@@ -5374,19 +5448,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:316
+#: apt-ftparchive.1.xml:318
msgid "Sets header file to prepend to the contents output."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:321
+#: apt-ftparchive.1.xml:323
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><listitem><para>
-#: apt-ftparchive.1.xml:327
+#: apt-ftparchive.1.xml:329
msgid ""
"Specifies that instead of walking the directory tree, "
"<command>apt-ftparchive</command> should read the list of files from the "
@@ -5394,7 +5468,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:334
+#: apt-ftparchive.1.xml:336
msgid ""
"Specifies that instead of walking the directory tree, "
"<command>apt-ftparchive</command> should read the list of files from the "
@@ -5403,12 +5477,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:342
+#: apt-ftparchive.1.xml:344
msgid "<literal>Tree</literal> Section"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:344
+#: apt-ftparchive.1.xml:346
msgid ""
"The <literal>Tree</literal> section defines a standard Debian file tree "
"which consists of a base directory, then multiple sections in that base "
@@ -5418,7 +5492,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:349
+#: apt-ftparchive.1.xml:351
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 "
@@ -5427,7 +5501,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:354
+#: apt-ftparchive.1.xml:356
msgid ""
"All of the settings defined in the <literal>TreeDefault</literal> section "
"can be used in a <literal>Tree</literal> section as well as three new "
@@ -5435,7 +5509,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt-ftparchive.1.xml:360
+#: apt-ftparchive.1.xml:362
#, no-wrap
msgid ""
"for i in Sections do \n"
@@ -5445,7 +5519,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:357
+#: apt-ftparchive.1.xml:359
msgid ""
"When processing a <literal>Tree</literal> section "
"<command>apt-ftparchive</command> performs an operation similar to: "
@@ -5453,7 +5527,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:368
+#: apt-ftparchive.1.xml:370
msgid ""
"This is a space separated list of sections which appear under the "
"distribution; typically this is something like <literal>main contrib "
@@ -5461,7 +5535,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:375
+#: apt-ftparchive.1.xml:377
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 "
@@ -5469,36 +5543,36 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:388
+#: apt-ftparchive.1.xml:390
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><listitem><para>
-#: apt-ftparchive.1.xml:394
+#: apt-ftparchive.1.xml:396
msgid ""
"Sets the source override file. The override file contains section "
"information."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:400 apt-ftparchive.1.xml:446
+#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448
msgid "Sets the binary extra override file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:405 apt-ftparchive.1.xml:451
+#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453
msgid "Sets the source extra override file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:410
+#: apt-ftparchive.1.xml:412
msgid "<literal>BinDirectory</literal> Section"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:412
+#: apt-ftparchive.1.xml:414
msgid ""
"The <literal>bindirectory</literal> section defines a binary directory tree "
"with no special structure. The scope tag specifies the location of the "
@@ -5508,54 +5582,54 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:420
+#: apt-ftparchive.1.xml:422
msgid "Sets the Packages file output."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:425
+#: apt-ftparchive.1.xml:427
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:431
+#: apt-ftparchive.1.xml:433
msgid "Sets the Contents file output (optional)."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:436
+#: apt-ftparchive.1.xml:438
msgid "Sets the binary override file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:441
+#: apt-ftparchive.1.xml:443
msgid "Sets the source override file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:456
+#: apt-ftparchive.1.xml:458
msgid "Sets the cache DB."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:461
+#: apt-ftparchive.1.xml:463
msgid "Appends a path to all the output paths."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:466
+#: apt-ftparchive.1.xml:468
msgid "Specifies the file list file."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:473
+#: apt-ftparchive.1.xml:475
msgid "The Binary Override File"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:474
+#: apt-ftparchive.1.xml:476
msgid ""
"The binary override file is fully compatible with &dpkg-scanpackages;. It "
"contains four fields separated by spaces. The first field is the package "
@@ -5565,19 +5639,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:480
+#: apt-ftparchive.1.xml:482
#, no-wrap
msgid "old [// oldn]* => new"
msgstr ""
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:482
+#: apt-ftparchive.1.xml:484
#, no-wrap
msgid "new"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:479
+#: apt-ftparchive.1.xml:481
msgid ""
"The general form of the maintainer field is: <placeholder "
"type=\"literallayout\" id=\"0\"/> or simply, <placeholder "
@@ -5588,12 +5662,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:490
+#: apt-ftparchive.1.xml:492
msgid "The Source Override File"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:492
+#: apt-ftparchive.1.xml:494
msgid ""
"The source override file is fully compatible with &dpkg-scansources;. It "
"contains two fields separated by spaces. The first field is the source "
@@ -5601,12 +5675,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:497
+#: apt-ftparchive.1.xml:499
msgid "The Extra Override File"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:499
+#: apt-ftparchive.1.xml:501
msgid ""
"The extra override file allows any arbitrary tag to be added or replaced in "
"the output. It has three columns, the first is the package, the second is "
@@ -5614,7 +5688,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:510
+#: apt-ftparchive.1.xml:512
msgid ""
"Generate the given checksum. These options default to on, when turned off "
"the generated index files will not have the checksum fields where possible. "
@@ -5630,14 +5704,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:521
+#: apt-ftparchive.1.xml:523
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:527
+#: apt-ftparchive.1.xml:529
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 "
@@ -5646,7 +5720,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:535
+#: apt-ftparchive.1.xml:537
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 "
@@ -5655,7 +5729,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:543
+#: apt-ftparchive.1.xml:545
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 "
@@ -5665,7 +5739,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:553
+#: apt-ftparchive.1.xml:555
msgid ""
"Select the source override file to use with the <literal>sources</literal> "
"command. Configuration Item: "
@@ -5673,14 +5747,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:559
+#: apt-ftparchive.1.xml:561
msgid ""
"Make the caching databases read only. Configuration Item: "
"<literal>APT::FTPArchive::ReadOnlyDB</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:564
+#: apt-ftparchive.1.xml:566
msgid ""
"Accept in the <literal>packages</literal> and <literal>contents</literal> "
"commands only package files matching <literal>*_arch.deb</literal> or "
@@ -5689,7 +5763,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:572
+#: apt-ftparchive.1.xml:574
msgid ""
"&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
"packages are recompiled and/or republished with the same version again, this "
@@ -5703,7 +5777,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:584
+#: apt-ftparchive.1.xml:586
msgid ""
"This configuration option defaults to \"<literal>true</literal>\" and should "
"only be set to <literal>\"false\"</literal> if the Archive generated with "
@@ -5713,7 +5787,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><programlisting>
-#: apt-ftparchive.1.xml:602
+#: apt-ftparchive.1.xml:604
#, no-wrap
msgid ""
"<command>apt-ftparchive</command> packages "
@@ -5722,14 +5796,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:598
+#: apt-ftparchive.1.xml:600
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:612
+#: apt-ftparchive.1.xml:614
msgid ""
"<command>apt-ftparchive</command> returns zero on normal operation, decimal "
"100 on error."
diff --git a/doc/po/de.po b/doc/po/de.po
index 808fcd126..4e666eaf0 100644
--- a/doc/po/de.po
+++ b/doc/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt-doc 0.9.7\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-06-13 13:46+0300\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-06-25 22:49+0100\n"
"Last-Translator: Chris Leick <c.leick@vollbio.de>\n"
"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
@@ -615,34 +615,34 @@ msgid ""
msgstr "<!ENTITY synopsis-keyid \"Schlüsselkennung\">"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-get.8.xml:26 apt-cache.8.xml:26 apt-key.8.xml:25 apt-mark.8.xml:26
-#: apt-secure.8.xml:25 apt-cdrom.8.xml:25 apt-config.8.xml:26
+#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28
+#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28
msgid "8"
msgstr "8"
#. type: Content of: <refentry><refmeta><refmiscinfo>
-#: apt-get.8.xml:27 apt-cache.8.xml:27 apt-key.8.xml:26 apt-mark.8.xml:27
-#: apt-secure.8.xml:26 apt-cdrom.8.xml:26 apt-config.8.xml:27
-#: apt.conf.5.xml:32 apt_preferences.5.xml:26 sources.list.5.xml:27
-#: apt-extracttemplates.1.xml:27 apt-sortpkgs.1.xml:27 apt-ftparchive.1.xml:27
+#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29
+#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29
+#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29
+#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29
msgid "APT"
msgstr "APT"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-get.8.xml:33
+#: apt-get.8.xml:35
msgid "APT package handling utility -- command-line interface"
msgstr "APT-Werkzeug für den Umgang mit Paketen -- Befehlszeilenschnittstelle"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:38 apt-cache.8.xml:38 apt-key.8.xml:37 apt-mark.8.xml:38
-#: apt-secure.8.xml:50 apt-cdrom.8.xml:37 apt-config.8.xml:38
-#: apt.conf.5.xml:41 apt_preferences.5.xml:36 sources.list.5.xml:36
-#: apt-extracttemplates.1.xml:38 apt-sortpkgs.1.xml:38 apt-ftparchive.1.xml:38
+#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40
+#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40
+#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38
+#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40
msgid "Description"
msgstr "Beschreibung"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:39
+#: apt-get.8.xml:41
msgid ""
"<command>apt-get</command> is the command-line tool for handling packages, "
"and may be considered the user's \"back-end\" to other tools using the APT "
@@ -655,8 +655,8 @@ msgstr ""
"Oberflächenschnittstellen, wie &dselect;, &aptitude;, &synaptic; und &wajig;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:44 apt-cache.8.xml:44 apt-cdrom.8.xml:51 apt-config.8.xml:44
-#: apt-ftparchive.1.xml:54
+#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46
+#: apt-ftparchive.1.xml:56
msgid ""
"Unless the <option>-h</option>, or <option>--help</option> option is given, "
"one of the commands below must be present."
@@ -665,7 +665,7 @@ msgstr ""
"angegeben ist, muss einer der unten aufgeführten Befehle vorkommen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:49
+#: apt-get.8.xml:51
msgid ""
"<literal>update</literal> is used to resynchronize the package index files "
"from their sources. The indexes of available packages are fetched from the "
@@ -689,7 +689,7 @@ msgstr ""
"Größe der Pakete nicht im voraus bekannt ist."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:61
+#: apt-get.8.xml:63
msgid ""
"<literal>upgrade</literal> is used to install the newest versions of all "
"packages currently installed on the system from the sources enumerated in "
@@ -715,7 +715,7 @@ msgstr ""
"get</command> die neuen Versionen der verfügbaren Pakete kennt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:74
+#: apt-get.8.xml:76
msgid ""
"<literal>dist-upgrade</literal> in addition to performing the function of "
"<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@ -740,7 +740,7 @@ msgstr ""
"überschreiben der allgemeinen Einstellungen für einzelne Pakete."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:87
+#: apt-get.8.xml:89
msgid ""
"<literal>dselect-upgrade</literal> is used in conjunction with the "
"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@ -757,7 +757,7 @@ msgstr ""
"Installieren von neuen Paketen)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:98
+#: apt-get.8.xml:100
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 "
@@ -788,7 +788,7 @@ msgstr ""
"get getroffen wurden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:116
+#: apt-get.8.xml:118
msgid ""
"A specific version of a package can be selected for installation by "
"following the package name with an equals and the version of the package to "
@@ -806,7 +806,7 @@ msgstr ""
"ausgewählt werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:123
+#: apt-get.8.xml:125
msgid ""
"Both of the version selection mechanisms can downgrade packages and must be "
"used with care."
@@ -815,7 +815,7 @@ msgstr ""
"durchführen und müssen mit Vorsicht gehandhabt werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:126
+#: apt-get.8.xml:128
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. "
@@ -836,7 +836,7 @@ msgstr ""
"heruntergeladen und installiert."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:137
+#: apt-get.8.xml:139
msgid ""
"Finally, the &apt-preferences; mechanism allows you to create an alternative "
"installation policy for individual packages."
@@ -845,7 +845,7 @@ msgstr ""
"alternative Installationsrichtlinie für eigene Pakete zu erzeugen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:141
+#: apt-get.8.xml:143
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 "
@@ -865,7 +865,7 @@ msgstr ""
"Zeichen, um genauere reguläre Ausdruck zu erstellen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:151
+#: apt-get.8.xml:153
msgid ""
"<literal>remove</literal> is identical to <literal>install</literal> except "
"that packages are removed instead of installed. Note that removing a package "
@@ -880,7 +880,7 @@ msgstr ""
"Leerzeichen dazwischen) wird das erkannte Paket installiert anstatt entfernt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:159
+#: apt-get.8.xml:161
msgid ""
"<literal>purge</literal> is identical to <literal>remove</literal> except "
"that packages are removed and purged (any configuration files are deleted "
@@ -891,7 +891,7 @@ msgstr ""
"Konfigurationsdateien werden mitgelöscht)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:164
+#: apt-get.8.xml:166
msgid ""
"<literal>source</literal> causes <command>apt-get</command> to fetch source "
"packages. APT will examine the available packages to decide which source "
@@ -911,7 +911,7 @@ msgstr ""
"wurde, wenn möglich."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:172
+#: apt-get.8.xml:174
msgid ""
"Source packages are tracked separately from binary packages via <literal>deb-"
"src</literal> lines in the &sources-list; file. This means that you will "
@@ -926,7 +926,7 @@ msgstr ""
"Versionen (zu alte/zu neue) oder überhaupt keine Quellpakete erhalten."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:178
+#: apt-get.8.xml:180
msgid ""
"If the <option>--compile</option> option is specified then the package will "
"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
@@ -941,7 +941,7 @@ msgstr ""
"angegeben ist, wird das Quellpaket nicht entpackt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:185
+#: apt-get.8.xml:187
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 "
@@ -957,7 +957,7 @@ msgstr ""
"literal>-Option."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:191
+#: apt-get.8.xml:193
msgid ""
"Note that source packages are not installed and tracked in the "
"<command>dpkg</command> database like binary packages; they are simply "
@@ -969,7 +969,7 @@ msgstr ""
"heruntergeladen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:197
+#: apt-get.8.xml:199
msgid ""
"<literal>build-dep</literal> causes apt-get to install/remove packages in an "
"attempt to satisfy the build dependencies for a source package. By default "
@@ -985,7 +985,7 @@ msgstr ""
"angegeben werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:204
+#: apt-get.8.xml:206
msgid ""
"<literal>check</literal> is a diagnostic tool; it updates the package cache "
"and checks for broken dependencies."
@@ -994,7 +994,7 @@ msgstr ""
"Paketzwischenspeicher und prüft, ob beschädigte Abhängigkeiten vorliegen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:209
+#: apt-get.8.xml:211
msgid ""
"<literal>download</literal> will download the given binary package into the "
"current directory."
@@ -1003,7 +1003,7 @@ msgstr ""
"Verzeichnis herunterladen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:215
+#: apt-get.8.xml:217
msgid ""
"<literal>clean</literal> clears out the local repository of retrieved "
"package files. It removes everything but the lock file from "
@@ -1022,7 +1022,7 @@ msgstr ""
"Zeit zu Zeit ausführen, um Plattenplatz freizugeben."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:225
+#: apt-get.8.xml:227
msgid ""
"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
"local repository of retrieved package files. The difference is that it only "
@@ -1042,7 +1042,7 @@ msgstr ""
"sie auf »off« gesetzt ist."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:235
+#: apt-get.8.xml:237
msgid ""
"<literal>autoremove</literal> is used to remove packages that were "
"automatically installed to satisfy dependencies for other packages and are "
@@ -1053,7 +1053,7 @@ msgstr ""
"erfüllen und die nicht mehr benötigt werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:240
+#: apt-get.8.xml:242
msgid ""
"<literal>changelog</literal> downloads a package changelog and displays it "
"through <command>sensible-pager</command>. The server name and base "
@@ -1076,14 +1076,14 @@ msgstr ""
"Befehl <option>install</option> angeben."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:258 apt-cache.8.xml:248 apt-mark.8.xml:108
-#: apt-config.8.xml:84 apt-extracttemplates.1.xml:52 apt-sortpkgs.1.xml:48
-#: apt-ftparchive.1.xml:504
+#: apt-get.8.xml:260 apt-cache.8.xml:250 apt-mark.8.xml:110
+#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50
+#: apt-ftparchive.1.xml:506
msgid "options"
msgstr "Optionen"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:263
+#: apt-get.8.xml:265
msgid ""
"Do not consider recommended packages as a dependency for installing. "
"Configuration Item: <literal>APT::Install-Recommends</literal>."
@@ -1092,7 +1092,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::Install-Recommends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:268
+#: apt-get.8.xml:270
msgid ""
"Consider suggested packages as a dependency for installing. Configuration "
"Item: <literal>APT::Install-Suggests</literal>."
@@ -1101,7 +1101,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::Install-Suggests</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:273
+#: apt-get.8.xml:275
msgid ""
"Download only; package files are only retrieved, not unpacked or installed. "
"Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@ -1111,7 +1111,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:278
+#: apt-get.8.xml:280
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 "
@@ -1140,7 +1140,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::Get::Fix-Broken</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:293
+#: apt-get.8.xml:295
msgid ""
"Ignore missing packages; if packages cannot be retrieved or fail the "
"integrity check after retrieval (corrupted package files), hold back those "
@@ -1161,7 +1161,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:304
+#: apt-get.8.xml:306
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 "
@@ -1173,7 +1173,7 @@ msgstr ""
"<literal>APT::Get::Download</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:311
+#: apt-get.8.xml:313
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 "
@@ -1193,7 +1193,7 @@ msgstr ""
"Konfigurationselement: <literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:326
+#: apt-get.8.xml:328
msgid ""
"No action; perform a simulation of events that would occur but do not "
"actually change the system. Configuration Item: <literal>APT::Get::"
@@ -1204,7 +1204,7 @@ msgstr ""
"<literal>APT::Get::Simulate</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:330
+#: apt-get.8.xml:332
msgid ""
"Simulated runs performed as a user will automatically deactivate locking "
"(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::"
@@ -1224,7 +1224,7 @@ msgstr ""
"wissen, was sie tun."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:338
+#: apt-get.8.xml:340
msgid ""
"Simulated runs print out a series of lines, each representing a "
"<command>dpkg</command> operation: configure (<literal>Conf</literal>), "
@@ -1239,7 +1239,7 @@ msgstr ""
"eckiger Klammern bedeutet Unterbrechungen, die keine Folgen haben (selten)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:346
+#: apt-get.8.xml:348
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 "
@@ -1255,7 +1255,7 @@ msgstr ""
"Get::Assume-Yes</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:354
+#: apt-get.8.xml:356
msgid ""
"Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::"
"Assume-No</literal>."
@@ -1264,7 +1264,7 @@ msgstr ""
"Get::Assume-No</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:359
+#: apt-get.8.xml:361
msgid ""
"Show upgraded packages; print out a list of all packages that are to be "
"upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@ -1274,7 +1274,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::Get::Show-Upgraded</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:365
+#: apt-get.8.xml:367
msgid ""
"Show full versions for upgraded and installed packages. Configuration Item: "
"<literal>APT::Get::Show-Versions</literal>."
@@ -1284,7 +1284,7 @@ msgstr ""
"Versions</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:371
+#: apt-get.8.xml:373
msgid ""
"This option controls the architecture packages are built for by <command>apt-"
"get source --compile</command> and how cross-builddependencies are "
@@ -1301,7 +1301,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::Get::Host-Architecture</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:381
+#: apt-get.8.xml:383
msgid ""
"Compile source packages after downloading them. Configuration Item: "
"<literal>APT::Get::Compile</literal>."
@@ -1310,7 +1310,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::Get::Compile</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:386
+#: apt-get.8.xml:388
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 "
@@ -1324,7 +1324,19 @@ msgstr ""
"<literal>APT::Ignore-Hold</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:393
+#: apt-get.8.xml:395
+msgid ""
+"Allow installing new packages when used in conjunction with "
+"<literal>upgrade</literal>. This is useful if the update of a installed "
+"package requires new dependencies to be installed. Instead of holding the "
+"package back <literal>upgrade</literal> will upgrade the package and install "
+"the new dependencies. Note that <literal>upgrade</literal> with this option "
+"will never remove packages, only allow adding new ones. Configuration Item: "
+"<literal>APT::Get::Upgrade-Allow-New</literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:407
msgid ""
"Do not upgrade packages; when used in conjunction with <literal>install</"
"literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@ -1338,7 +1350,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:400
+#: apt-get.8.xml:414
msgid ""
"Do not install new packages; when used in conjunction with <literal>install</"
"literal>, <literal>only-upgrade</literal> will install upgrades for already "
@@ -1352,7 +1364,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:408
+#: apt-get.8.xml:422
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 "
@@ -1367,7 +1379,7 @@ msgstr ""
"zerstören! Konfigurationselement: <literal>APT::Get::force-yes</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:416
+#: apt-get.8.xml:430
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 "
@@ -1389,7 +1401,7 @@ msgstr ""
"Get::Print-URIs</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:427
+#: apt-get.8.xml:441
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. "
@@ -1402,7 +1414,7 @@ msgstr ""
"option>. Konfigurationselement: <literal>APT::Get::Purge</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:435
+#: apt-get.8.xml:449
msgid ""
"Re-install packages that are already installed and at the newest version. "
"Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@ -1411,7 +1423,7 @@ msgstr ""
"Version haben. Konfigurationselement: <literal>APT::Get::ReInstall</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:440
+#: apt-get.8.xml:454
msgid ""
"This option is on by default; use <literal>--no-list-cleanup</literal> to "
"turn it off. When it is on, <command>apt-get</command> will automatically "
@@ -1429,7 +1441,7 @@ msgstr ""
"Get::List-Cleanup</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:450
+#: apt-get.8.xml:464
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 "
@@ -1454,7 +1466,7 @@ msgstr ""
"auch die &apt-preferences;-Handbuchseite."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:465
+#: apt-get.8.xml:479
msgid ""
"Only perform operations that are 'trivial'. Logically this can be considered "
"related to <option>--assume-yes</option>; where <option>--assume-yes</"
@@ -1468,7 +1480,7 @@ msgstr ""
"Trivial-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:472
+#: apt-get.8.xml:486
msgid ""
"If any packages are to be removed apt-get immediately aborts without "
"prompting. Configuration Item: <literal>APT::Get::Remove</literal>."
@@ -1477,7 +1489,7 @@ msgstr ""
"Nachfrage ab. Konfigurationselement: <literal>APT::Get::Remove</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:478
+#: apt-get.8.xml:492
msgid ""
"If the command is either <literal>install</literal> or <literal>remove</"
"literal>, then this option acts like running the <literal>autoremove</"
@@ -1491,7 +1503,7 @@ msgstr ""
"AutomaticRemove</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:485
+#: apt-get.8.xml:499
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 "
@@ -1510,7 +1522,7 @@ msgstr ""
"Get::Only-Source</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:496
+#: apt-get.8.xml:510
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</"
@@ -1522,7 +1534,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:502
+#: apt-get.8.xml:516
msgid ""
"Only process architecture-dependent build-dependencies. Configuration Item: "
"<literal>APT::Get::Arch-Only</literal>."
@@ -1531,7 +1543,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::Get::Arch-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:507
+#: apt-get.8.xml:521
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::"
@@ -1541,23 +1553,33 @@ msgstr ""
"fragen. Dies ist für Werkzeuge wie pbuilder nützlich. Konfigurationselement: "
"<literal>APT::Get::AllowUnauthenticated</literal>."
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:527
+msgid ""
+"Show user friendly progress information in the terminal window when packages "
+"are installed, upgraded or removed. For a machine parsable version of this "
+"data see README.progress-reporting in the apt doc directory. Configuration "
+"Item: <literal>DpkgPM::Progress</literal> and <literal>Dpkg::Progress-Fancy</"
+"literal>."
+msgstr ""
+
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125
-#: apt.conf.5.xml:1167 apt_preferences.5.xml:698
+#: apt-get.8.xml:540 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127
+#: apt.conf.5.xml:1200 apt_preferences.5.xml:700
msgid "Files"
msgstr "Dateien"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131
-#: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109
-#: apt.conf.5.xml:1173 apt_preferences.5.xml:705 sources.list.5.xml:252
-#: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63
-#: apt-ftparchive.1.xml:607
+#: apt-get.8.xml:550 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133
+#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111
+#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:258
+#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65
+#: apt-ftparchive.1.xml:609
msgid "See Also"
msgstr "Siehe auch"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:529
+#: apt-get.8.xml:551
msgid ""
"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@ -1568,14 +1590,14 @@ msgstr ""
"preferences;, das APT-Howto."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:534 apt-cache.8.xml:355 apt-mark.8.xml:135
-#: apt-cdrom.8.xml:149 apt-config.8.xml:114 apt-extracttemplates.1.xml:74
-#: apt-sortpkgs.1.xml:67 apt-ftparchive.1.xml:611
+#: apt-get.8.xml:556 apt-cache.8.xml:357 apt-mark.8.xml:137
+#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76
+#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613
msgid "Diagnostics"
msgstr "Diagnose"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:535
+#: apt-get.8.xml:557
msgid ""
"<command>apt-get</command> returns zero on normal operation, decimal 100 on "
"error."
@@ -1584,12 +1606,12 @@ msgstr ""
"100 bei Fehlern."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cache.8.xml:33
+#: apt-cache.8.xml:35
msgid "query the APT cache"
msgstr "den APT-Zwischenspeicher abfragen"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:39
+#: apt-cache.8.xml:41
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 "
@@ -1602,7 +1624,7 @@ msgstr ""
"und Generieren von interessanten Ausgaben der Paket-Metadaten bereit."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:49
+#: apt-cache.8.xml:51
msgid ""
"<literal>gencaches</literal> creates APT's package cache. This is done "
"implicitly by all commands needing this cache if it is missing or outdated."
@@ -1612,14 +1634,14 @@ msgstr ""
"benötigen, falls er fehlt oder veraltet ist."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:53 apt-cache.8.xml:142 apt-cache.8.xml:163
-#: apt-cache.8.xml:185 apt-cache.8.xml:190 apt-cache.8.xml:206
-#: apt-cache.8.xml:224 apt-cache.8.xml:236
+#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165
+#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208
+#: apt-cache.8.xml:226 apt-cache.8.xml:238
msgid "&synopsis-pkg;"
msgstr "&synopsis-pkg;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:54
+#: apt-cache.8.xml:56
msgid ""
"<literal>showpkg</literal> displays information about the packages listed on "
"the command line. Remaining arguments are package names. The available "
@@ -1643,7 +1665,7 @@ msgstr ""
"Ausgabe ähnlich der folgenden erzeugen:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-cache.8.xml:66
+#: apt-cache.8.xml:68
#, no-wrap
msgid ""
"Package: libreadline2\n"
@@ -1669,7 +1691,7 @@ msgstr ""
"Reverse Provides: \n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:78
+#: apt-cache.8.xml:80
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, "
@@ -1687,7 +1709,7 @@ msgstr ""
"restlichen Ausgabe ist es am besten, den apt-Quelltext zu konsultieren."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:87
+#: apt-cache.8.xml:89
msgid ""
"<literal>stats</literal> displays some statistics about the cache. No "
"further arguments are expected. Statistics reported are:"
@@ -1696,7 +1718,7 @@ msgstr ""
"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:90
+#: apt-cache.8.xml:92
msgid ""
"<literal>Total package names</literal> is the number of package names found "
"in the cache."
@@ -1705,7 +1727,7 @@ msgstr ""
"Zwischenspeicher gefundenen Pakete."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:94
+#: apt-cache.8.xml:96
msgid ""
"<literal>Normal packages</literal> is the number of regular, ordinary "
"package names; these are packages that bear a one-to-one correspondence "
@@ -1719,7 +1741,7 @@ msgstr ""
"Kategorie."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:100
+#: apt-cache.8.xml:102
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 "
@@ -1736,7 +1758,7 @@ msgstr ""
"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:108
+#: apt-cache.8.xml:110
msgid ""
"<literal>Single virtual packages</literal> is the number of packages with "
"only one package providing a particular virtual package. For example, in the "
@@ -1749,7 +1771,7 @@ msgstr ""
"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:114
+#: apt-cache.8.xml:116
msgid ""
"<literal>Mixed virtual packages</literal> is the number of packages that "
"either provide a particular virtual package or have the virtual package name "
@@ -1762,7 +1784,7 @@ msgstr ""
"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:121
+#: apt-cache.8.xml:123
msgid ""
"<literal>Missing</literal> is the number of package names that were "
"referenced in a dependency but were not provided by any package. Missing "
@@ -1778,7 +1800,7 @@ msgstr ""
"Breaks-Angaben Bezug genommen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:128
+#: apt-cache.8.xml:130
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 "
@@ -1794,7 +1816,7 @@ msgstr ""
"Paketnamen sein."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:135
+#: apt-cache.8.xml:137
msgid ""
"<literal>Total dependencies</literal> is the number of dependency "
"relationships claimed by all of the packages in the cache."
@@ -1803,7 +1825,7 @@ msgstr ""
"Abhängigkeitsbeziehungen, den alle Pakete im Zwischenspeicher beanspruchen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:143
+#: apt-cache.8.xml:145
msgid ""
"<literal>showsrc</literal> displays all the source package records that "
"match the given package names. All versions are shown, as well as all "
@@ -1814,7 +1836,7 @@ msgstr ""
"wie alle Datensätze, die den Namen für ein Binärpaket deklarieren."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:149
+#: apt-cache.8.xml:151
msgid ""
"<literal>dump</literal> shows a short listing of every package in the cache. "
"It is primarily for debugging."
@@ -1823,7 +1845,7 @@ msgstr ""
"im Zwischenspeicher. Es dient in erster Linie der Fehlersuche."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:154
+#: apt-cache.8.xml:156
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."
@@ -1833,7 +1855,7 @@ msgstr ""
"benutzt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:159
+#: apt-cache.8.xml:161
msgid ""
"<literal>unmet</literal> displays a summary of all unmet dependencies in the "
"package cache."
@@ -1842,7 +1864,7 @@ msgstr ""
"Abhängigkeiten im Paketzwischenspeicher."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:164
+#: apt-cache.8.xml:166
msgid ""
"<literal>show</literal> performs a function similar to <command>dpkg --print-"
"avail</command>; it displays the package records for the named packages."
@@ -1852,12 +1874,12 @@ msgstr ""
"Pakete."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:169
+#: apt-cache.8.xml:171
msgid "&synopsis-regex;"
msgstr "&synopsis-regex;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:170
+#: apt-cache.8.xml:172
msgid ""
"<literal>search</literal> performs a full text search on all available "
"package lists for the POSIX regex pattern given, see &regex;. It searches "
@@ -1878,7 +1900,7 @@ msgstr ""
"wird die lange Beschreibung nicht durchsucht, sondern nur der Paketname."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:181
+#: apt-cache.8.xml:183
msgid ""
"Separate arguments can be used to specify multiple search patterns that are "
"and'ed together."
@@ -1887,7 +1909,7 @@ msgstr ""
"die »und«-verknüpft werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:186
+#: apt-cache.8.xml:188
msgid ""
"<literal>depends</literal> shows a listing of each dependency a package has "
"and all the possible other packages that can fulfill that dependency."
@@ -1897,7 +1919,7 @@ msgstr ""
"können."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:191
+#: apt-cache.8.xml:193
msgid ""
"<literal>rdepends</literal> shows a listing of each reverse dependency a "
"package has."
@@ -1906,12 +1928,12 @@ msgstr ""
"Rückwärtsabhängigkeit, die ein Paket hat."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:195
+#: apt-cache.8.xml:197
msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:196
+#: apt-cache.8.xml:198
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 "
@@ -1926,7 +1948,7 @@ msgstr ""
"besten mit der <option>--generate</option>-Option benutzt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:201
+#: apt-cache.8.xml:203
msgid ""
"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 "
@@ -1937,7 +1959,7 @@ msgstr ""
"Pakete sind z.B. auch in der generierten Liste aufgeführt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:207
+#: apt-cache.8.xml:209
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."
@@ -1959,7 +1981,7 @@ msgstr ""
"GivenOnly</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:216
+#: apt-cache.8.xml:218
msgid ""
"The resulting nodes will have several shapes; normal packages are boxes, "
"pure virtual packages are triangles, mixed virtual packages are diamonds, "
@@ -1973,14 +1995,14 @@ msgstr ""
"depends, grüne Linien sind Konflikte."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:221
+#: apt-cache.8.xml:223
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><listitem><para>
-#: apt-cache.8.xml:225
+#: apt-cache.8.xml:227
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>."
@@ -1990,12 +2012,12 @@ msgstr ""
"ulink>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:229
+#: apt-cache.8.xml:231
msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:230
+#: apt-cache.8.xml:232
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 "
@@ -2008,7 +2030,7 @@ msgstr ""
"Informationen über die Prioritätenauswahl der genannten Pakete aus."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:237
+#: apt-cache.8.xml:239
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 "
@@ -2027,7 +2049,7 @@ msgstr ""
"(<literal>APT::Architecture</literal>)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:253
+#: apt-cache.8.xml:255
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::"
@@ -2039,7 +2061,7 @@ msgstr ""
"pkgcache</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:259
+#: apt-cache.8.xml:261
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 "
@@ -2056,7 +2078,7 @@ msgstr ""
"srcpkgcache</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:267
+#: apt-cache.8.xml:269
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 "
@@ -2070,7 +2092,7 @@ msgstr ""
"Konfigurationselement: <literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:274
+#: apt-cache.8.xml:276
msgid ""
"Print only important dependencies; for use with <literal>unmet</literal> and "
"<literal>depends</literal>. Causes only Depends and Pre-Depends relations to "
@@ -2082,7 +2104,7 @@ msgstr ""
"<literal>APT::Cache::Important</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:288
+#: apt-cache.8.xml:290
msgid ""
"Per default the <literal>depends</literal> and <literal>rdepends</literal> "
"print all dependencies. This can be tweaked with these flags which will omit "
@@ -2098,7 +2120,7 @@ msgstr ""
"Cache::ShowRecommends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:295
+#: apt-cache.8.xml:297
msgid ""
"Print full package records when searching. Configuration Item: "
"<literal>APT::Cache::ShowFull</literal>."
@@ -2107,7 +2129,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::Cache::ShowFull</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:300
+#: apt-cache.8.xml:302
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-"
@@ -2124,7 +2146,7 @@ msgstr ""
"anwendbar. Konfigurationselement: <literal>APT::Cache::AllVersions</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:309
+#: apt-cache.8.xml:311
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</"
@@ -2136,7 +2158,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::Cache::Generate</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:315
+#: apt-cache.8.xml:317
msgid ""
"Only search on the package names, not the long descriptions. Configuration "
"Item: <literal>APT::Cache::NamesOnly</literal>."
@@ -2145,7 +2167,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::Cache::NamesOnly</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:320
+#: apt-cache.8.xml:322
msgid ""
"Make <literal>pkgnames</literal> print all names, including virtual packages "
"and missing dependencies. Configuration Item: <literal>APT::Cache::"
@@ -2156,7 +2178,7 @@ msgstr ""
"<literal>APT::Cache::AllNames</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:326
+#: apt-cache.8.xml:328
msgid ""
"Make <literal>depends</literal> and <literal>rdepends</literal> recursive so "
"that all packages mentioned are printed once. Configuration Item: "
@@ -2167,7 +2189,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::Cache::RecurseDepends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:333
+#: apt-cache.8.xml:335
msgid ""
"Limit the output of <literal>depends</literal> and <literal>rdepends</"
"literal> to packages which are currently installed. Configuration Item: "
@@ -2178,12 +2200,12 @@ msgstr ""
"<literal>APT::Cache::Installed</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:351
+#: apt-cache.8.xml:353
msgid "&apt-conf;, &sources-list;, &apt-get;"
msgstr "&apt-conf;, &sources-list;, &apt-get;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:356
+#: apt-cache.8.xml:358
msgid ""
"<command>apt-cache</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -2192,12 +2214,12 @@ msgstr ""
"100 bei Fehlern."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-key.8.xml:32
+#: apt-key.8.xml:34
msgid "APT key management utility"
msgstr "APT-Schlüsselverwaltungsdienstprogramm"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:39
+#: apt-key.8.xml:41
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 "
@@ -2209,12 +2231,12 @@ msgstr ""
"vertrauenswürdig betrachtet."
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:45
+#: apt-key.8.xml:47
msgid "Commands"
msgstr "Befehle"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:50
+#: apt-key.8.xml:52
msgid ""
"Add a new key to the list of trusted keys. The key is read from the "
"filename given with the parameter &synopsis-param-filename; or if the "
@@ -2225,33 +2247,33 @@ msgstr ""
"Dateiname <literal>-</literal> ist, von der Standardeingabe."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:63
+#: apt-key.8.xml:65
msgid "Remove a key from the list of trusted keys."
msgstr ""
"entfernt einen Schlüssel von der Liste der vertrauenswürdigen Schlüssel."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:74
+#: apt-key.8.xml:76
msgid "Output the key &synopsis-param-keyid; to standard output."
msgstr "gibt den Schlüssel &synopsis-param-keyid; auf der Standardausgabe aus."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:85
+#: apt-key.8.xml:87
msgid "Output all trusted keys to standard output."
msgstr "gibt alle vertrauenswürdigen Schlüssel auf der Standardausgabe aus."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:96
+#: apt-key.8.xml:98
msgid "List trusted keys."
msgstr "listet vertrauenswürdige Schlüssel auf."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:107
+#: apt-key.8.xml:109
msgid "List fingerprints of trusted keys."
msgstr "listet Fingerabdrücke vertrauenswürdiger Schlüssel auf."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:118
+#: apt-key.8.xml:120
msgid ""
"Pass advanced options to gpg. With adv --recv-key you can download the "
"public key."
@@ -2260,22 +2282,21 @@ msgstr ""
"öffentlichen Schlüssel herunterladen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:130
+#: apt-key.8.xml:132
msgid ""
"Update the local keyring with the archive keyring and remove from the local "
"keyring the archive keys which are no longer valid. The archive keyring is "
"shipped in the <literal>archive-keyring</literal> package of your "
-"distribution, e.g. the &keyring-package; package in "
-"&keyring-distro;."
+"distribution, e.g. the &keyring-package; package in &keyring-distro;."
msgstr ""
"aktualisiert den lokalen Schlüsselbund mit dem Archivschlüsselbund und "
"entfernt die Archivschlüssel, die nicht länger gültig sind, aus dem lokalen "
"Schlüsselbund. Der Archivschlüsselbund wird im Paket <literal>archive-"
-"keyring</literal> Ihrer Distribution mitgeliefert, z.B. dem Paket "
-"&keyring-package; in &keyring-distro;."
+"keyring</literal> Ihrer Distribution mitgeliefert, z.B. dem Paket &keyring-"
+"package; in &keyring-distro;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:144
+#: apt-key.8.xml:146
msgid ""
"Perform an update working similarly to the <command>update</command> command "
"above, but get the archive keyring from a URI instead and validate it "
@@ -2293,12 +2314,12 @@ msgstr ""
"Ubuntu funktioniert dies aber."
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:160 apt-cdrom.8.xml:80
+#: apt-key.8.xml:162 apt-cdrom.8.xml:82
msgid "Options"
msgstr "Optionen"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:161
+#: apt-key.8.xml:163
msgid ""
"Note that options need to be defined before the commands described in the "
"previous section."
@@ -2307,7 +2328,7 @@ msgstr ""
"Befehlen definiert sein müssen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:164
+#: apt-key.8.xml:166
msgid ""
"With this option it is possible to specify a particular keyring file the "
"command should operate on. The default is that a command is executed on the "
@@ -2324,52 +2345,52 @@ msgstr ""
"Schlüssel werden zu diesem hinzugefügt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:179
+#: apt-key.8.xml:181
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:180
+#: apt-key.8.xml:182
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:183
+#: apt-key.8.xml:185
msgid "&keyring-filename;"
msgstr "&keyring-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:184
+#: apt-key.8.xml:186
msgid "Keyring of &keyring-distro; archive trusted keys."
-msgstr "Schlüsselbund vertrauenswürdiger Schlüssel des &keyring-distro;-Archivs"
+msgstr ""
+"Schlüsselbund vertrauenswürdiger Schlüssel des &keyring-distro;-Archivs"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:187
-msgid ""
-"&keyring-removed-filename;"
-msgstr ""
-"&keyring-removed-filename;"
+#: apt-key.8.xml:189
+msgid "&keyring-removed-filename;"
+msgstr "&keyring-removed-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:188
+#: apt-key.8.xml:190
msgid "Keyring of &keyring-distro; archive removed trusted keys."
msgstr ""
-"Schlüsselbund entfernter vertrauenswürdiger Schlüssel des &keyring-distro;-Archivs"
+"Schlüsselbund entfernter vertrauenswürdiger Schlüssel des &keyring-distro;-"
+"Archivs"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:197
+#: apt-key.8.xml:199
msgid "&apt-get;, &apt-secure;"
msgstr "&apt-get;, &apt-secure;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-mark.8.xml:33
+#: apt-mark.8.xml:35
msgid "mark/unmark a package as being automatically-installed"
msgstr ""
"ein Paket als automatisch installiert markieren oder diese Markierung "
"entfernen"
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:39
+#: apt-mark.8.xml:41
msgid ""
"<command>apt-mark</command> will change whether a package has been marked as "
"being automatically installed."
@@ -2378,7 +2399,7 @@ msgstr ""
"installiert markiert ist."
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:43
+#: apt-mark.8.xml:45
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 "
@@ -2394,7 +2415,7 @@ msgstr ""
"<command>aptitude</command> entfernt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:52
+#: apt-mark.8.xml:54
msgid ""
"<literal>auto</literal> is used to mark a package as being automatically "
"installed, which will cause the package to be removed when no more manually "
@@ -2405,7 +2426,7 @@ msgstr ""
"keine manuell installierten Pakete von ihm abhängen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:60
+#: apt-mark.8.xml:62
msgid ""
"<literal>manual</literal> is used to mark a package as being manually "
"installed, which will prevent the package from being automatically removed "
@@ -2416,7 +2437,7 @@ msgstr ""
"kein anderes Paket von ihm abhängt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:68
+#: apt-mark.8.xml:70
msgid ""
"<literal>hold</literal> is used to mark a package as held back, which will "
"prevent the package from being automatically installed, upgraded or "
@@ -2432,7 +2453,7 @@ msgstr ""
"option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:78
+#: apt-mark.8.xml:80
msgid ""
"<literal>unhold</literal> is used to cancel a previously set hold on a "
"package to allow all actions again."
@@ -2441,7 +2462,7 @@ msgstr ""
"ein Paket aufzuheben, um alle Aktionen wieder zu erlauben."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:84
+#: apt-mark.8.xml:86
msgid ""
"<literal>showauto</literal> is used to print a list of automatically "
"installed packages with each package on a new line. All automatically "
@@ -2455,7 +2476,7 @@ msgstr ""
"die automatisch installiert wurden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:92
+#: apt-mark.8.xml:94
msgid ""
"<literal>showmanual</literal> can be used in the same way as "
"<literal>showauto</literal> except that it will print a list of manually "
@@ -2466,7 +2487,7 @@ msgstr ""
"stattdessen eine Liste manuell installierter Pakete ausgibt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:99
+#: apt-mark.8.xml:101
msgid ""
"<literal>showhold</literal> is used to print a list of packages on hold in "
"the same way as for the other show commands."
@@ -2475,7 +2496,7 @@ msgstr ""
"Pakete auf die gleiche Art wie für andere Anzeigebefehle auszugeben."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:115
+#: apt-mark.8.xml:117
msgid ""
"Read/Write package stats from the filename given with the parameter "
"&synopsis-param-filename; instead of from the default location, which is "
@@ -2488,7 +2509,7 @@ msgstr ""
"<literal>Dir::State</literal> definierten Verzeichnis, ist."
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:136
+#: apt-mark.8.xml:138
msgid ""
"<command>apt-mark</command> returns zero on normal operation, non-zero on "
"error."
@@ -2497,12 +2518,12 @@ msgstr ""
"Fehlern nicht Null."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-secure.8.xml:47
+#: apt-secure.8.xml:49
msgid "Archive authentication support for APT"
msgstr "Archivauthentifizierungsunterstützung für APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:52
+#: apt-secure.8.xml:54
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 "
@@ -2515,7 +2536,7 @@ msgstr ""
"auf den Signierschlüssel der Release-Datei haben."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:60
+#: apt-secure.8.xml:62
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 "
@@ -2531,7 +2552,7 @@ msgstr ""
"dem Herunterladen von Paketen von dort erzwingen."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:69
+#: apt-secure.8.xml:71
msgid ""
"The package frontends &apt-get;, &aptitude; and &synaptic; support this new "
"authentication feature."
@@ -2540,12 +2561,12 @@ msgstr ""
"neue Authentifizierungsfunktion."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:74
+#: apt-secure.8.xml:76
msgid "Trusted archives"
msgstr "Vertrauenswürdige Archive"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:77
+#: apt-secure.8.xml:79
msgid ""
"The chain of trust from an apt archive to the end user is made up of several "
"steps. <command>apt-secure</command> is the last step in this chain; "
@@ -2563,7 +2584,7 @@ msgstr ""
"sicherstellt."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:85
+#: apt-secure.8.xml:87
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 "
@@ -2576,7 +2597,7 @@ msgstr ""
"(bereitgestellt von den Paketen debsig-verify beziehungsweise devscripts)."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:92
+#: apt-secure.8.xml:94
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. In order to become "
@@ -2594,28 +2615,28 @@ msgstr ""
"sicherzustellen."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:102
+#: apt-secure.8.xml:104
msgid ""
"Once the uploaded package is verified and included in the archive, the "
"maintainer signature is stripped off, and checksums of the package are "
"computed and put in the Packages file. The checksums 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 for this &keyring-distro; release, and distributed "
-"alongside the packages and the Packages files on &keyring-distro; mirrors. The keys "
-"are in the &keyring-distro; archive keyring available in the &keyring-package; "
-"package."
+"then signed by the archive key for this &keyring-distro; release, and "
+"distributed alongside the packages and the Packages files on &keyring-"
+"distro; mirrors. The keys are in the &keyring-distro; archive keyring "
+"available in the &keyring-package; package."
msgstr ""
"Sobald das hochgeladene Paket überprüft und dem Archiv hinzugefügt wurde, "
"wird die Betreuersignatur entfernt, Prüfsummen des Pakets werden berechnet "
"und in die Datei Packages abgelegt. Die Prüfsummen aller Paketdateien werden "
"berechnet und in der Release-Datei abgelegt. Dann wird die Release-Datei "
-"durch den Archivschlüssel für diese &keyring-distro;-Veröffentlichung signiert und "
-"zusammen mit den Paketen und Packages-Dateien auf &keyring-distro;-Spiegel verteilt. "
-"Die Schlüssel sind im &keyring-distro;-Archivschlüsselbund im Paket &keyring-package; "
-"verfügbar."
+"durch den Archivschlüssel für diese &keyring-distro;-Veröffentlichung "
+"signiert und zusammen mit den Paketen und Packages-Dateien auf &keyring-"
+"distro;-Spiegel verteilt. Die Schlüssel sind im &keyring-distro;-"
+"Archivschlüsselbund im Paket &keyring-package; verfügbar."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:113
+#: apt-secure.8.xml:115
msgid ""
"End users can check the signature of the Release file, extract a checksum of "
"a package from it and compare it with the checksum of the package they "
@@ -2627,7 +2648,7 @@ msgstr ""
"dies automatisch tut."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:118
+#: apt-secure.8.xml:120
msgid ""
"Notice that this is distinct from checking signatures on a per package "
"basis. It is designed to prevent two possible attacks:"
@@ -2636,7 +2657,7 @@ msgstr ""
"ist. Es wurde entworfen, um zwei mögliche Angriffe zu verhindern:"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:123
+#: apt-secure.8.xml:125
msgid ""
"<literal>Network \"man in the middle\" attacks</literal>. Without signature "
"checking, malicious agents can introduce themselves into the package "
@@ -2652,7 +2673,7 @@ msgstr ""
"oder DNS-Manipulationsangriffe) erfolgen."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:131
+#: apt-secure.8.xml:133
msgid ""
"<literal>Mirror network compromise</literal>. Without signature checking, a "
"malicious agent can compromise a mirror host and modify the files in it to "
@@ -2665,7 +2686,7 @@ msgstr ""
"Pakete von diesem Rechner herunterladen."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:138
+#: apt-secure.8.xml:140
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 "
@@ -2678,12 +2699,12 @@ msgstr ""
"Fall kann dieser Mechanismus eine Signatur pro Paket ergänzen."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:144
+#: apt-secure.8.xml:146
msgid "User configuration"
msgstr "Benutzerkonfiguration"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:146
+#: apt-secure.8.xml:148
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 "
@@ -2697,7 +2718,7 @@ msgstr ""
"den Debian-Paketdepots benutzt werden."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:153
+#: apt-secure.8.xml:155
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 "
@@ -2715,12 +2736,12 @@ msgstr ""
"herunterladen und prüfen kann."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:162
+#: apt-secure.8.xml:164
msgid "Archive configuration"
msgstr "Archivkonfiguration"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:164
+#: apt-secure.8.xml:166
msgid ""
"If you want to provide archive signatures in an archive under your "
"maintenance you have to:"
@@ -2729,7 +2750,7 @@ msgstr ""
"stellen möchten, müssen Sie:"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:169
+#: apt-secure.8.xml:171
msgid ""
"<emphasis>Create a toplevel Release file</emphasis>, if it does not exist "
"already. You can do this by running <command>apt-ftparchive release</"
@@ -2740,7 +2761,7 @@ msgstr ""
"<command>apt-ftparchive release</command> (aus apt-utils) ausführen."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:174
+#: apt-secure.8.xml:176
msgid ""
"<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --"
"clearsign -o InRelease Release</command> and <command>gpg -abs -o Release."
@@ -2751,7 +2772,7 @@ msgstr ""
"abs -o Release.gpg Release</command> ausführen."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:178
+#: apt-secure.8.xml:180
msgid ""
"<emphasis>Publish the key fingerprint</emphasis>, that way your users will "
"know what key they need to import in order to authenticate the files in the "
@@ -2762,7 +2783,7 @@ msgstr ""
"Dateien im Archiv zu authentifizieren."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:185
+#: apt-secure.8.xml:187
msgid ""
"Whenever the contents of the archive change (new packages are added or "
"removed) the archive maintainer has to follow the first two steps outlined "
@@ -2773,7 +2794,7 @@ msgstr ""
"Schritten folgen."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:193
+#: apt-secure.8.xml:195
msgid ""
"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, "
"&debsign; &debsig-verify;, &gpg;"
@@ -2782,7 +2803,7 @@ msgstr ""
"&debsign; &debsig-verify;, &gpg;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:197
+#: apt-secure.8.xml:199
msgid ""
"For more background information you might want to review the <ulink url="
"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian "
@@ -2799,12 +2820,12 @@ msgstr ""
">Strong Distribution HOWTO</ulink> von V. Alex Brennen lesen."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:210
+#: apt-secure.8.xml:212
msgid "Manpage Authors"
msgstr "Autoren der Handbuchseite"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:212
+#: apt-secure.8.xml:214
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."
@@ -2813,12 +2834,12 @@ msgstr ""
"Peña, Isaac Jones, Colin Walters, Florian Weimer und Michael Vogt."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cdrom.8.xml:32
+#: apt-cdrom.8.xml:34
msgid "APT CD-ROM management utility"
msgstr "APT-CD-ROM-Verwaltungswerkzeug"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:38
+#: apt-cdrom.8.xml:40
msgid ""
"<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of "
"available sources. <command>apt-cdrom</command> takes care of determining "
@@ -2831,7 +2852,7 @@ msgstr ""
"mehrere mögliche Fehlbrennungen und prüft die Indexdateien."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:45
+#: apt-cdrom.8.xml:47
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 disc in a multi-CD set "
@@ -2843,7 +2864,7 @@ msgstr ""
"gescannt werden, um auf mögliche Fehlbrennungen zu testen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:56
+#: apt-cdrom.8.xml:58
msgid ""
"<literal>add</literal> is used to add a new disc to the source list. It will "
"unmount the CD-ROM device, prompt for a disc to be inserted and then proceed "
@@ -2858,7 +2879,7 @@ msgstr ""
"Verzeichnis hat, werden Sie nach einem aussagekräftigen Titel gefragt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:64
+#: apt-cdrom.8.xml:66
msgid ""
"APT uses a CD-ROM ID to track which disc is currently in the drive and "
"maintains a database of these IDs in <filename>&statedir;/cdroms.list</"
@@ -2869,7 +2890,7 @@ msgstr ""
"<filename>&statedir;/cdroms.list</filename>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:72
+#: apt-cdrom.8.xml:74
msgid ""
"A debugging tool to report the identity of the current disc as well as the "
"stored file name"
@@ -2878,7 +2899,24 @@ msgstr ""
"gespeicherten Dateinamen zu berichten"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:85
+#: apt-cdrom.8.xml:87
+#, fuzzy
+#| msgid ""
+#| "Mount point; specify the location to mount the CD-ROM. This mount point "
+#| "must be listed in <filename>/etc/fstab</filename> and properly "
+#| "configured. Configuration Item: <literal>Acquire::cdrom::mount</literal>."
+msgid ""
+"Do not try to auto-detect the CD-ROM path. Usually combined with the "
+"<option>--cdrom</option> option. Configuration Item: <literal>Acquire::"
+"cdrom::AutoDetect</literal>."
+msgstr ""
+"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><listitem><para>
+#: apt-cdrom.8.xml:95
msgid ""
"Mount point; specify the location to mount the CD-ROM. This mount point must "
"be listed in <filename>/etc/fstab</filename> and properly configured. "
@@ -2890,7 +2928,7 @@ msgstr ""
"cdrom::mount</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:94
+#: apt-cdrom.8.xml:104
msgid ""
"Rename a disc; change the label of a disc or override the disc's given "
"label. This option will cause <command>apt-cdrom</command> to prompt for a "
@@ -2902,7 +2940,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::CDROM::Rename</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:103
+#: 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::"
@@ -2913,7 +2951,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:111
+#: 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 "
@@ -2926,7 +2964,7 @@ msgstr ""
"festgestellt hat. Konfigurationselement: <literal>APT::CDROM::Fast</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:121
+#: 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 "
@@ -2937,7 +2975,7 @@ msgstr ""
"Dies verlängert das Durchsuchen des Mediums deutlich, nimmt aber alle auf."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:132
+#: 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: "
@@ -2948,12 +2986,12 @@ msgstr ""
"Konfigurationselement: <literal>APT::CDROM::NoAct</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:145
+#: 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:150
+#: apt-cdrom.8.xml:160
msgid ""
"<command>apt-cdrom</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -2962,12 +3000,12 @@ msgstr ""
"100 bei Fehlern."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-config.8.xml:33
+#: apt-config.8.xml:35
msgid "APT Configuration Query program"
msgstr "APT-Konfigurationsabfrageprogramm"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:39
+#: apt-config.8.xml:41
msgid ""
"<command>apt-config</command> is an internal program used by various "
"portions of the APT suite to provide consistent configurability. It accesses "
@@ -2981,7 +3019,7 @@ msgstr ""
"Anwendungen zu benutzen ist."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:51
+#: apt-config.8.xml:53
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 "
@@ -2997,7 +3035,7 @@ msgstr ""
"sollte es wie folgt benutzt werden:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-config.8.xml:59
+#: apt-config.8.xml:61
#, no-wrap
msgid ""
"OPTS=\"-f\"\n"
@@ -3009,7 +3047,7 @@ msgstr ""
"eval $RES\n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:64
+#: apt-config.8.xml:66
msgid ""
"This will set the shell environment variable $OPTS to the value of MyApp::"
"options with a default of <option>-f</option>."
@@ -3018,7 +3056,7 @@ msgstr ""
"mit einer Vorgabe von <option>-f</option> setzen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:68
+#: apt-config.8.xml:70
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 "
@@ -3030,12 +3068,12 @@ msgstr ""
"intern geprüft."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:77
+#: apt-config.8.xml:79
msgid "Just show the contents of the configuration space."
msgstr "Nur der Inhalt des Konfigurationsbereichs wird angezeigt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:90
+#: apt-config.8.xml:92
msgid ""
"Include options which have an empty value. This is the default, so use --no-"
"empty to remove them from the output."
@@ -3044,12 +3082,12 @@ msgstr ""
"benutzen Sie daher --no-empty, um sie aus der Ausgabe zu entfernen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-config.8.xml:95
+#: apt-config.8.xml:97
msgid "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
msgstr "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:96
+#: apt-config.8.xml:98
msgid ""
"Defines the output of each config option. &percnt;t will be replaced with "
"its individual name, &percnt;f with its full hierarchical name and &percnt;v "
@@ -3068,13 +3106,13 @@ msgstr ""
"&percnt; kann mittels &percnt;&percnt; ausgegeben werden."
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:110 apt-extracttemplates.1.xml:71 apt-sortpkgs.1.xml:64
-#: apt-ftparchive.1.xml:608
+#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66
+#: apt-ftparchive.1.xml:610
msgid "&apt-conf;"
msgstr "&apt-conf;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:115
+#: apt-config.8.xml:117
msgid ""
"<command>apt-config</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -3083,27 +3121,27 @@ msgstr ""
"dezimal 100 bei Fehlern."
#. type: Content of: <refentry><refentryinfo><author><contrib>
-#: apt.conf.5.xml:20
+#: apt.conf.5.xml:22
msgid "Initial documentation of Debug::*."
msgstr "ursprüngliche Dokumentation von Debug::*."
#. type: Content of: <refentry><refentryinfo><author><email>
-#: apt.conf.5.xml:21
+#: apt.conf.5.xml:23
msgid "dburrows@debian.org"
msgstr "dburrows@debian.org"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt.conf.5.xml:31 apt_preferences.5.xml:25 sources.list.5.xml:26
+#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28
msgid "5"
msgstr "5"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt.conf.5.xml:38
+#: apt.conf.5.xml:40
msgid "Configuration file for APT"
msgstr "Konfigurationsdatei für APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:42
+#: apt.conf.5.xml:44
msgid ""
"<filename>/etc/apt/apt.conf</filename> is the main configuration file shared "
"by all the tools in the APT suite of tools, though it is by no means the "
@@ -3117,7 +3155,7 @@ msgstr ""
"Umgebung bereitzustellen."
#. type: Content of: <refentry><refsect1><orderedlist><para>
-#: apt.conf.5.xml:48
+#: apt.conf.5.xml:50
msgid ""
"When an APT tool starts up it will read the configuration files in the "
"following order:"
@@ -3126,7 +3164,7 @@ msgstr ""
"folgenden Reihenfolge lesen:"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:50
+#: apt.conf.5.xml:52
msgid ""
"the file specified by the <envar>APT_CONFIG</envar> environment variable (if "
"any)"
@@ -3135,7 +3173,7 @@ msgstr ""
"angegeben wird (falls gesetzt)"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:52
+#: apt.conf.5.xml:54
msgid ""
"all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
"order which have either no or \"<literal>conf</literal>\" as filename "
@@ -3155,7 +3193,7 @@ msgstr ""
"sie stillschweigend ignoriert."
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:59
+#: apt.conf.5.xml:61
msgid ""
"the main configuration file specified by <literal>Dir::Etc::main</literal>"
msgstr ""
@@ -3163,7 +3201,7 @@ msgstr ""
"angegeben wird"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:61
+#: apt.conf.5.xml:63
msgid ""
"the command line options are applied to override the configuration "
"directives or to load even more configuration files."
@@ -3172,12 +3210,12 @@ msgstr ""
"zu überschreiben oder um sogar mehrere Konfigurationsdateien zu laden."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:65
+#: apt.conf.5.xml:67
msgid "Syntax"
msgstr "Syntax"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:66
+#: apt.conf.5.xml:68
msgid ""
"The configuration file is organized in a tree with options organized into "
"functional groups. Option specification is given with a double colon "
@@ -3192,7 +3230,7 @@ msgstr ""
"das Werkzeug Get. Optionen werden nicht von ihren Elterngruppe geerbt."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:72
+#: apt.conf.5.xml:74
msgid ""
"Syntactically the configuration language is modeled after what the ISC tools "
"such as bind and dhcp use. Lines starting with <literal>//</literal> are "
@@ -3219,7 +3257,7 @@ msgstr ""
"werden, wie:"
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:85
+#: apt.conf.5.xml:87
#, no-wrap
msgid ""
"APT {\n"
@@ -3237,7 +3275,7 @@ msgstr ""
"};\n"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:93
+#: apt.conf.5.xml:95
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 "
@@ -3250,13 +3288,13 @@ msgstr ""
"eingefügt werden, jeweils getrennt durch einen Schrägstrich."
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:98
+#: apt.conf.5.xml:100
#, 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:101
+#: apt.conf.5.xml:103
msgid ""
"In general the sample configuration file &configureindex; is a good guide "
"for how it should look."
@@ -3265,7 +3303,7 @@ msgstr ""
"gute Anleitung, wie dies aussehen könnte."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:104
+#: apt.conf.5.xml:106
msgid ""
"Case is not significant in names of configuration items, so in the previous "
"example you could use <literal>dpkg::pre-install-pkgs</literal>."
@@ -3275,7 +3313,7 @@ msgstr ""
"<literal>dpkg::pre-install-pkgs</literal> benutzen."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:107
+#: apt.conf.5.xml:109
msgid ""
"Names for the configuration items are optional if a list is defined as can "
"be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If "
@@ -3291,7 +3329,7 @@ msgstr ""
"überschreiben, indem Sie der Option erneut einen neuen Wert zuweisen."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:112
+#: apt.conf.5.xml:114
msgid ""
"Two special commands are defined: <literal>#include</literal> (which is "
"deprecated and not supported by alternative implementations) and "
@@ -3311,7 +3349,7 @@ msgstr ""
"(Beachten Sie, dass diese Zeilen auch mit einem Schrägstrich enden müssen.)"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:122
+#: apt.conf.5.xml:124
msgid ""
"The <literal>#clear</literal> command is the only way to delete a list or a "
"complete scope. Reopening a scope (or using the syntax described below with "
@@ -3328,7 +3366,7 @@ msgstr ""
"nicht außer Kraft gesetzt, sondern nur bereinigt werden."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:130
+#: apt.conf.5.xml:132
msgid ""
"All of the APT tools take an -o option which allows an arbitrary "
"configuration directive to be specified on the command line. The syntax is a "
@@ -3348,7 +3386,7 @@ msgstr ""
"Befehlszeile benutzt werden.)"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:138
+#: apt.conf.5.xml:140
msgid ""
"Note that appending items to a list using <literal>::</literal> only works "
"for one item per line, and that you should not use it in combination with "
@@ -3380,12 +3418,12 @@ msgstr ""
"beklagt."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:153
+#: apt.conf.5.xml:155
msgid "The APT Group"
msgstr "Die APT-Gruppe"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:154
+#: apt.conf.5.xml:156
msgid ""
"This group of options controls general APT behavior as well as holding the "
"options for all of the tools."
@@ -3394,7 +3432,7 @@ msgstr ""
"wie es die Optionen für alle Werkzeuge enthält."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:159
+#: apt.conf.5.xml:161
msgid ""
"System Architecture; sets the architecture to use when fetching files and "
"parsing package lists. The internal default is the architecture apt was "
@@ -3405,7 +3443,7 @@ msgstr ""
"die Architektur für die APT kompiliert wurde."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:166
+#: apt.conf.5.xml:168
msgid ""
"All Architectures the system supports. For instance, CPUs implementing the "
"<literal>amd64</literal> (also called <literal>x86-64</literal>) "
@@ -3427,7 +3465,7 @@ msgstr ""
"print-architectures</command> registriert werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:179
+#: apt.conf.5.xml:181
msgid ""
"Default release to install packages from if more than one version is "
"available. Contains release name, codename or release version. Examples: "
@@ -3440,7 +3478,7 @@ msgstr ""
"codename;«, »4.0«, »5.0*«. Siehe auch &apt-preferences;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:185
+#: apt.conf.5.xml:187
msgid ""
"Ignore held packages; this global option causes the problem resolver to "
"ignore held packages in its decision making."
@@ -3449,7 +3487,7 @@ msgstr ""
"Problemlöser, gehaltene Pakete beim Treffen von Entscheidungen zu ignorieren."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:190
+#: apt.conf.5.xml:192
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 "
@@ -3464,7 +3502,7 @@ msgstr ""
"Möglichkeiten bereitstellt, um sie erneut zu installieren."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:198
+#: apt.conf.5.xml:200
msgid ""
"Defaults to on, which will cause APT to install essential and important "
"packages as soon as possible in an install/upgrade operation, in order to "
@@ -3492,7 +3530,7 @@ msgstr ""
"Abhängigkeit von A nicht länger erfüllt wird."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:210
+#: apt.conf.5.xml:212
msgid ""
"The immediate configuration marker is also applied in the potentially "
"problematic case of circular dependencies, since a dependency with the "
@@ -3522,7 +3560,7 @@ msgstr ""
"Stelle verhindern kann."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:223
+#: apt.conf.5.xml:225
msgid ""
"Before a big operation like <literal>dist-upgrade</literal> is run with this "
"option disabled you should try to explicitly <literal>install</literal> the "
@@ -3540,7 +3578,7 @@ msgstr ""
"des Upgrade-Prozesses arbeiten können."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:234
+#: apt.conf.5.xml:236
msgid ""
"Never enable this option unless you <emphasis>really</emphasis> know what "
"you are doing. It permits APT to temporarily remove an essential package to "
@@ -3562,7 +3600,7 @@ msgstr ""
"davon abhängt, sind."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:246
+#: apt.conf.5.xml:248
msgid ""
"APT uses since version 0.7.26 a resizable memory mapped cache file to store "
"the available information. <literal>Cache-Start</literal> acts as a hint of "
@@ -3599,13 +3637,13 @@ msgstr ""
"auf 0 gesetzt ist, kann der Zwischenspeicher nicht automatisch wachsen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:262
+#: apt.conf.5.xml:264
msgid "Defines which packages are considered essential build dependencies."
msgstr ""
"definiert, welche Pakete als essentielle Bauabhängigkeiten betrachtet werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:266
+#: apt.conf.5.xml:268
msgid ""
"The Get subsection controls the &apt-get; tool; please see its documentation "
"for more information about the options here."
@@ -3615,7 +3653,7 @@ msgstr ""
"erhalten."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:271
+#: apt.conf.5.xml:273
msgid ""
"The Cache subsection controls the &apt-cache; tool; please see its "
"documentation for more information about the options here."
@@ -3625,7 +3663,7 @@ msgstr ""
"erhalten."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:276
+#: apt.conf.5.xml:278
msgid ""
"The CDROM subsection controls the &apt-cdrom; tool; please see its "
"documentation for more information about the options here."
@@ -3635,12 +3673,12 @@ msgstr ""
"erhalten."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:282
+#: apt.conf.5.xml:284
msgid "The Acquire Group"
msgstr "Die Erwerbgruppe"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:283
+#: apt.conf.5.xml:285
msgid ""
"The <literal>Acquire</literal> group of options controls the download of "
"packages as well as the various \"acquire methods\" responsible for the "
@@ -3651,7 +3689,7 @@ msgstr ""
"Herunterladen selbst zuständig sind (siehe auch &sources-list;)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:290
+#: apt.conf.5.xml:292
msgid ""
"Security related option defaulting to true, as giving a Release file's "
"validation an expiration date prevents replay attacks over a long timescale, "
@@ -3673,7 +3711,7 @@ msgstr ""
"ValidTime</literal> unten benutzt werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:303
+#: apt.conf.5.xml:305
msgid ""
"Maximum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3692,7 +3730,7 @@ msgstr ""
"Anhängen der Archivbezeichnung an den Optionsnamen vorgenommen werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:315
+#: apt.conf.5.xml:317
msgid ""
"Minimum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3712,7 +3750,7 @@ msgstr ""
"Optionsnamen vorgenommen werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:327
+#: apt.conf.5.xml:329
msgid ""
"Try to download deltas called <literal>PDiffs</literal> for indexes (like "
"<filename>Packages</filename> files) instead of downloading whole ones. True "
@@ -3723,7 +3761,7 @@ msgstr ""
"der kompletten Dateien. Vorgabe ist True."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:330
+#: apt.conf.5.xml:332
msgid ""
"Two sub-options to limit the use of PDiffs are also available: "
"<literal>FileLimit</literal> can be used to specify a maximum number of "
@@ -3741,7 +3779,7 @@ msgstr ""
"komplette Datei anstelle der Patche heruntergeladen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:340
+#: apt.conf.5.xml:342
msgid ""
"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
"literal> or <literal>access</literal> which determines how APT parallelizes "
@@ -3757,7 +3795,7 @@ msgstr ""
"URI-Art geöffnet wird."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:348
+#: apt.conf.5.xml:350
msgid ""
"Number of retries to perform. If this is non-zero APT will retry failed "
"files the given number of times."
@@ -3766,7 +3804,7 @@ msgstr ""
"APT fehlgeschlagene Dateien in der angegebenen Zahl erneut versuchen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:353
+#: apt.conf.5.xml:355
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."
@@ -3776,7 +3814,7 @@ msgstr ""
"kopiert zu werden. True ist die Vorgabe."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:358
+#: apt.conf.5.xml:360
msgid ""
"<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. "
"It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</"
@@ -3795,7 +3833,7 @@ msgstr ""
"wurde, wird die Umgebungsvariable <envar>http_proxy</envar> benutzt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:366
+#: apt.conf.5.xml:368
msgid ""
"Three settings are provided for cache control with HTTP/1.1 compliant proxy "
"caches. <literal>No-Cache</literal> tells the proxy not to use its cached "
@@ -3816,7 +3854,7 @@ msgstr ""
"Zwischenspeicher mit (großen) .deb-Dateien verunreinigt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:376 apt.conf.5.xml:448
+#: apt.conf.5.xml:378 apt.conf.5.xml:466
msgid ""
"The option <literal>timeout</literal> sets the timeout timer used by the "
"method; this value applies to the connection as well as the data timeout."
@@ -3826,7 +3864,7 @@ msgstr ""
"Datenzeitüberschreitungen angewandt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:379
+#: apt.conf.5.xml:381
msgid ""
"The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to "
"enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e."
@@ -3846,7 +3884,7 @@ msgstr ""
"HTTP/1.1-Spezifikation entsprechen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:386
+#: apt.conf.5.xml:388
msgid ""
"<literal>Acquire::http::AllowRedirect</literal> controls whether APT will "
"follow redirects, which is enabled by default."
@@ -3855,13 +3893,20 @@ msgstr ""
"folgen wird, was standardmäßig aktiviert ist."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:389
+#: apt.conf.5.xml:391
+#, fuzzy
+#| msgid ""
+#| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
+#| "literal> which accepts integer values in kilobytes. The default value is "
+#| "0 which deactivates the limit and tries to use all available bandwidth "
+#| "(note that this option implicitly disables downloading from multiple "
+#| "servers at the same time.)"
msgid ""
"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
-"literal> which accepts integer values in kilobytes. The default value is 0 "
-"which deactivates the limit and tries to use all available bandwidth (note "
-"that this option implicitly disables downloading from multiple servers at "
-"the same time.)"
+"literal> which accepts integer values in kilobytes per second. The default "
+"value is 0 which deactivates the limit and tries to use all available "
+"bandwidth. Note that this option implicitly disables downloading from "
+"multiple servers at the same time."
msgstr ""
"Die benutzte Bandbreite kann durch <literal>Acquire::http::Dl-Limit</"
"literal> eingeschränkt werden, was Ganzzahlwerte in Kilobyte akzeptiert. Der "
@@ -3871,7 +3916,7 @@ msgstr ""
"deaktiviert.)"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:394
+#: apt.conf.5.xml:398
msgid ""
"<literal>Acquire::http::User-Agent</literal> can be used to set a different "
"User-Agent for the http download method as some proxies allow access for "
@@ -3885,6 +3930,20 @@ msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
#: apt.conf.5.xml:402
msgid ""
+"<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify "
+"an external command to discover the http proxy to use. Apt expects the "
+"command to output the proxy on stdout in the style <literal>http://proxy:"
+"port/</literal>. This will override the generic <literal>Acquire::http::"
+"Proxy</literal> but not any specific host proxy configuration set via "
+"<literal>Acquire::http::Proxy::$HOST</literal>. See the &squid-deb-proxy-"
+"client; package for an example implementation that uses avahi. This option "
+"takes precedence over the legacy option name <literal>ProxyAutoDetect</"
+"literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:420
+msgid ""
"The <literal>Cache-control</literal>, <literal>Timeout</literal>, "
"<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and "
"<literal>proxy</literal> options work for HTTPS URIs in the same way as for "
@@ -3900,7 +3959,7 @@ msgstr ""
"<literal>Pipeline-Depth</literal> wird noch nicht unterstützt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:410
+#: apt.conf.5.xml:428
msgid ""
"<literal>CaInfo</literal> suboption specifies place of file that holds info "
"about trusted certificates. <literal>&lt;host&gt;::CaInfo</literal> is the "
@@ -3941,7 +4000,7 @@ msgstr ""
"Rechner ist <literal>&lt;host&gt;::SslForceVersion</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:431
+#: apt.conf.5.xml:449
msgid ""
"<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. "
"It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</"
@@ -3976,7 +4035,7 @@ msgstr ""
"literal> und <literal>$(SITE_PORT)</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:451
+#: apt.conf.5.xml:469
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, "
@@ -3993,7 +4052,7 @@ msgstr ""
"Musterkonfigurationsdatei)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:458
+#: apt.conf.5.xml:476
msgid ""
"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
"envar> environment variable to an HTTP URL - see the discussion of the http "
@@ -4007,7 +4066,7 @@ msgstr ""
"Effizienz nicht empfohlen FTP über HTTP zu benutzen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:463
+#: apt.conf.5.xml:481
msgid ""
"The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@ -4023,13 +4082,13 @@ msgstr ""
"Server RFC2428 unterstützen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:477
+#: apt.conf.5.xml:495
#, no-wrap
msgid "/cdrom/::Mount \"foo\";"
msgstr "/cdrom/::Mount \"foo\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:472
+#: apt.conf.5.xml:490
msgid ""
"For URIs using the <literal>cdrom</literal> method, the only configurable "
"option is the mount point, <literal>cdrom::Mount</literal>, which must be "
@@ -4051,7 +4110,7 @@ msgstr ""
"Aushängebefehle können per UMount angegeben werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:485
+#: apt.conf.5.xml:503
msgid ""
"For GPGV URIs the only configurable option is <literal>gpgv::Options</"
"literal>, which passes additional parameters to gpgv."
@@ -4060,13 +4119,13 @@ msgstr ""
"literal>, um zusätzliche Parameter an Gpgv weiterzuleiten."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:496
+#: apt.conf.5.xml:514
#, no-wrap
msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
msgstr "Acquire::CompressionTypes::<replaceable>Dateierweiterung</replaceable> \"<replaceable>Methodenname</replaceable>\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:491
+#: apt.conf.5.xml:509
msgid ""
"List of compression types which are understood by the acquire methods. "
"Files like <filename>Packages</filename> can be available in various "
@@ -4086,19 +4145,19 @@ msgstr ""
"\"synopsis\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:501
+#: apt.conf.5.xml:519
#, no-wrap
msgid "Acquire::CompressionTypes::Order:: \"gz\";"
msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:504
+#: apt.conf.5.xml:522
#, no-wrap
msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:497
+#: apt.conf.5.xml:515
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 "
@@ -4130,13 +4189,13 @@ msgstr ""
"explizit zur Liste hinzuzufügen, da es automatisch hinzufügt wird."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:511
+#: apt.conf.5.xml:529
#, no-wrap
msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:506
+#: apt.conf.5.xml:524
msgid ""
"Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></"
"literal> will be checked at run time. If this option has been set, the "
@@ -4162,7 +4221,7 @@ msgstr ""
"nicht überschreiben, es wird diesen Typ nur vor die Liste setzen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:516
+#: apt.conf.5.xml:534
msgid ""
"The special type <literal>uncompressed</literal> can be used to give "
"uncompressed files a preference, but note that most archives don't provide "
@@ -4174,7 +4233,7 @@ msgstr ""
"dies meist nur für lokale Spiegel benutzt werden kann."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:523
+#: apt.conf.5.xml:541
msgid ""
"When downloading <literal>gzip</literal> compressed indexes (Packages, "
"Sources, or Translations), keep them gzip compressed locally instead of "
@@ -4188,7 +4247,7 @@ msgstr ""
"False."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:531
+#: apt.conf.5.xml:549
msgid ""
"The Languages subsection controls which <filename>Translation</filename> "
"files are downloaded and in which order APT tries to display the description-"
@@ -4208,13 +4267,13 @@ msgstr ""
"langen Sprachcodes selten."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting>
-#: apt.conf.5.xml:548
+#: apt.conf.5.xml:566
#, no-wrap
msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:536
+#: apt.conf.5.xml:554
msgid ""
"The default list includes \"environment\" and \"en\". "
"\"<literal>environment</literal>\" has a special meaning here: it will be "
@@ -4255,7 +4314,7 @@ msgstr ""
"\"0\"/>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:549
+#: apt.conf.5.xml:567
msgid ""
"Note: To prevent problems resulting from APT being executed in different "
"environments (e.g. by different users or by other programs) all Translation "
@@ -4269,22 +4328,22 @@ msgstr ""
"Liste hinzugefügt (nach einem impliziten »<literal>none</literal>«)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:558
+#: apt.conf.5.xml:576
msgid "When downloading, force to use only the IPv4 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:564
+#: apt.conf.5.xml:582
msgid "When downloading, force to use only the IPv6 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:571
+#: apt.conf.5.xml:589
msgid "Directories"
msgstr "Verzeichnisse"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:573
+#: apt.conf.5.xml:591
msgid ""
"The <literal>Dir::State</literal> section has directories that pertain to "
"local state information. <literal>lists</literal> is the directory to place "
@@ -4304,7 +4363,7 @@ msgstr ""
"nicht mit <filename>/</filename> oder <filename>./</filename> beginnen."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:580
+#: apt.conf.5.xml:598
msgid ""
"<literal>Dir::Cache</literal> contains locations pertaining to local cache "
"information, such as the two package caches <literal>srcpkgcache</literal> "
@@ -4327,7 +4386,7 @@ msgstr ""
"Standardverzeichnis in <literal>Dir::Cache</literal> enthalten."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:589
+#: apt.conf.5.xml:607
msgid ""
"<literal>Dir::Etc</literal> contains the location of configuration files, "
"<literal>sourcelist</literal> gives the location of the sourcelist and "
@@ -4342,7 +4401,7 @@ msgstr ""
"Konfigurationsdatei erfolgt)."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:595
+#: apt.conf.5.xml:613
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 "
@@ -4354,7 +4413,7 @@ msgstr ""
"geladen."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:599
+#: apt.conf.5.xml:617
msgid ""
"Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
"Bin::Methods</literal> specifies the location of the method handlers and "
@@ -4372,7 +4431,7 @@ msgstr ""
"Programms an."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:607
+#: apt.conf.5.xml:625
msgid ""
"The configuration item <literal>RootDir</literal> has a special meaning. If "
"set, all paths in <literal>Dir::</literal> will be relative to "
@@ -4392,7 +4451,7 @@ msgstr ""
"<filename>/tmp/staging/var/lib/dpkg/status</filename> nachgesehen."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:620
+#: apt.conf.5.xml:638
msgid ""
"The <literal>Ignore-Files-Silently</literal> list can be used to specify "
"which files APT should silently ignore while parsing the files in the "
@@ -4410,12 +4469,12 @@ msgstr ""
"diese Muster verwandt werden."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:629
+#: apt.conf.5.xml:647
msgid "APT in DSelect"
msgstr "APT in DSelect"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:631
+#: apt.conf.5.xml:649
msgid ""
"When APT is used as a &dselect; method several configuration directives "
"control the default behavior. These are in the <literal>DSelect</literal> "
@@ -4426,7 +4485,7 @@ msgstr ""
"<literal>DSelect</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:636
+#: apt.conf.5.xml:654
msgid ""
"Cache Clean mode; this value may be one of <literal>always</literal>, "
"<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</"
@@ -4449,7 +4508,7 @@ msgstr ""
"vor dem Herunterladen neuer Pakete durch."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:650
+#: apt.conf.5.xml:668
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the install phase."
@@ -4458,7 +4517,7 @@ msgstr ""
"übermittelt, wenn es für die Installationsphase durchlaufen wird."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:655
+#: apt.conf.5.xml:673
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the update phase."
@@ -4467,7 +4526,7 @@ msgstr ""
"übermittelt, wenn es für die Aktualisierungsphase durchlaufen wird."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:660
+#: apt.conf.5.xml:678
msgid ""
"If true the [U]pdate operation in &dselect; will always prompt to continue. "
"The default is to prompt only on error."
@@ -4476,12 +4535,12 @@ msgstr ""
"nachfragen, um fortzufahren. Vorgabe ist es, nur bei Fehlern nachzufragen."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:666
+#: apt.conf.5.xml:684
msgid "How APT calls &dpkg;"
msgstr "Wie APT &dpkg; aufruft"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:667
+#: apt.conf.5.xml:685
msgid ""
"Several configuration directives control how APT invokes &dpkg;. These are "
"in the <literal>DPkg</literal> section."
@@ -4490,7 +4549,7 @@ msgstr ""
"stehen im Abschnitt <literal>DPkg</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:672
+#: apt.conf.5.xml:690
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 "
@@ -4501,7 +4560,7 @@ msgstr ""
"jedes Listenelement wird als einzelnes Argument an &dpkg; übermittelt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:678
+#: apt.conf.5.xml:696
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 "
@@ -4515,13 +4574,21 @@ msgstr ""
"APT abgebrochen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:685
+#: apt.conf.5.xml:703
+#, fuzzy
+#| msgid ""
+#| "This is a list of shell commands to run before invoking &dpkg;. Like "
+#| "<literal>options</literal> this must be specified in list notation. The "
+#| "commands are invoked in order using <filename>/bin/sh</filename>; should "
+#| "any fail APT will abort. APT will pass the filenames of all .deb files it "
+#| "is going to install to the commands, one per line on standard input."
msgid ""
"This is a list of shell commands to run before invoking &dpkg;. Like "
"<literal>options</literal> this must be specified in list notation. The "
"commands are invoked in order using <filename>/bin/sh</filename>; should any "
"fail APT will abort. APT will pass the filenames of all .deb files it is "
-"going to install to the commands, one per line on standard input."
+"going to install to the commands, one per line on the requested file "
+"descriptor, defaulting to standard input."
msgstr ""
"Dies ist eine Liste von Shell-Befehlen, die vor dem Aufruf von &dpkg; "
"ausgeführt werden. Wie <literal>options</literal> muss dies in "
@@ -4531,13 +4598,19 @@ msgstr ""
"die es installieren wird, auf der Standardeingabe übergeben, einen pro Zeile."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:691
+#: apt.conf.5.xml:710
+#, fuzzy
+#| msgid ""
+#| "Version 2 of this protocol dumps more information, including the protocol "
+#| "version, the APT configuration space and the packages, files and versions "
+#| "being changed. Version 2 is enabled by setting <literal>DPkg::Tools::"
+#| "options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command "
+#| "given to <literal>Pre-Install-Pkgs</literal>."
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 3 adds the architecture and <literal>MultiArch</"
+"literal> flag to each version being dumped."
msgstr ""
"Version 2 dieses Protokolls gibt mehr Informationen aus, einschließlich der "
"Protokollversion, dem APT-Konfigurationsraum und den Paketen, Dateien und "
@@ -4547,7 +4620,29 @@ msgstr ""
"literal> gegeben wird."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:699
+#: apt.conf.5.xml:715
+msgid ""
+"The version of the protocol to be used for the command "
+"<literal><replaceable>cmd</replaceable></literal> can be chosen by setting "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::Version</"
+"literal> accordingly, the default being version 1. If APT isn't supporting "
+"the requested version it will send the information in the highest version it "
+"has support for instead."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:722
+msgid ""
+"The file descriptor to be used to send the information can be requested with "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</"
+"literal> which defaults to <literal>0</literal> for standard input and is "
+"available since version 0.9.11. Support for the option can be detected by "
+"looking for the environment variable <envar>APT_HOOK_INFO_FD</envar> which "
+"contains the number of the used file descriptor as a confirmation."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:732
msgid ""
"APT chdirs to this directory before invoking &dpkg;, the default is "
"<filename>/</filename>."
@@ -4556,7 +4651,7 @@ msgstr ""
"die Vorgabe ist <filename>/</filename>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:704
+#: apt.conf.5.xml:737
msgid ""
"These options are passed to &dpkg-buildpackage; when compiling packages; the "
"default is to disable signing and produce all binaries."
@@ -4566,12 +4661,12 @@ msgstr ""
"Programme werden erstellt."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt.conf.5.xml:709
+#: apt.conf.5.xml:742
msgid "dpkg trigger usage (and related options)"
msgstr "Dpkd-Trigger-Benutzung (und zugehörige Optionen)"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:710
+#: apt.conf.5.xml:743
msgid ""
"APT can call &dpkg; in such a way as to let it make aggressive use of "
"triggers over multiple calls of &dpkg;. Without further options &dpkg; will "
@@ -4598,7 +4693,7 @@ msgstr ""
"Pakete konfiguriert werden."
#. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
-#: apt.conf.5.xml:725
+#: apt.conf.5.xml:758
#, no-wrap
msgid ""
"DPkg::NoTriggers \"true\";\n"
@@ -4612,7 +4707,7 @@ msgstr ""
"DPkg::TriggersPending \"true\";"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:719
+#: apt.conf.5.xml:752
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 "
@@ -4637,7 +4732,7 @@ msgstr ""
"Optionenkombination wäre <placeholder type=\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:732
+#: apt.conf.5.xml:765
msgid ""
"Add the no triggers flag to all &dpkg; calls (except the ConfigurePending "
"call). See &dpkg; if you are interested in what this actually means. In "
@@ -4660,7 +4755,7 @@ msgstr ""
"anhängen."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:740
+#: apt.conf.5.xml:773
msgid ""
"Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
"and \"<literal>no</literal>\". The default value is \"<literal>all</literal>"
@@ -4690,7 +4785,7 @@ msgstr ""
"enden könnte und möglicherweise nicht mehr startbar ist."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:755
+#: apt.conf.5.xml:788
msgid ""
"If this option is set APT will call <command>dpkg --configure --pending</"
"command> to let &dpkg; handle all required configurations and triggers. This "
@@ -4709,7 +4804,7 @@ msgstr ""
"deaktivieren."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:762
+#: apt.conf.5.xml:795
msgid ""
"Useful for the <literal>smart</literal> configuration as a package which has "
"pending triggers is not considered as <literal>installed</literal>, and "
@@ -4725,7 +4820,7 @@ msgstr ""
"benötigt werden."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:775
+#: apt.conf.5.xml:808
#, no-wrap
msgid ""
"OrderList::Score {\n"
@@ -4743,7 +4838,7 @@ msgstr ""
"};"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:768
+#: apt.conf.5.xml:801
msgid ""
"Essential packages (and their dependencies) should be configured immediately "
"after unpacking. It is a good idea to do this quite early in the upgrade "
@@ -4767,12 +4862,12 @@ msgstr ""
"mit ihren Vorgabewerten. <placeholder type=\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:788
+#: apt.conf.5.xml:821
msgid "Periodic and Archives options"
msgstr "Periodische- und Archivoptionen"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:789
+#: apt.conf.5.xml:822
msgid ""
"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
"of options configure behavior of apt periodic updates, which is done by the "
@@ -4786,12 +4881,12 @@ msgstr ""
"Dokumentation dieser Optionen zu erhalten."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:797
+#: apt.conf.5.xml:830
msgid "Debug options"
msgstr "Fehlersuchoptionen"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:799
+#: apt.conf.5.xml:832
msgid ""
"Enabling options in the <literal>Debug::</literal> section will cause "
"debugging information to be sent to the standard error stream of the program "
@@ -4809,7 +4904,7 @@ msgstr ""
"könnten es sein:"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:810
+#: apt.conf.5.xml:843
msgid ""
"<literal>Debug::pkgProblemResolver</literal> enables output about the "
"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@ -4820,7 +4915,7 @@ msgstr ""
"getroffenen Entscheidungen ein."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:818
+#: apt.conf.5.xml:851
msgid ""
"<literal>Debug::NoLocking</literal> disables all file locking. This can be "
"used to run some operations (for instance, <literal>apt-get -s install</"
@@ -4831,7 +4926,7 @@ msgstr ""
"<literal>apt-get -s install</literal>) als nicht root-Anwender auszuführen."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:827
+#: apt.conf.5.xml:860
msgid ""
"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
"time that <literal>apt</literal> invokes &dpkg;."
@@ -4843,7 +4938,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:835
+#: apt.conf.5.xml:868
msgid ""
"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
"in CD-ROM IDs."
@@ -4852,12 +4947,12 @@ msgstr ""
"Daten in CD-ROM-IDs aus."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:845
+#: apt.conf.5.xml:878
msgid "A full list of debugging options to apt follows."
msgstr "Eine vollständige Liste der Fehlersuchoptionen von APT folgt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:854
+#: apt.conf.5.xml:887
msgid ""
"Print information related to accessing <literal>cdrom://</literal> sources."
msgstr ""
@@ -4865,28 +4960,28 @@ msgstr ""
"literal>-Quellen beziehen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:865
+#: apt.conf.5.xml:898
msgid "Print information related to downloading packages using FTP."
msgstr ""
"gibt Informationen aus, die sich auf das Herunterladen von Paketen per FTP "
"beziehen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:876
+#: apt.conf.5.xml:909
msgid "Print information related to downloading packages using HTTP."
msgstr ""
"gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTP "
"beziehen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:887
+#: apt.conf.5.xml:920
msgid "Print information related to downloading packages using HTTPS."
msgstr ""
"gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTPS "
"beziehen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:898
+#: apt.conf.5.xml:931
msgid ""
"Print information related to verifying cryptographic signatures using "
"<literal>gpg</literal>."
@@ -4895,7 +4990,7 @@ msgstr ""
"mittels <literal>gpg</literal> beziehen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:909
+#: apt.conf.5.xml:942
msgid ""
"Output information about the process of accessing collections of packages "
"stored on CD-ROMs."
@@ -4904,13 +4999,13 @@ msgstr ""
"CD-ROMs gespeichert sind."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:919
+#: apt.conf.5.xml:952
msgid "Describes the process of resolving build-dependencies in &apt-get;."
msgstr ""
"beschreibt den Prozess der Auflösung von Bauabhängigkeiten in &apt-get;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:929
+#: apt.conf.5.xml:962
msgid ""
"Output each cryptographic hash that is generated by the <literal>apt</"
"literal> libraries."
@@ -4919,7 +5014,7 @@ msgstr ""
"Bibliotheken generiert wurde."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:939
+#: apt.conf.5.xml:972
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 "
@@ -4930,7 +5025,7 @@ msgstr ""
"ID für eine CD-ROM generiert wird."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:950
+#: apt.conf.5.xml:983
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."
@@ -4940,14 +5035,14 @@ msgstr ""
"gleichen Zeit laufen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:962
+#: apt.conf.5.xml:995
msgid "Log when items are added to or removed from the global download queue."
msgstr ""
"protokolliert, wenn Elemente aus der globalen Warteschlange zum "
"Herunterladen hinzugefügt oder entfernt werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:972
+#: apt.conf.5.xml:1005
msgid ""
"Output status messages and errors related to verifying checksums and "
"cryptographic signatures of downloaded files."
@@ -4956,7 +5051,7 @@ msgstr ""
"und kryptografischen Signaturen von heruntergeladenen Dateien beziehen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:982
+#: apt.conf.5.xml:1015
msgid ""
"Output information about downloading and applying package index list diffs, "
"and errors relating to package index list diffs."
@@ -4965,7 +5060,7 @@ msgstr ""
"Diffs und Fehler, die die Paketindexlisten-Diffs betreffen, aus."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:994
+#: apt.conf.5.xml:1027
msgid ""
"Output information related to patching apt package lists when downloading "
"index diffs instead of full indices."
@@ -4975,7 +5070,7 @@ msgstr ""
"werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1005
+#: apt.conf.5.xml:1038
msgid ""
"Log all interactions with the sub-processes that actually perform downloads."
msgstr ""
@@ -4983,7 +5078,7 @@ msgstr ""
"durchführen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1016
+#: apt.conf.5.xml:1049
msgid ""
"Log events related to the automatically-installed status of packages and to "
"the removal of unused packages."
@@ -4993,7 +5088,7 @@ msgstr ""
"beziehen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1026
+#: apt.conf.5.xml:1059
msgid ""
"Generate debug messages describing which packages are being automatically "
"installed to resolve dependencies. This corresponds to the initial auto-"
@@ -5009,7 +5104,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1040
+#: apt.conf.5.xml:1073
msgid ""
"Generate debug messages describing which packages are marked as keep/install/"
"remove while the ProblemResolver does his work. Each addition or deletion "
@@ -5042,7 +5137,7 @@ msgstr ""
"dem das Paket erscheint."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1061
+#: apt.conf.5.xml:1094
msgid ""
"When invoking &dpkg;, output the precise command line with which it is being "
"invoked, with arguments separated by a single space character."
@@ -5052,7 +5147,7 @@ msgstr ""
"sind, aus."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1072
+#: apt.conf.5.xml:1105
msgid ""
"Output all the data received from &dpkg; on the status file descriptor and "
"any errors encountered while parsing it."
@@ -5061,7 +5156,7 @@ msgstr ""
"und alle während deren Auswertung gefundenen Fehler aus."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1083
+#: apt.conf.5.xml:1116
msgid ""
"Generate a trace of the algorithm that decides the order in which "
"<literal>apt</literal> should pass packages to &dpkg;."
@@ -5071,7 +5166,7 @@ msgstr ""
"soll."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1095
+#: apt.conf.5.xml:1128
msgid ""
"Output status messages tracing the steps performed when invoking &dpkg;."
msgstr ""
@@ -5079,12 +5174,12 @@ msgstr ""
"von &dpkg; ausgeführt werden."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1106
+#: apt.conf.5.xml:1139
msgid "Output the priority of each package list on startup."
msgstr "gibt die Priorität jeder Paketliste beim Start aus."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1116
+#: apt.conf.5.xml:1149
msgid ""
"Trace the execution of the dependency resolver (this applies only to what "
"happens when a complex dependency problem is encountered)."
@@ -5094,7 +5189,7 @@ msgstr ""
"aufgetreten ist)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1127
+#: apt.conf.5.xml:1160
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 "
@@ -5106,7 +5201,7 @@ msgstr ""
"Marker</literal> beschrieben."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1139
+#: apt.conf.5.xml:1172
msgid ""
"Print information about the vendors read from <filename>/etc/apt/vendors."
"list</filename>."
@@ -5115,13 +5210,13 @@ msgstr ""
"filename> gelesenen Anbieter aus."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:1161 apt_preferences.5.xml:545 sources.list.5.xml:211
-#: apt-ftparchive.1.xml:596
+#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:217
+#: apt-ftparchive.1.xml:598
msgid "Examples"
msgstr "Beispiele"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1162
+#: apt.conf.5.xml:1195
msgid ""
"&configureindex; is a configuration file showing example values for all "
"possible options."
@@ -5131,17 +5226,17 @@ msgstr ""
#. ? reading apt.conf
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1174
+#: apt.conf.5.xml:1207
msgid "&apt-cache;, &apt-config;, &apt-preferences;."
msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt_preferences.5.xml:32
+#: apt_preferences.5.xml:34
msgid "Preference control file for APT"
msgstr "Voreinstellungssteuerdatei für APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:37
+#: apt_preferences.5.xml:39
msgid ""
"The APT preferences file <filename>/etc/apt/preferences</filename> and the "
"fragment files in the <filename>/etc/apt/preferences.d/</filename> folder "
@@ -5154,7 +5249,7 @@ msgstr ""
"Installation ausgewählt werden."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:42
+#: apt_preferences.5.xml:44
msgid ""
"Several versions of a package may be available for installation when the "
"&sources-list; file contains references to more than one distribution (for "
@@ -5176,7 +5271,7 @@ msgstr ""
"Installation ausgewählt wird."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:52
+#: apt_preferences.5.xml:54
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 "
@@ -5192,7 +5287,7 @@ msgstr ""
"der Version."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:59
+#: apt_preferences.5.xml:61
msgid ""
"Preferences are a strong power in the hands of a system administrator but "
"they can become also their biggest nightmare if used without care! APT will "
@@ -5216,7 +5311,7 @@ msgstr ""
"nicht. Sind wurden gewarnt."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:70
+#: apt_preferences.5.xml:72
msgid ""
"Note that the files in the <filename>/etc/apt/preferences.d</filename> "
"directory are parsed in alphanumeric ascending order and need to obey the "
@@ -5238,24 +5333,24 @@ msgstr ""
"diesem Fall wird sie stillschweigend ignoriert."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:79
+#: apt_preferences.5.xml:81
msgid "APT's Default Priority Assignments"
msgstr "APTs Standardprioritätszuweisungen"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:94
+#: apt_preferences.5.xml:96
#, 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:97
+#: apt_preferences.5.xml:99
#, 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:81
+#: apt_preferences.5.xml:83
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 "
@@ -5283,7 +5378,7 @@ msgstr ""
"\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:101
+#: apt_preferences.5.xml:103
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:"
@@ -5293,12 +5388,12 @@ msgstr ""
"Zuweisung:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:106
+#: apt_preferences.5.xml:108
msgid "priority 1"
msgstr "Priorität 1"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:107
+#: apt_preferences.5.xml:109
msgid ""
"to the versions coming from archives which in their <filename>Release</"
"filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</"
@@ -5311,12 +5406,12 @@ msgstr ""
"<literal>experimental</literal> von Debian."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:113
+#: apt_preferences.5.xml:115
msgid "priority 100"
msgstr "Priorität 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:114
+#: apt_preferences.5.xml:116
msgid ""
"to the version that is already installed (if any) and to the versions coming "
"from archives which in their <filename>Release</filename> files are marked "
@@ -5330,12 +5425,12 @@ msgstr ""
"backports</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:121
+#: apt_preferences.5.xml:123
msgid "priority 500"
msgstr "Priorität 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:122
+#: apt_preferences.5.xml:124
msgid ""
"to the versions that are not installed and do not belong to the target "
"release."
@@ -5344,19 +5439,19 @@ msgstr ""
"gehören."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:126
+#: apt_preferences.5.xml:128
msgid "priority 990"
msgstr "Priorität 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:127
+#: apt_preferences.5.xml:129
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:132
+#: apt_preferences.5.xml:134
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 "
@@ -5374,7 +5469,7 @@ msgstr ""
"markiert sind."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:139
+#: apt_preferences.5.xml:141
msgid ""
"APT then applies the following rules, listed in order of precedence, to "
"determine which version of a package to install."
@@ -5384,7 +5479,7 @@ msgstr ""
"ist."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:142
+#: apt_preferences.5.xml:144
msgid ""
"Never downgrade unless the priority of an available version exceeds 1000. "
"(\"Downgrading\" is installing a less recent version of a package in place "
@@ -5400,12 +5495,12 @@ msgstr ""
"Downgrading eines Paketes riskant sein kann.)"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:148
+#: apt_preferences.5.xml:150
msgid "Install the highest priority version."
msgstr "installiert die Version mit der höchsten Priorität."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:149
+#: apt_preferences.5.xml:151
msgid ""
"If two or more versions have the same priority, install the most recent one "
"(that is, the one with the higher version number)."
@@ -5414,7 +5509,7 @@ msgstr ""
"aktuellste installiert (das ist die mit der höheren Versionsnummer)."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:152
+#: apt_preferences.5.xml:154
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</"
@@ -5426,7 +5521,7 @@ msgstr ""
"installierte installiert."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:158
+#: apt_preferences.5.xml:160
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 "
@@ -5442,7 +5537,7 @@ msgstr ""
"upgrade</command> ausgeführt wird."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:165
+#: apt_preferences.5.xml:167
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 "
@@ -5456,7 +5551,7 @@ msgstr ""
"upgrade</command> ausgeführt wird."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:170
+#: apt_preferences.5.xml:172
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 "
@@ -5476,12 +5571,12 @@ msgstr ""
"hat."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:179
+#: apt_preferences.5.xml:181
msgid "The Effect of APT Preferences"
msgstr "Die Auswirkungen von APT-Einstellungen"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:181
+#: apt_preferences.5.xml:183
msgid ""
"The APT preferences file allows the system administrator to control the "
"assignment of priorities. The file consists of one or more multi-line "
@@ -5495,7 +5590,7 @@ msgstr ""
"allgemeine Gestalt."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:187
+#: apt_preferences.5.xml:189
msgid ""
"The specific form assigns a priority (a \"Pin-Priority\") to one or more "
"specified packages with a specified version or version range. For example, "
@@ -5512,7 +5607,7 @@ msgstr ""
"Pakete können durch Leerzeichen getrennt werden."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:194
+#: apt_preferences.5.xml:196
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5524,7 +5619,7 @@ msgstr ""
"Pin-Priority: 1001\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:200
+#: apt_preferences.5.xml:202
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 "
@@ -5539,7 +5634,7 @@ msgstr ""
"ausgebildeten Domänennamen identifiziert wird, eine Priorität zu."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:206
+#: apt_preferences.5.xml:208
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 "
@@ -5550,7 +5645,7 @@ msgstr ""
"Paketversionen eine hohe Priorität zu, die lokal liegen."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:211
+#: apt_preferences.5.xml:213
#, no-wrap
msgid ""
"Package: *\n"
@@ -5562,7 +5657,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:216
+#: apt_preferences.5.xml:218
msgid ""
"A note of caution: the keyword used here is \"<literal>origin</literal>\" "
"which can be used to match a hostname. The following record will assign a "
@@ -5576,7 +5671,7 @@ msgstr ""
"de.debian.org« identifiziert wird."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:220
+#: apt_preferences.5.xml:222
#, no-wrap
msgid ""
"Package: *\n"
@@ -5588,7 +5683,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:224
+#: apt_preferences.5.xml:226
msgid ""
"This should <emphasis>not</emphasis> be confused with the Origin of a "
"distribution as specified in a <filename>Release</filename> file. What "
@@ -5603,7 +5698,7 @@ msgstr ""
"oder »Ximian«."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:229
+#: apt_preferences.5.xml:231
msgid ""
"The following record assigns a low priority to all package versions "
"belonging to any distribution whose Archive name is \"<literal>unstable</"
@@ -5614,7 +5709,7 @@ msgstr ""
"Priorität zu."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:233
+#: apt_preferences.5.xml:235
#, no-wrap
msgid ""
"Package: *\n"
@@ -5626,7 +5721,7 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:238
+#: apt_preferences.5.xml:240
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any distribution whose Codename is \"<literal>&testing-codename;"
@@ -5637,7 +5732,7 @@ msgstr ""
"hohe Priorität zu."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:242
+#: apt_preferences.5.xml:244
#, no-wrap
msgid ""
"Package: *\n"
@@ -5649,7 +5744,7 @@ msgstr ""
"Pin-Priority: 900\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:247
+#: apt_preferences.5.xml:249
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any release whose Archive name is \"<literal>stable</literal>\" "
@@ -5660,7 +5755,7 @@ msgstr ""
"Nummer »<literal>&stable-version;</literal>« ist, eine hohe Priorität zu."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:252
+#: apt_preferences.5.xml:254
#, no-wrap
msgid ""
"Package: *\n"
@@ -5672,12 +5767,12 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:262
+#: apt_preferences.5.xml:264
msgid "Regular expressions and &glob; syntax"
msgstr "Reguläre Ausdrücke und &glob;-Syntax"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:264
+#: apt_preferences.5.xml:266
msgid ""
"APT also supports pinning by &glob; expressions, and regular expressions "
"surrounded by slashes. For example, the following example assigns the "
@@ -5693,7 +5788,7 @@ msgstr ""
"von Schrägstrichen umschlossen wird)."
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:273
+#: apt_preferences.5.xml:275
#, no-wrap
msgid ""
"Package: gnome* /kde/\n"
@@ -5705,7 +5800,7 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:279
+#: apt_preferences.5.xml:281
msgid ""
"The rule for those expressions is that they can occur anywhere where a "
"string can occur. Thus, the following pin assigns the priority 990 to all "
@@ -5716,7 +5811,7 @@ msgstr ""
"Paketen von einem Release seit Karmic die Priorität 900 zu."
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:285
+#: apt_preferences.5.xml:287
#, no-wrap
msgid ""
"Package: *\n"
@@ -5728,7 +5823,7 @@ msgstr ""
"Pin-Priority: 990\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:291
+#: apt_preferences.5.xml:293
msgid ""
"If a regular expression occurs in a <literal>Package</literal> field, the "
"behavior is the same as if this regular expression were replaced with a list "
@@ -5746,12 +5841,12 @@ msgstr ""
"»Package«-Feld wird selbst nicht als ein &glob;-Ausdruck angesehen."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:307
+#: apt_preferences.5.xml:309
msgid "How APT Interprets Priorities"
msgstr "Wie APT Prioritäten interpretiert"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:310
+#: apt_preferences.5.xml:312
msgid ""
"Priorities (P) assigned in the APT preferences file must be positive or "
"negative integers. They are interpreted as follows (roughly speaking):"
@@ -5761,12 +5856,12 @@ msgstr ""
"(grob gesagt):"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:315
+#: apt_preferences.5.xml:317
msgid "P &gt;= 1000"
msgstr "P &gt;= 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:316
+#: apt_preferences.5.xml:318
msgid ""
"causes a version to be installed even if this constitutes a downgrade of the "
"package"
@@ -5775,12 +5870,12 @@ msgstr ""
"des Pakets durchführt"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:320
+#: apt_preferences.5.xml:322
msgid "990 &lt;= P &lt; 1000"
msgstr "990 &lt;= P &lt; 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:321
+#: apt_preferences.5.xml:323
msgid ""
"causes a version to be installed even if it does not come from the target "
"release, unless the installed version is more recent"
@@ -5789,12 +5884,12 @@ msgstr ""
"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:326
+#: apt_preferences.5.xml:328
msgid "500 &lt;= P &lt; 990"
msgstr "500 &lt;= P &lt; 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:327
+#: apt_preferences.5.xml:329
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"
@@ -5804,12 +5899,12 @@ msgstr ""
"neuer ist"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:332
+#: apt_preferences.5.xml:334
msgid "100 &lt;= P &lt; 500"
msgstr "100 &lt;= P &lt; 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:333
+#: apt_preferences.5.xml:335
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"
@@ -5819,12 +5914,12 @@ msgstr ""
"installierte Version neuer ist"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:338
+#: apt_preferences.5.xml:340
msgid "0 &lt; P &lt; 100"
msgstr "0 &lt; P &lt; 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:339
+#: apt_preferences.5.xml:341
msgid ""
"causes a version to be installed only if there is no installed version of "
"the package"
@@ -5833,17 +5928,17 @@ msgstr ""
"installierte Version des Pakets gibt"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:343
+#: apt_preferences.5.xml:345
msgid "P &lt; 0"
msgstr "P &lt; 0"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:344
+#: apt_preferences.5.xml:346
msgid "prevents the version from being installed"
msgstr "verhindert das Installieren der Version"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:349
+#: apt_preferences.5.xml:351
msgid ""
"If any specific-form records match an available package version then the "
"first such record determines the priority of the package version. Failing "
@@ -5857,7 +5952,7 @@ msgstr ""
"erste dieser Datensätze die Priorität der Paketversion fest."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:355
+#: apt_preferences.5.xml:357
msgid ""
"For example, suppose the APT preferences file contains the three records "
"presented earlier:"
@@ -5866,7 +5961,7 @@ msgstr ""
"bereits gezeigten Datensätze:"
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:359
+#: apt_preferences.5.xml:361
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5894,12 +5989,12 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:372
+#: apt_preferences.5.xml:374
msgid "Then:"
msgstr "Dann:"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:374
+#: apt_preferences.5.xml:376
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 "
@@ -5914,7 +6009,7 @@ msgstr ""
"perl;* 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:379
+#: apt_preferences.5.xml:381
msgid ""
"A version of any package other than <literal>perl</literal> that is "
"available from the local system has priority over other versions, even "
@@ -5925,7 +6020,7 @@ msgstr ""
"sogar wenn diese Versionen zum Ziel-Release gehören."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:383
+#: apt_preferences.5.xml:385
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</"
@@ -5939,12 +6034,12 @@ msgstr ""
"Pakets installiert ist."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:393
+#: apt_preferences.5.xml:395
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:395
+#: apt_preferences.5.xml:397
msgid ""
"The locations listed in the &sources-list; file should provide "
"<filename>Packages</filename> and <filename>Release</filename> files to "
@@ -5955,7 +6050,7 @@ msgstr ""
"bereitstellen, um die an diesem Ort verfügbaren Pakete zu beschreiben."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:399
+#: apt_preferences.5.xml:401
msgid ""
"The <filename>Packages</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable>/"
@@ -5974,27 +6069,27 @@ msgstr ""
"Datensatz sind nur zwei Zeilen zum Setzen der APT-Prioritäten relevant:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:407
+#: apt_preferences.5.xml:409
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:408
+#: apt_preferences.5.xml:410
msgid "gives the package name"
msgstr "gibt den Paketnamen an"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:411 apt_preferences.5.xml:461
+#: apt_preferences.5.xml:413 apt_preferences.5.xml:463
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:412
+#: apt_preferences.5.xml:414
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:417
+#: apt_preferences.5.xml:419
msgid ""
"The <filename>Release</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
@@ -6016,12 +6111,12 @@ msgstr ""
"APT-Prioritäten relevant:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:428
+#: apt_preferences.5.xml:430
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:429
+#: apt_preferences.5.xml:431
msgid ""
"names the archive to which all the packages in the directory tree belong. "
"For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@ -6038,18 +6133,18 @@ msgstr ""
"die folgende Zeile benötigen:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:439
+#: apt_preferences.5.xml:441
#, 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:445
+#: apt_preferences.5.xml:447
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:446
+#: apt_preferences.5.xml:448
msgid ""
"names the codename to which all the packages in the directory tree belong. "
"For example, the line \"Codename: &testing-codename;\" specifies that all of "
@@ -6066,13 +6161,13 @@ msgstr ""
"anzugeben würde die folgende Zeile benötigen:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:455
+#: apt_preferences.5.xml:457
#, no-wrap
msgid "Pin: release n=&testing-codename;\n"
msgstr "Pin: release n=&testing-codename;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:462
+#: apt_preferences.5.xml:464
msgid ""
"names the release version. For example, the packages in the tree might "
"belong to Debian release version &stable-version;. Note that there is "
@@ -6089,7 +6184,7 @@ msgstr ""
"eine der folgenden Zeilen benötigen:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:471
+#: apt_preferences.5.xml:473
#, no-wrap
msgid ""
"Pin: release v=&stable-version;\n"
@@ -6101,12 +6196,12 @@ msgstr ""
"Pin: release &stable-version;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:480
+#: apt_preferences.5.xml:482
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:481
+#: apt_preferences.5.xml:483
msgid ""
"names the licensing component associated with the packages in the directory "
"tree of the <filename>Release</filename> file. For example, the line "
@@ -6124,18 +6219,18 @@ msgstr ""
"Zeilen benötigen:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:490
+#: apt_preferences.5.xml:492
#, 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:496
+#: apt_preferences.5.xml:498
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:497
+#: apt_preferences.5.xml:499
msgid ""
"names the originator of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -6147,18 +6242,18 @@ msgstr ""
"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:503
+#: apt_preferences.5.xml:505
#, 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:509
+#: apt_preferences.5.xml:511
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:510
+#: apt_preferences.5.xml:512
msgid ""
"names the label of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -6171,13 +6266,13 @@ msgstr ""
"die folgende Zeile benötigen:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:516
+#: apt_preferences.5.xml:518
#, 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:523
+#: apt_preferences.5.xml:525
msgid ""
"All of the <filename>Packages</filename> and <filename>Release</filename> "
"files retrieved from locations listed in the &sources-list; file are stored "
@@ -6203,12 +6298,12 @@ msgstr ""
"Distribution heruntergeladen wurde."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:536
+#: apt_preferences.5.xml:538
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:538
+#: apt_preferences.5.xml:540
msgid ""
"Each record in the APT preferences file can optionally begin with one or "
"more lines beginning with the word <literal>Explanation:</literal>. This "
@@ -6219,12 +6314,12 @@ msgstr ""
"anfangen. Dieses stellt einen Platz für Kommentare bereit."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:547
+#: apt_preferences.5.xml:549
msgid "Tracking Stable"
msgstr "Stable verfolgen"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:555
+#: apt_preferences.5.xml:557
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated\n"
@@ -6248,7 +6343,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:549
+#: apt_preferences.5.xml:551
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 "
@@ -6263,8 +6358,8 @@ msgstr ""
"Distributionen gehören. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:572 apt_preferences.5.xml:618
-#: apt_preferences.5.xml:676
+#: apt_preferences.5.xml:574 apt_preferences.5.xml:620
+#: apt_preferences.5.xml:678
#, no-wrap
msgid ""
"apt-get install <replaceable>package-name</replaceable>\n"
@@ -6276,7 +6371,7 @@ msgstr ""
"apt-get dist-upgrade\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:567
+#: apt_preferences.5.xml:569
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 "
@@ -6289,13 +6384,13 @@ msgstr ""
"type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:584
+#: apt_preferences.5.xml:586
#, 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:578
+#: apt_preferences.5.xml:580
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>testing</literal> distribution; the package "
@@ -6309,12 +6404,12 @@ msgstr ""
"\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:590
+#: apt_preferences.5.xml:592
msgid "Tracking Testing or Unstable"
msgstr "Testing oder Unstable verfolgen"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:599
+#: apt_preferences.5.xml:601
#, no-wrap
msgid ""
"Package: *\n"
@@ -6342,7 +6437,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:592
+#: apt_preferences.5.xml:594
msgid ""
"The following APT preferences file will cause APT to assign a high priority "
"to package versions from the <literal>testing</literal> distribution, a "
@@ -6359,7 +6454,7 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:613
+#: apt_preferences.5.xml:615
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 "
@@ -6372,13 +6467,13 @@ msgstr ""
"type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:633
+#: apt_preferences.5.xml:635
#, 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:624
+#: apt_preferences.5.xml:626
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>unstable</literal> distribution. "
@@ -6398,12 +6493,12 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:640
+#: apt_preferences.5.xml:642
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:654
+#: apt_preferences.5.xml:656
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@ -6438,7 +6533,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:642
+#: apt_preferences.5.xml:644
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 "
@@ -6464,7 +6559,7 @@ msgstr ""
"benutzen. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:671
+#: apt_preferences.5.xml:673
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 "
@@ -6477,13 +6572,13 @@ msgstr ""
"literal> durchzuführen. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:691
+#: apt_preferences.5.xml:693
#, 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:682
+#: apt_preferences.5.xml:684
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>sid</literal> distribution. Thereafter, "
@@ -6503,17 +6598,17 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:706
+#: apt_preferences.5.xml:708
msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: sources.list.5.xml:33
+#: sources.list.5.xml:35
msgid "List of configured APT data sources"
msgstr "Liste konfigurierter APT-Datenquellen"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:38
+#: sources.list.5.xml:40
msgid ""
"The source list <filename>/etc/apt/sources.list</filename> is designed to "
"support any number of active sources and a variety of source media. The file "
@@ -6530,7 +6625,7 @@ msgstr ""
"einer anderen APT-Oberfläche) beschafft."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:45
+#: sources.list.5.xml:47
msgid ""
"Each line specifying a source starts with type (e.g. <literal>deb-src</"
"literal>) followed by options and arguments for this type. Individual "
@@ -6545,12 +6640,12 @@ msgstr ""
"einer Zeile kennzeichnet den Rest dieser Zeile als Kommentar."
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:53
+#: sources.list.5.xml:55
msgid "sources.list.d"
msgstr "sources.list.d"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:54
+#: sources.list.5.xml:56
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 "
@@ -6572,12 +6667,12 @@ msgstr ""
"Silently</literal> passt – in diesem Fall wird sie stillschweigend ignoriert."
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:65
+#: sources.list.5.xml:67
msgid "The deb and deb-src types"
msgstr "Die Typen deb und deb-src"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:66
+#: sources.list.5.xml:68
msgid ""
"The <literal>deb</literal> type references a typical two-level Debian "
"archive, <filename>distribution/component</filename>. The "
@@ -6602,7 +6697,7 @@ msgstr ""
"benötigt, um Quellindizes herunterzuladen."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:78
+#: sources.list.5.xml:80
msgid ""
"The format for a <filename>sources.list</filename> entry using the "
"<literal>deb</literal> and <literal>deb-src</literal> types is:"
@@ -6611,13 +6706,13 @@ msgstr ""
"<literal>deb</literal>- und <literal>deb-src</literal>-Typen benutzt, ist:"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:81
+#: sources.list.5.xml:83
#, no-wrap
msgid "deb [ options ] uri distribution [component1] [component2] [...]"
msgstr "deb [ Optionen ] URI Distribution [Komponente1] [Komponente2] […]"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:83
+#: sources.list.5.xml:85
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. "
@@ -6639,7 +6734,7 @@ msgstr ""
"angegeben sein."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:92
+#: sources.list.5.xml:94
msgid ""
"<literal>distribution</literal> may also contain a variable, <literal>"
"$(ARCH)</literal> which expands to the Debian architecture (such as "
@@ -6659,7 +6754,7 @@ msgstr ""
"Architektur generieren."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:100
+#: sources.list.5.xml:102
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 "
@@ -6686,7 +6781,7 @@ msgstr ""
"niedriger Bandbreite hauszuhalten."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:112
+#: sources.list.5.xml:114
msgid ""
"<literal>options</literal> is always optional and needs to be surrounded by "
"square brackets. It can consist of multiple settings in the form "
@@ -6704,7 +6799,7 @@ msgstr ""
"stillschweigend ignoriert werden."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:117
+#: sources.list.5.xml:120
msgid ""
"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
"replaceable>,…</literal> can be used to specify for which architectures "
@@ -6720,7 +6815,29 @@ msgstr ""
"heruntergeladen."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:121
+#: sources.list.5.xml:124
+#, fuzzy
+#| msgid ""
+#| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+#| "replaceable>,…</literal> can be used to specify for which architectures "
+#| "information should be downloaded. If this option is not set all "
+#| "architectures defined by the <literal>APT::Architectures</literal> option "
+#| "will be downloaded."
+msgid ""
+"<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>,"
+"<replaceable>arch2</replaceable>,…</literal> which can be used to add/remove "
+"architectures from the set which will be downloaded."
+msgstr ""
+"<literal>arch=<replaceable>Architektur1</replaceable>,"
+"<replaceable>Architektur2</replaceable>, …</literal> kann benutzt werden, um "
+"anzugeben, für welche Architekturen Paketinformationen heruntergeladen "
+"werden sollen. Falls diese Option nicht gesetzt ist, werden alle durch die "
+"Option <literal>APT::Architectures</literal> definierten Architekturen "
+"heruntergeladen."
+
+#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
+#: sources.list.5.xml:127
msgid ""
"<literal>trusted=yes</literal> can be set to indicate that packages from "
"this source are always authenticated even if the <filename>Release</"
@@ -6738,7 +6855,7 @@ msgstr ""
"korrekt authentifizierte Quellen als nicht authentifiziert."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:128
+#: sources.list.5.xml:134
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 "
@@ -6752,12 +6869,12 @@ msgstr ""
"Rechnern, zum Beispiel)."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:133
+#: sources.list.5.xml:139
msgid "Some examples:"
msgstr "Einige Beispiele:"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:135
+#: sources.list.5.xml:141
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@ -6769,17 +6886,17 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:141
+#: sources.list.5.xml:147
msgid "URI specification"
msgstr "URI-Beschreibung"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:143
+#: sources.list.5.xml:149
msgid "The currently recognized URI types are:"
msgstr "Die derzeit zulässigen URI-Typen sind:"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:147
+#: sources.list.5.xml:153
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 "
@@ -6790,7 +6907,7 @@ msgstr ""
"lokale Spiegel oder Archive."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:154
+#: sources.list.5.xml:160
msgid ""
"The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. "
"Use the &apt-cdrom; program to create cdrom entries in the source list."
@@ -6800,7 +6917,7 @@ msgstr ""
"der Quellenliste zu erstellen."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:161
+#: sources.list.5.xml:167
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:"
@@ -6817,7 +6934,7 @@ msgstr ""
"Beachten Sie, dass dies eine unsichere Authentifizierungsmethode ist."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:172
+#: sources.list.5.xml:178
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. "
@@ -6839,7 +6956,7 @@ msgstr ""
"benutzen, werden ignoriert."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:184
+#: sources.list.5.xml:190
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. "
@@ -6852,7 +6969,7 @@ msgstr ""
"Wechseldatenträger benutzen, um Dateien mit APT umherzukopieren."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:191
+#: sources.list.5.xml:197
msgid ""
"The rsh/ssh method invokes RSH/SSH to connect to a remote host and access "
"the files as a given user. Prior configuration of rhosts or RSA keys is "
@@ -6866,12 +6983,12 @@ msgstr ""
"<command>find</command> und <command>dd</command> verwandt."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
-#: sources.list.5.xml:198
+#: sources.list.5.xml:204
msgid "adding more recognizable URI types"
msgstr "weitere zulässige URI-Typen hinzufügen"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:200
+#: sources.list.5.xml:206
msgid ""
"APT can be extended with more methods shipped in other optional packages, "
"which should follow the naming scheme <package>apt-transport-"
@@ -6890,7 +7007,7 @@ msgstr ""
"Benutzung von debtorrent verfügbar – siehe &apt-transport-debtorrent;."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:212
+#: sources.list.5.xml:218
msgid ""
"Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
"stable/main, stable/contrib, and stable/non-free."
@@ -6899,37 +7016,37 @@ msgstr ""
"jason/debian für stable/main, stable/contrib und stable/non-free."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:214
+#: sources.list.5.xml:220
#, 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:216
+#: sources.list.5.xml:222
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:217
+#: sources.list.5.xml:223
#, 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:219
+#: sources.list.5.xml:225
msgid "Source line for the above"
msgstr "Quellzeile für obiges"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:220
+#: sources.list.5.xml:226
#, 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:222
+#: sources.list.5.xml:228
msgid ""
"The first line gets package information for the architectures in "
"<literal>APT::Architectures</literal> while the second always retrieves "
@@ -6940,7 +7057,7 @@ msgstr ""
"<literal>amd64</literal> und <literal>armel</literal> holt."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:224
+#: sources.list.5.xml:230
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main\n"
@@ -6950,7 +7067,7 @@ msgstr ""
"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:227
+#: sources.list.5.xml:233
msgid ""
"Uses HTTP to access the archive at archive.debian.org, and uses only the "
"hamm/main area."
@@ -6959,13 +7076,13 @@ msgstr ""
"den hamm/main-Bereich zu benutzen."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:229
+#: sources.list.5.xml:235
#, 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:231
+#: sources.list.5.xml:237
msgid ""
"Uses FTP to access the archive at ftp.debian.org, under the debian "
"directory, and uses only the &stable-codename;/contrib area."
@@ -6975,13 +7092,13 @@ msgstr ""
"benutzen."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:233
+#: sources.list.5.xml:239
#, no-wrap
msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:235
+#: sources.list.5.xml:241
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 "
@@ -6995,19 +7112,19 @@ msgstr ""
"für beide Quellzeilen benutzt."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:239
+#: sources.list.5.xml:245
#, 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><literallayout>
-#: sources.list.5.xml:248
+#: sources.list.5.xml:254
#, no-wrap
msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:241
+#: sources.list.5.xml:247
msgid ""
"Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
"directory, and uses only files found under <filename>unstable/binary-i386</"
@@ -7027,17 +7144,17 @@ msgstr ""
"type=\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:253
+#: sources.list.5.xml:259
msgid "&apt-cache; &apt-conf;"
msgstr "&apt-cache; &apt-conf;"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-extracttemplates.1.xml:26 apt-sortpkgs.1.xml:26 apt-ftparchive.1.xml:26
+#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28
msgid "1"
msgstr "1"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-extracttemplates.1.xml:33
+#: apt-extracttemplates.1.xml:35
msgid ""
"Utility to extract <command>debconf</command> config and templates from "
"Debian packages"
@@ -7046,7 +7163,7 @@ msgstr ""
"und Schablonen von Debian-Paketen"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:39
+#: apt-extracttemplates.1.xml:41
msgid ""
"<command>apt-extracttemplates</command> will take one or more Debian package "
"files as input and write out (to a temporary directory) all associated "
@@ -7062,12 +7179,12 @@ msgstr ""
"generiert:"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:44
+#: apt-extracttemplates.1.xml:46
msgid "package version template-file config-script"
msgstr "Paket Version Schablonendatei Konfigurationsskript"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:45
+#: apt-extracttemplates.1.xml:47
msgid ""
"template-file and config-script are written to the temporary directory "
"specified by the <option>-t</option> or <option>--tempdir</option> "
@@ -7082,7 +7199,7 @@ msgstr ""
"<filename>package.config.XXXX</filename> angegeben wurde."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-extracttemplates.1.xml:58
+#: apt-extracttemplates.1.xml:60
msgid ""
"Temporary directory in which to write extracted <command>debconf</command> "
"template files and config scripts. Configuration Item: <literal>APT::"
@@ -7093,7 +7210,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::ExtractTemplates::TempDir</literal>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:75
+#: apt-extracttemplates.1.xml:77
msgid ""
"<command>apt-extracttemplates</command> returns zero on normal operation, "
"decimal 100 on error."
@@ -7102,12 +7219,12 @@ msgstr ""
"zurück, dezimal 100 bei Fehlern."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-sortpkgs.1.xml:33
+#: apt-sortpkgs.1.xml:35
msgid "Utility to sort package index files"
msgstr "Werkzeug zum Sortieren von Paketindexdateien"
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:39
+#: apt-sortpkgs.1.xml:41
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 "
@@ -7119,7 +7236,7 @@ msgstr ""
"die internen Felder jedes Datensatzes gemäß interner Sortierregeln sortieren."
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:45
+#: apt-sortpkgs.1.xml:47
msgid ""
"All output is sent to standard output; the input must be a seekable file."
msgstr ""
@@ -7127,7 +7244,7 @@ msgstr ""
"durchsuchbare Datei sein."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-sortpkgs.1.xml:54
+#: apt-sortpkgs.1.xml:56
msgid ""
"Use source index field ordering. Configuration Item: <literal>APT::"
"SortPkgs::Source</literal>."
@@ -7136,7 +7253,7 @@ msgstr ""
"SortPkgs::Source</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:68
+#: apt-sortpkgs.1.xml:70
msgid ""
"<command>apt-sortpkgs</command> returns zero on normal operation, decimal "
"100 on error."
@@ -7145,12 +7262,12 @@ msgstr ""
"dezimal 100 bei Fehlern."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-ftparchive.1.xml:33
+#: apt-ftparchive.1.xml:35
msgid "Utility to generate index files"
msgstr "Hilfsprogramm zum Generieren von Indexdateien"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:39
+#: apt-ftparchive.1.xml:41
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 "
@@ -7163,7 +7280,7 @@ msgstr ""
"Inhalts dieser Stelle generiert werden."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:43
+#: apt-ftparchive.1.xml:45
msgid ""
"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; "
"program, incorporating its entire functionality via the <literal>packages</"
@@ -7177,7 +7294,7 @@ msgstr ""
"für ein komplettes Archiv zu »skripten«."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:49
+#: apt-ftparchive.1.xml:51
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 "
@@ -7193,7 +7310,7 @@ msgstr ""
"Ausgabedateien erzeugt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:60
+#: apt-ftparchive.1.xml:62
msgid ""
"The packages command generates a package file from a directory tree. It "
"takes the given directory and recursively searches it for .deb files, "
@@ -7206,7 +7323,7 @@ msgstr ""
"Befehl entspricht etwa &dpkg-scanpackages;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:65 apt-ftparchive.1.xml:89
+#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91
msgid ""
"The option <option>--db</option> can be used to specify a binary caching DB."
msgstr ""
@@ -7214,7 +7331,7 @@ msgstr ""
"Zwischenspeichern von Programmen anzugeben."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:70
+#: apt-ftparchive.1.xml:72
msgid ""
"The <literal>sources</literal> command generates a source index file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -7227,7 +7344,7 @@ msgstr ""
"stdout ausgibt. Dieser Befehl entspricht etwa &dpkg-scansources;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:75
+#: apt-ftparchive.1.xml:77
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 "
@@ -7239,7 +7356,7 @@ msgstr ""
"ändern."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:82
+#: apt-ftparchive.1.xml:84
msgid ""
"The <literal>contents</literal> command generates a contents file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -7257,7 +7374,7 @@ msgstr ""
"getrennt in der Ausgabe."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:94
+#: apt-ftparchive.1.xml:96
msgid ""
"The <literal>release</literal> command generates a Release file from a "
"directory tree. It recursively searches the given directory for uncompressed "
@@ -7284,7 +7401,7 @@ msgstr ""
"Prüfsumme enthält."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:104
+#: apt-ftparchive.1.xml:106
msgid ""
"Values for the additional metadata fields in the Release file are taken from "
"the corresponding variables under <literal>APT::FTPArchive::Release</"
@@ -7305,7 +7422,7 @@ msgstr ""
"<literal>Description</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:117
+#: apt-ftparchive.1.xml:119
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 "
@@ -7321,7 +7438,7 @@ msgstr ""
"Verwaltung der erforderlichen Einstellungen bereitstellt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:126
+#: apt-ftparchive.1.xml:128
msgid ""
"The <literal>clean</literal> command tidies the databases used by the given "
"configuration file by removing any records that are no longer necessary."
@@ -7331,12 +7448,12 @@ msgstr ""
"Datensätze entfernt."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:132
+#: apt-ftparchive.1.xml:134
msgid "The Generate Configuration"
msgstr "Die Generate-Konfiguration"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:134
+#: apt-ftparchive.1.xml:136
msgid ""
"The <literal>generate</literal> command uses a configuration file to "
"describe the archives that are going to be generated. It follows the typical "
@@ -7354,7 +7471,7 @@ msgstr ""
"wenn die Markierung »scope« behandelt wird."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:142
+#: apt-ftparchive.1.xml:144
msgid ""
"The generate configuration has four separate sections, each described below."
msgstr ""
@@ -7362,12 +7479,12 @@ msgstr ""
"unterhalb beschrieben"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:144
+#: apt-ftparchive.1.xml:146
msgid "<literal>Dir</literal> Section"
msgstr "<literal>Dir</literal>-Abschnitt"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:146
+#: apt-ftparchive.1.xml:148
msgid ""
"The <literal>Dir</literal> section defines the standard directories needed "
"to locate the files required during the generation process. These "
@@ -7381,7 +7498,7 @@ msgstr ""
"absoluten Pfad zu bilden."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:153
+#: apt-ftparchive.1.xml:155
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 "
@@ -7392,17 +7509,17 @@ msgstr ""
"enthält."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:160
+#: apt-ftparchive.1.xml:162
msgid "Specifies the location of the override files."
msgstr "gibt den Ort der Override-Dateien an"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:165
+#: apt-ftparchive.1.xml:167
msgid "Specifies the location of the cache files."
msgstr "gibt den Ort der Zwischenspeicherdateien an"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:170
+#: apt-ftparchive.1.xml:172
msgid ""
"Specifies the location of the file list files, if the <literal>FileList</"
"literal> setting is used below."
@@ -7411,12 +7528,12 @@ msgstr ""
"unterhalb gesetzt ist."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:176
+#: apt-ftparchive.1.xml:178
msgid "<literal>Default</literal> Section"
msgstr "<literal>Default</literal>-Abschnitt"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:178
+#: apt-ftparchive.1.xml:180
msgid ""
"The <literal>Default</literal> section specifies default values, and "
"settings that control the operation of the generator. Other sections may "
@@ -7427,7 +7544,7 @@ msgstr ""
"können diese Vorgaben mit einer Einstellung pro Abschnitt überschreiben."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:184
+#: apt-ftparchive.1.xml:186
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 "
@@ -7441,7 +7558,7 @@ msgstr ""
"ist ». gzip«."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:192
+#: apt-ftparchive.1.xml:194
msgid ""
"Sets the default list of file extensions that are package files. This "
"defaults to '.deb'."
@@ -7450,7 +7567,7 @@ msgstr ""
"Vorgabe ist ».deb«."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:198
+#: apt-ftparchive.1.xml:200
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Sources files."
@@ -7459,7 +7576,7 @@ msgstr ""
"Kompression der Quelldateien steuert."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:204
+#: apt-ftparchive.1.xml:206
msgid ""
"Sets the default list of file extensions that are source files. This "
"defaults to '.dsc'."
@@ -7468,7 +7585,7 @@ msgstr ""
"Vorgabe ist ».dsc«."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:210
+#: apt-ftparchive.1.xml:212
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Contents files."
@@ -7477,7 +7594,7 @@ msgstr ""
"Kompression der Inhaltsdateien steuert."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:216
+#: apt-ftparchive.1.xml:218
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Translation-en master file."
@@ -7486,7 +7603,7 @@ msgstr ""
"Kompression der Translation-en-Hauptdatei steuert."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:222
+#: apt-ftparchive.1.xml:224
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-"
@@ -7497,7 +7614,7 @@ msgstr ""
"<literal>External-Links</literal>-Einstellung pro Abschnitt benutzt."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:229
+#: apt-ftparchive.1.xml:231
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."
@@ -7506,7 +7623,7 @@ msgstr ""
"Indexdateien werden ohne Beachtung von umask auf diese Rechte gesetzt."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:236 apt-ftparchive.1.xml:382
+#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384
msgid ""
"Specifies whether long descriptions should be included in the "
"<filename>Packages</filename> file or split out into a master "
@@ -7517,12 +7634,12 @@ msgstr ""
"Hauptdatei unterteilt werden sollen"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:242
+#: apt-ftparchive.1.xml:244
msgid "<literal>TreeDefault</literal> Section"
msgstr "<literal>TreeDefault</literal>-Abschnitt"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:244
+#: apt-ftparchive.1.xml:246
msgid ""
"Sets defaults specific to <literal>Tree</literal> sections. All of these "
"variables are substitution variables and have the strings $(DIST), "
@@ -7533,7 +7650,7 @@ msgstr ""
"$(SECTION) und $(ARCH) durch ihre jeweiligen Werte ersetzt."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:251
+#: apt-ftparchive.1.xml:253
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 "
@@ -7544,7 +7661,7 @@ msgstr ""
"Tage alle neu gebildet werden."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:258
+#: apt-ftparchive.1.xml:260
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. "
@@ -7562,7 +7679,7 @@ msgstr ""
"eine neue Datei benötigen. Die Vorgabe ist 10, die Einheiten sind Tage."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:269
+#: apt-ftparchive.1.xml:271
msgid ""
"Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/"
"$(SECTION)/binary-$(ARCH)/</filename>"
@@ -7571,7 +7688,7 @@ msgstr ""
"$(SECTION)/binary-$(ARCH)/</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:275
+#: apt-ftparchive.1.xml:277
msgid ""
"Sets the top of the source package directory tree. Defaults to <filename>"
"$(DIST)/$(SECTION)/source/</filename>"
@@ -7580,7 +7697,7 @@ msgstr ""
"$(DIST)/$(SECTION)/source/</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:281
+#: apt-ftparchive.1.xml:283
msgid ""
"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/"
"binary-$(ARCH)/Packages</filename>"
@@ -7589,7 +7706,7 @@ msgstr ""
"binary-$(ARCH)/Packages</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:287
+#: apt-ftparchive.1.xml:289
msgid ""
"Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/"
"source/Sources</filename>"
@@ -7598,7 +7715,7 @@ msgstr ""
"source/Sources</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:293
+#: apt-ftparchive.1.xml:295
msgid ""
"Sets the output Translation-en master file with the long descriptions if "
"they should be not included in the Packages file. Defaults to <filename>"
@@ -7609,7 +7726,7 @@ msgstr ""
"ist <filename>$(DIST)/$(SECTION)/i18n/Translation-en</filename>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:300
+#: apt-ftparchive.1.xml:302
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)/</"
@@ -7620,7 +7737,7 @@ msgstr ""
"<filename>$(DIST)/$(SECTION)/</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:307
+#: apt-ftparchive.1.xml:309
msgid ""
"Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/"
"Contents-$(ARCH)</filename>. If this setting causes multiple Packages files "
@@ -7635,12 +7752,12 @@ msgstr ""
"automatisch integrieren."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:316
+#: apt-ftparchive.1.xml:318
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><listitem><para>
-#: apt-ftparchive.1.xml:321
+#: apt-ftparchive.1.xml:323
msgid ""
"Sets the binary cache database to use for this section. Multiple sections "
"can share the same database."
@@ -7649,7 +7766,7 @@ msgstr ""
"Abschnitt. Mehrere Abschnitte können sich die gleiche Datenbank teilen."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:327
+#: apt-ftparchive.1.xml:329
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -7660,7 +7777,7 @@ msgstr ""
"Relativen Dateinamen wird das Archivverzeichnis vorangestellt."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:334
+#: apt-ftparchive.1.xml:336
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -7673,12 +7790,12 @@ msgstr ""
"benutzt, wenn Quellindizes verarbeitet werden."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:342
+#: apt-ftparchive.1.xml:344
msgid "<literal>Tree</literal> Section"
msgstr "<literal>Tree</literal>-Abschnitt"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:344
+#: apt-ftparchive.1.xml:346
msgid ""
"The <literal>Tree</literal> section defines a standard Debian file tree "
"which consists of a base directory, then multiple sections in that base "
@@ -7693,7 +7810,7 @@ msgstr ""
"<literal>Directory</literal>-Ersetzungsvariable definiert."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:349
+#: apt-ftparchive.1.xml:351
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 "
@@ -7707,7 +7824,7 @@ msgstr ""
"codename;</filename>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:354
+#: apt-ftparchive.1.xml:356
msgid ""
"All of the settings defined in the <literal>TreeDefault</literal> section "
"can be used in a <literal>Tree</literal> section as well as three new "
@@ -7718,7 +7835,7 @@ msgstr ""
"Variablen benutzt werden."
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt-ftparchive.1.xml:360
+#: apt-ftparchive.1.xml:362
#, no-wrap
msgid ""
"for i in Sections do \n"
@@ -7732,7 +7849,7 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:357
+#: apt-ftparchive.1.xml:359
msgid ""
"When processing a <literal>Tree</literal> section <command>apt-ftparchive</"
"command> performs an operation similar to: <placeholder type=\"programlisting"
@@ -7743,7 +7860,7 @@ msgstr ""
"<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:368
+#: apt-ftparchive.1.xml:370
msgid ""
"This is a space separated list of sections which appear under the "
"distribution; typically this is something like <literal>main contrib non-"
@@ -7754,7 +7871,7 @@ msgstr ""
"non-free</literal>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:375
+#: apt-ftparchive.1.xml:377
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 "
@@ -7765,7 +7882,7 @@ msgstr ""
"benutzt, um anzugeben, dass dieser Baum ein Quellarchiv besitzt."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:388
+#: apt-ftparchive.1.xml:390
msgid ""
"Sets the binary override file. The override file contains section, priority "
"and maintainer address information."
@@ -7774,7 +7891,7 @@ msgstr ""
"Priorität und Adressinformationen des Betreuers."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:394
+#: apt-ftparchive.1.xml:396
msgid ""
"Sets the source override file. The override file contains section "
"information."
@@ -7783,22 +7900,22 @@ msgstr ""
"Abschnittsinformationen."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:400 apt-ftparchive.1.xml:446
+#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448
msgid "Sets the binary extra override file."
msgstr "setzt die zusätzliche Programm-Override-Datei"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:405 apt-ftparchive.1.xml:451
+#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453
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:410
+#: apt-ftparchive.1.xml:412
msgid "<literal>BinDirectory</literal> Section"
msgstr "<literal>BinDirectory</literal>-Abschnitt"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:412
+#: apt-ftparchive.1.xml:414
msgid ""
"The <literal>bindirectory</literal> section defines a binary directory tree "
"with no special structure. The scope tag specifies the location of the "
@@ -7813,12 +7930,12 @@ msgstr ""
"<literal>Abschnitt</literal><literal>Architektur</literal> ähnlich."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:420
+#: apt-ftparchive.1.xml:422
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:425
+#: apt-ftparchive.1.xml:427
msgid ""
"Sets the Sources file output. At least one of <literal>Packages</literal> or "
"<literal>Sources</literal> is required."
@@ -7827,42 +7944,42 @@ msgstr ""
"<literal>Sources</literal> ist erforderlich."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:431
+#: apt-ftparchive.1.xml:433
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:436
+#: apt-ftparchive.1.xml:438
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:441
+#: apt-ftparchive.1.xml:443
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:456
+#: apt-ftparchive.1.xml:458
msgid "Sets the cache DB."
msgstr "setzt die Zwischenspeicherdatenbank"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:461
+#: apt-ftparchive.1.xml:463
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><listitem><para>
-#: apt-ftparchive.1.xml:466
+#: apt-ftparchive.1.xml:468
msgid "Specifies the file list file."
msgstr "gibt die Dateilistendatei an"
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:473
+#: apt-ftparchive.1.xml:475
msgid "The Binary Override File"
msgstr "Die Programm-Override-Datei"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:474
+#: apt-ftparchive.1.xml:476
msgid ""
"The binary override file is fully compatible with &dpkg-scanpackages;. It "
"contains four fields separated by spaces. The first field is the package "
@@ -7877,19 +7994,19 @@ msgstr ""
"und das letzte Feld ist das Betreuerumsetzungsfeld."
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:480
+#: apt-ftparchive.1.xml:482
#, no-wrap
msgid "old [// oldn]* => new"
msgstr "alt [// oldn]* => neu"
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:482
+#: apt-ftparchive.1.xml:484
#, no-wrap
msgid "new"
msgstr "neu"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:479
+#: apt-ftparchive.1.xml:481
msgid ""
"The general form of the maintainer field is: <placeholder type="
"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" "
@@ -7906,12 +8023,12 @@ msgstr ""
"bedingungslos."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:490
+#: apt-ftparchive.1.xml:492
msgid "The Source Override File"
msgstr "Die Quell-Override-Datei"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:492
+#: apt-ftparchive.1.xml:494
msgid ""
"The source override file is fully compatible with &dpkg-scansources;. It "
"contains two fields separated by spaces. The first field is the source "
@@ -7922,12 +8039,12 @@ msgstr ""
"Quellpaketname, das zweite ist der Abschnitt, dem er zugeordnet ist."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:497
+#: apt-ftparchive.1.xml:499
msgid "The Extra Override File"
msgstr "Die zusätzlich Override-Datei"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:499
+#: apt-ftparchive.1.xml:501
msgid ""
"The extra override file allows any arbitrary tag to be added or replaced in "
"the output. It has three columns, the first is the package, the second is "
@@ -7939,7 +8056,7 @@ msgstr ""
"ist der neue Wert."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:510
+#: apt-ftparchive.1.xml:512
msgid ""
"Generate the given checksum. These options default to on, when turned off "
"the generated index files will not have the checksum fields where possible. "
@@ -7964,7 +8081,7 @@ msgstr ""
"literal> sein kann."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:521
+#: apt-ftparchive.1.xml:523
msgid ""
"Use a binary caching DB. This has no effect on the generate command. "
"Configuration Item: <literal>APT::FTPArchive::DB</literal>."
@@ -7974,7 +8091,7 @@ msgstr ""
"DB</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:527
+#: apt-ftparchive.1.xml:529
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 "
@@ -7988,7 +8105,7 @@ msgstr ""
"Konfigurationselement: <literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:535
+#: apt-ftparchive.1.xml:537
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 "
@@ -8002,7 +8119,7 @@ msgstr ""
"DeLinkAct</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:543
+#: apt-ftparchive.1.xml:545
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 "
@@ -8018,7 +8135,7 @@ msgstr ""
"Konfigurationselement: <literal>APT::FTPArchive::Contents</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:553
+#: apt-ftparchive.1.xml:555
msgid ""
"Select the source override file to use with the <literal>sources</literal> "
"command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
@@ -8029,7 +8146,7 @@ msgstr ""
"SourceOverride</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:559
+#: apt-ftparchive.1.xml:561
msgid ""
"Make the caching databases read only. Configuration Item: <literal>APT::"
"FTPArchive::ReadOnlyDB</literal>."
@@ -8038,7 +8155,7 @@ msgstr ""
"<literal>APT::FTPArchive::ReadOnlyDB</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:564
+#: apt-ftparchive.1.xml:566
msgid ""
"Accept in the <literal>packages</literal> and <literal>contents</literal> "
"commands only package files matching <literal>*_arch.deb</literal> or "
@@ -8052,7 +8169,7 @@ msgstr ""
"FTPArchive::Architecture</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:572
+#: apt-ftparchive.1.xml:574
msgid ""
"&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
"packages are recompiled and/or republished with the same version again, this "
@@ -8076,7 +8193,7 @@ msgstr ""
"haben sollte und all diese zusätzlichen Prüfungen daher nutzlos sind."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:584
+#: apt-ftparchive.1.xml:586
msgid ""
"This configuration option defaults to \"<literal>true</literal>\" and should "
"only be set to <literal>\"false\"</literal> if the Archive generated with "
@@ -8092,13 +8209,13 @@ msgstr ""
"werden kann."
#. type: Content of: <refentry><refsect1><para><programlisting>
-#: apt-ftparchive.1.xml:602
+#: apt-ftparchive.1.xml:604
#, 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:598
+#: apt-ftparchive.1.xml:600
msgid ""
"To create a compressed Packages file for a directory containing binary "
"packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@ -8108,7 +8225,7 @@ msgstr ""
">"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:612
+#: apt-ftparchive.1.xml:614
msgid ""
"<command>apt-ftparchive</command> returns zero on normal operation, decimal "
"100 on error."
diff --git a/doc/po/es.po b/doc/po/es.po
index 6b2e77914..37f0512ac 100644
--- a/doc/po/es.po
+++ b/doc/po/es.po
@@ -38,7 +38,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.9.7.1\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-06-13 13:46+0300\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-07-14 12:21+0200\n"
"Last-Translator: Omar Campagne <ocampagne@gmail.com>\n"
"Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
@@ -699,35 +699,35 @@ msgstr ""
"473041FA --> <!ENTITY synopsis-keyid \"keyid\">"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-get.8.xml:26 apt-cache.8.xml:26 apt-key.8.xml:25 apt-mark.8.xml:26
-#: apt-secure.8.xml:25 apt-cdrom.8.xml:25 apt-config.8.xml:26
+#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28
+#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28
msgid "8"
msgstr "8"
#. type: Content of: <refentry><refmeta><refmiscinfo>
-#: apt-get.8.xml:27 apt-cache.8.xml:27 apt-key.8.xml:26 apt-mark.8.xml:27
-#: apt-secure.8.xml:26 apt-cdrom.8.xml:26 apt-config.8.xml:27
-#: apt.conf.5.xml:32 apt_preferences.5.xml:26 sources.list.5.xml:27
-#: apt-extracttemplates.1.xml:27 apt-sortpkgs.1.xml:27 apt-ftparchive.1.xml:27
+#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29
+#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29
+#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29
+#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29
msgid "APT"
msgstr "APT"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-get.8.xml:33
+#: apt-get.8.xml:35
msgid "APT package handling utility -- command-line interface"
msgstr ""
"Herramienta de gestión de paquetes APT -- interfaz para la línea de órdenes"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:38 apt-cache.8.xml:38 apt-key.8.xml:37 apt-mark.8.xml:38
-#: apt-secure.8.xml:50 apt-cdrom.8.xml:37 apt-config.8.xml:38
-#: apt.conf.5.xml:41 apt_preferences.5.xml:36 sources.list.5.xml:36
-#: apt-extracttemplates.1.xml:38 apt-sortpkgs.1.xml:38 apt-ftparchive.1.xml:38
+#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40
+#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40
+#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38
+#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40
msgid "Description"
msgstr "Descripción"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:39
+#: apt-get.8.xml:41
msgid ""
"<command>apt-get</command> is the command-line tool for handling packages, "
"and may be considered the user's \"back-end\" to other tools using the APT "
@@ -741,8 +741,8 @@ msgstr ""
"&synaptic; y &wajig;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:44 apt-cache.8.xml:44 apt-cdrom.8.xml:51 apt-config.8.xml:44
-#: apt-ftparchive.1.xml:54
+#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46
+#: apt-ftparchive.1.xml:56
msgid ""
"Unless the <option>-h</option>, or <option>--help</option> option is given, "
"one of the commands below must be present."
@@ -751,7 +751,7 @@ msgstr ""
"una de las siguientes órdenes debe estar presente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:49
+#: apt-get.8.xml:51
msgid ""
"<literal>update</literal> is used to resynchronize the package index files "
"from their sources. The indexes of available packages are fetched from the "
@@ -775,7 +775,7 @@ msgstr ""
"tamaño de los archivos de paquete."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:61
+#: apt-get.8.xml:63
msgid ""
"<literal>upgrade</literal> is used to install the newest versions of all "
"packages currently installed on the system from the sources enumerated in "
@@ -800,7 +800,7 @@ msgstr ""
"hay nuevas versiones disponibles."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:74
+#: apt-get.8.xml:76
msgid ""
"<literal>dist-upgrade</literal> in addition to performing the function of "
"<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@ -825,7 +825,7 @@ msgstr ""
"invalidar este comportamiento para paquetes individuales."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:87
+#: apt-get.8.xml:89
msgid ""
"<literal>dselect-upgrade</literal> is used in conjunction with the "
"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@ -842,7 +842,7 @@ msgstr ""
"paquetes antiguos e instalar las nuevas versiones)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:98
+#: apt-get.8.xml:100
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 "
@@ -872,7 +872,7 @@ msgstr ""
"de apt-get."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:116
+#: apt-get.8.xml:118
msgid ""
"A specific version of a package can be selected for installation by "
"following the package name with an equals and the version of the package to "
@@ -890,7 +890,7 @@ msgstr ""
"(stable, testing, unstable)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:123
+#: apt-get.8.xml:125
msgid ""
"Both of the version selection mechanisms can downgrade packages and must be "
"used with care."
@@ -899,7 +899,7 @@ msgstr ""
"anterior de los paquetes y se debe utilizar con precaución."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:126
+#: apt-get.8.xml:128
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. "
@@ -919,7 +919,7 @@ msgstr ""
"instalarán."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:137
+#: apt-get.8.xml:139
msgid ""
"Finally, the &apt-preferences; mechanism allows you to create an alternative "
"installation policy for individual packages."
@@ -928,7 +928,7 @@ msgstr ""
"paquetes individuales."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:141
+#: apt-get.8.xml:143
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 "
@@ -948,7 +948,7 @@ msgstr ""
"«$», o bien crear una expresión regular más específica."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:151
+#: apt-get.8.xml:153
msgid ""
"<literal>remove</literal> is identical to <literal>install</literal> except "
"that packages are removed instead of installed. Note that removing a package "
@@ -964,7 +964,7 @@ msgstr ""
"en cuestión será instalado en vez de eliminado."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:159
+#: apt-get.8.xml:161
msgid ""
"<literal>purge</literal> is identical to <literal>remove</literal> except "
"that packages are removed and purged (any configuration files are deleted "
@@ -975,7 +975,7 @@ msgstr ""
"también cualquier fichero de configuración)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:164
+#: apt-get.8.xml:166
msgid ""
"<literal>source</literal> causes <command>apt-get</command> to fetch source "
"packages. APT will examine the available packages to decide which source "
@@ -994,7 +994,7 @@ msgstr ""
"release</literal>, si es posible."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:172
+#: apt-get.8.xml:174
msgid ""
"Source packages are tracked separately from binary packages via <literal>deb-"
"src</literal> lines in the &sources-list; file. This means that you will "
@@ -1010,7 +1010,7 @@ msgstr ""
"ninguna."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:178
+#: apt-get.8.xml:180
msgid ""
"If the <option>--compile</option> option is specified then the package will "
"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
@@ -1025,7 +1025,7 @@ msgstr ""
"paquete fuente no se desempaquetará."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:185
+#: apt-get.8.xml:187
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 "
@@ -1040,7 +1040,7 @@ msgstr ""
"activando implícitamente la opción <literal>APT::Get::Only-Source</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:191
+#: apt-get.8.xml:193
msgid ""
"Note that source packages are not installed and tracked in the "
"<command>dpkg</command> database like binary packages; they are simply "
@@ -1051,7 +1051,7 @@ msgstr ""
"se descargan al directorio actual en la forma de archivos tar de fuentes."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:197
+#: apt-get.8.xml:199
msgid ""
"<literal>build-dep</literal> causes apt-get to install/remove packages in an "
"attempt to satisfy the build dependencies for a source package. By default "
@@ -1066,7 +1066,7 @@ msgstr ""
"<option>--host-architecture</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:204
+#: apt-get.8.xml:206
msgid ""
"<literal>check</literal> is a diagnostic tool; it updates the package cache "
"and checks for broken dependencies."
@@ -1075,7 +1075,7 @@ msgstr ""
"caché de paquetes y revisa la existencia de dependencias rotas."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:209
+#: apt-get.8.xml:211
msgid ""
"<literal>download</literal> will download the given binary package into the "
"current directory."
@@ -1084,7 +1084,7 @@ msgstr ""
"directorio actual."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:215
+#: apt-get.8.xml:217
msgid ""
"<literal>clean</literal> clears out the local repository of retrieved "
"package files. It removes everything but the lock file from "
@@ -1103,7 +1103,7 @@ msgstr ""
"literal> de vez en cuando para liberar algo de espacio en disco."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:225
+#: apt-get.8.xml:227
msgid ""
"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
"local repository of retrieved package files. The difference is that it only "
@@ -1122,7 +1122,7 @@ msgstr ""
"desactivada impedirá que se borren los paquetes instalados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:235
+#: apt-get.8.xml:237
msgid ""
"<literal>autoremove</literal> is used to remove packages that were "
"automatically installed to satisfy dependencies for other packages and are "
@@ -1133,7 +1133,7 @@ msgstr ""
"ya no son necesarios."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:240
+#: apt-get.8.xml:242
msgid ""
"<literal>changelog</literal> downloads a package changelog and displays it "
"through <command>sensible-pager</command>. The server name and base "
@@ -1157,14 +1157,14 @@ msgstr ""
"option>."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:258 apt-cache.8.xml:248 apt-mark.8.xml:108
-#: apt-config.8.xml:84 apt-extracttemplates.1.xml:52 apt-sortpkgs.1.xml:48
-#: apt-ftparchive.1.xml:504
+#: apt-get.8.xml:260 apt-cache.8.xml:250 apt-mark.8.xml:110
+#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50
+#: apt-ftparchive.1.xml:506
msgid "options"
msgstr "Opciones"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:263
+#: apt-get.8.xml:265
msgid ""
"Do not consider recommended packages as a dependency for installing. "
"Configuration Item: <literal>APT::Install-Recommends</literal>."
@@ -1173,7 +1173,7 @@ msgstr ""
"de configuración: <literal>APT::Install-Recommends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:268
+#: apt-get.8.xml:270
msgid ""
"Consider suggested packages as a dependency for installing. Configuration "
"Item: <literal>APT::Install-Suggests</literal>."
@@ -1182,7 +1182,7 @@ msgstr ""
"instalar. Opción de configuración: <literal>APT::Install-Suggests</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:273
+#: apt-get.8.xml:275
msgid ""
"Download only; package files are only retrieved, not unpacked or installed. "
"Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@ -1191,7 +1191,7 @@ msgstr ""
"instala. Opción de configuración: <literal>APT::Get::Download-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:278
+#: apt-get.8.xml:280
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 "
@@ -1219,7 +1219,7 @@ msgstr ""
"<literal>APT::Get::Fix-Broken</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:293
+#: apt-get.8.xml:295
msgid ""
"Ignore missing packages; if packages cannot be retrieved or fail the "
"integrity check after retrieval (corrupted package files), hold back those "
@@ -1239,7 +1239,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:304
+#: apt-get.8.xml:306
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 "
@@ -1251,7 +1251,7 @@ msgstr ""
"<literal>APT::Get::Download</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:311
+#: apt-get.8.xml:313
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 "
@@ -1271,7 +1271,7 @@ msgstr ""
"no espera. Opción de configuración: <literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:326
+#: apt-get.8.xml:328
msgid ""
"No action; perform a simulation of events that would occur but do not "
"actually change the system. Configuration Item: <literal>APT::Get::"
@@ -1282,7 +1282,7 @@ msgstr ""
"Simulate</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:330
+#: apt-get.8.xml:332
msgid ""
"Simulated runs performed as a user will automatically deactivate locking "
"(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::"
@@ -1301,7 +1301,7 @@ msgstr ""
"acciones sin avisos de <literal>apt-get</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:338
+#: apt-get.8.xml:340
msgid ""
"Simulated runs print out a series of lines, each representing a "
"<command>dpkg</command> operation: configure (<literal>Conf</literal>), "
@@ -1317,7 +1317,7 @@ msgstr ""
"(poco frecuente)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:346
+#: apt-get.8.xml:348
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 "
@@ -1333,7 +1333,7 @@ msgstr ""
"<literal>APT::Get::Assume-Yes</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:354
+#: apt-get.8.xml:356
msgid ""
"Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::"
"Assume-No</literal>."
@@ -1342,7 +1342,7 @@ msgstr ""
"Get::Assume-No</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:359
+#: apt-get.8.xml:361
msgid ""
"Show upgraded packages; print out a list of all packages that are to be "
"upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@ -1351,7 +1351,7 @@ msgstr ""
"<literal>APT::Get::Show-Upgraded</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:365
+#: apt-get.8.xml:367
msgid ""
"Show full versions for upgraded and installed packages. Configuration Item: "
"<literal>APT::Get::Show-Versions</literal>."
@@ -1360,7 +1360,7 @@ msgstr ""
"Opción de configuración: <literal>APT::Get::Show-Versions</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:371
+#: apt-get.8.xml:373
msgid ""
"This option controls the architecture packages are built for by <command>apt-"
"get source --compile</command> and how cross-builddependencies are "
@@ -1377,7 +1377,7 @@ msgstr ""
"configuración: <literal>APT::Get::Host-Architecture</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:381
+#: apt-get.8.xml:383
msgid ""
"Compile source packages after downloading them. Configuration Item: "
"<literal>APT::Get::Compile</literal>."
@@ -1386,7 +1386,7 @@ msgstr ""
"<literal>APT::Get::Compile</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:386
+#: apt-get.8.xml:388
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 "
@@ -1400,7 +1400,19 @@ msgstr ""
"Ignore-Hold</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:393
+#: apt-get.8.xml:395
+msgid ""
+"Allow installing new packages when used in conjunction with "
+"<literal>upgrade</literal>. This is useful if the update of a installed "
+"package requires new dependencies to be installed. Instead of holding the "
+"package back <literal>upgrade</literal> will upgrade the package and install "
+"the new dependencies. Note that <literal>upgrade</literal> with this option "
+"will never remove packages, only allow adding new ones. Configuration Item: "
+"<literal>APT::Get::Upgrade-Allow-New</literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:407
msgid ""
"Do not upgrade packages; when used in conjunction with <literal>install</"
"literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@ -1413,7 +1425,7 @@ msgstr ""
"configuración: <literal>APT::Get::Upgrade</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:400
+#: apt-get.8.xml:414
msgid ""
"Do not install new packages; when used in conjunction with <literal>install</"
"literal>, <literal>only-upgrade</literal> will install upgrades for already "
@@ -1427,7 +1439,7 @@ msgstr ""
"<literal>APT::Get::Only-Upgrade</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:408
+#: apt-get.8.xml:422
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 "
@@ -1443,7 +1455,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:416
+#: apt-get.8.xml:430
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 "
@@ -1465,7 +1477,7 @@ msgstr ""
"<literal>APT::Get::Print-URIs</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:427
+#: apt-get.8.xml:441
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. "
@@ -1479,7 +1491,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:435
+#: apt-get.8.xml:449
msgid ""
"Re-install packages that are already installed and at the newest version. "
"Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@ -1489,7 +1501,7 @@ msgstr ""
"ReInstall</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:440
+#: apt-get.8.xml:454
msgid ""
"This option is on by default; use <literal>--no-list-cleanup</literal> to "
"turn it off. When it is on, <command>apt-get</command> will automatically "
@@ -1507,7 +1519,7 @@ msgstr ""
"<literal>APT::Get::List-Cleanup</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:450
+#: apt-get.8.xml:464
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 "
@@ -1531,7 +1543,7 @@ msgstr ""
"también la página del manual de &apt-preferences;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:465
+#: apt-get.8.xml:479
msgid ""
"Only perform operations that are 'trivial'. Logically this can be considered "
"related to <option>--assume-yes</option>; where <option>--assume-yes</"
@@ -1545,7 +1557,7 @@ msgstr ""
"<literal>APT::Get::Trivial-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:472
+#: apt-get.8.xml:486
msgid ""
"If any packages are to be removed apt-get immediately aborts without "
"prompting. Configuration Item: <literal>APT::Get::Remove</literal>."
@@ -1554,7 +1566,7 @@ msgstr ""
"preguntar. Opción de configuración: <literal>APT::Get::Remove</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:478
+#: apt-get.8.xml:492
msgid ""
"If the command is either <literal>install</literal> or <literal>remove</"
"literal>, then this option acts like running the <literal>autoremove</"
@@ -1567,7 +1579,7 @@ msgstr ""
"Get::AutomaticRemove</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:485
+#: apt-get.8.xml:499
msgid ""
"Only has meaning for the <literal>source</literal> and <literal>build-dep</"
"literal> commands. Indicates that the given source names are not to be "
@@ -1587,7 +1599,7 @@ msgstr ""
"literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:496
+#: apt-get.8.xml:510
msgid ""
"Download only the diff, dsc, or tar file of a source archive. Configuration "
"Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</"
@@ -1598,7 +1610,7 @@ msgstr ""
"Dsc-Only</literal> y <literal>APT::Get::Tar-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:502
+#: apt-get.8.xml:516
msgid ""
"Only process architecture-dependent build-dependencies. Configuration Item: "
"<literal>APT::Get::Arch-Only</literal>."
@@ -1607,7 +1619,7 @@ msgstr ""
"arquitectura. Opción de configuración: <literal>APT::Get::Arch-Only</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:507
+#: apt-get.8.xml:521
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::"
@@ -1617,23 +1629,33 @@ msgstr ""
"sobre ello. Esto es útil para herramientas como pbuilder. Opción de "
"configuración: <literal>APT::Get::AllowUnauthenticated</literal>."
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:527
+msgid ""
+"Show user friendly progress information in the terminal window when packages "
+"are installed, upgraded or removed. For a machine parsable version of this "
+"data see README.progress-reporting in the apt doc directory. Configuration "
+"Item: <literal>DpkgPM::Progress</literal> and <literal>Dpkg::Progress-Fancy</"
+"literal>."
+msgstr ""
+
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125
-#: apt.conf.5.xml:1167 apt_preferences.5.xml:698
+#: apt-get.8.xml:540 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127
+#: apt.conf.5.xml:1200 apt_preferences.5.xml:700
msgid "Files"
msgstr "Ficheros"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131
-#: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109
-#: apt.conf.5.xml:1173 apt_preferences.5.xml:705 sources.list.5.xml:252
-#: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63
-#: apt-ftparchive.1.xml:607
+#: apt-get.8.xml:550 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133
+#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111
+#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:258
+#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65
+#: apt-ftparchive.1.xml:609
msgid "See Also"
msgstr "Véase también"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:529
+#: apt-get.8.xml:551
msgid ""
"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@ -1644,14 +1666,14 @@ msgstr ""
"preferences;, el Cómo de APT."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:534 apt-cache.8.xml:355 apt-mark.8.xml:135
-#: apt-cdrom.8.xml:149 apt-config.8.xml:114 apt-extracttemplates.1.xml:74
-#: apt-sortpkgs.1.xml:67 apt-ftparchive.1.xml:611
+#: apt-get.8.xml:556 apt-cache.8.xml:357 apt-mark.8.xml:137
+#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76
+#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613
msgid "Diagnostics"
msgstr "Diagnósticos"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:535
+#: apt-get.8.xml:557
msgid ""
"<command>apt-get</command> returns zero on normal operation, decimal 100 on "
"error."
@@ -1660,12 +1682,12 @@ msgstr ""
"100 en caso de error."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cache.8.xml:33
+#: apt-cache.8.xml:35
msgid "query the APT cache"
msgstr "Realiza consultas al caché de APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:39
+#: apt-cache.8.xml:41
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 "
@@ -1678,7 +1700,7 @@ msgstr ""
"genera información interesante a partir de los metadatos del paquete."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:49
+#: apt-cache.8.xml:51
msgid ""
"<literal>gencaches</literal> creates APT's package cache. This is done "
"implicitly by all commands needing this cache if it is missing or outdated."
@@ -1688,14 +1710,14 @@ msgstr ""
"si está obsoleta."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:53 apt-cache.8.xml:142 apt-cache.8.xml:163
-#: apt-cache.8.xml:185 apt-cache.8.xml:190 apt-cache.8.xml:206
-#: apt-cache.8.xml:224 apt-cache.8.xml:236
+#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165
+#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208
+#: apt-cache.8.xml:226 apt-cache.8.xml:238
msgid "&synopsis-pkg;"
msgstr "&synopsis-pkg;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:54
+#: apt-cache.8.xml:56
msgid ""
"<literal>showpkg</literal> displays information about the packages listed on "
"the command line. Remaining arguments are package names. The available "
@@ -1719,7 +1741,7 @@ msgstr ""
"siguiente:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-cache.8.xml:66
+#: apt-cache.8.xml:68
#, no-wrap
msgid ""
"Package: libreadline2\n"
@@ -1745,7 +1767,7 @@ msgstr ""
"Reverse Provides: \n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:78
+#: apt-cache.8.xml:80
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, "
@@ -1764,7 +1786,7 @@ msgstr ""
"salida lo mejor es consultar el código fuente de apt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:87
+#: apt-cache.8.xml:89
msgid ""
"<literal>stats</literal> displays some statistics about the cache. No "
"further arguments are expected. Statistics reported are:"
@@ -1773,7 +1795,7 @@ msgstr ""
"necesita ningún argumento adicional. Las estadísticas que muestra son:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:90
+#: apt-cache.8.xml:92
msgid ""
"<literal>Total package names</literal> is the number of package names found "
"in the cache."
@@ -1782,7 +1804,7 @@ msgstr ""
"encontrados en la caché."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:94
+#: apt-cache.8.xml:96
msgid ""
"<literal>Normal packages</literal> is the number of regular, ordinary "
"package names; these are packages that bear a one-to-one correspondence "
@@ -1795,7 +1817,7 @@ msgstr ""
"dependencias. La mayoría de los paquetes pertenecen a este grupo."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:100
+#: apt-cache.8.xml:102
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 "
@@ -1812,7 +1834,7 @@ msgstr ""
"agent», pero no hay ningún paquete que se llame «mail-transport-agent»."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:108
+#: apt-cache.8.xml:110
msgid ""
"<literal>Single virtual packages</literal> is the number of packages with "
"only one package providing a particular virtual package. For example, in the "
@@ -1825,7 +1847,7 @@ msgstr ""
"paquete, xless, proporciona «X11-text-viewer»."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:114
+#: apt-cache.8.xml:116
msgid ""
"<literal>Mixed virtual packages</literal> is the number of packages that "
"either provide a particular virtual package or have the virtual package name "
@@ -1839,7 +1861,7 @@ msgstr ""
"paquete debconf-tiny."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:121
+#: apt-cache.8.xml:123
msgid ""
"<literal>Missing</literal> is the number of package names that were "
"referenced in a dependency but were not provided by any package. Missing "
@@ -1855,7 +1877,7 @@ msgstr ""
"«Conflicts» o «Breaks» de la descripción de los paquetes."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:128
+#: apt-cache.8.xml:130
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 "
@@ -1870,7 +1892,7 @@ msgstr ""
"considerablemente mayor que el número total de paquetes."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:135
+#: apt-cache.8.xml:137
msgid ""
"<literal>Total dependencies</literal> is the number of dependency "
"relationships claimed by all of the packages in the cache."
@@ -1879,7 +1901,7 @@ msgstr ""
"dependencia de todos los paquetes de la caché."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:143
+#: apt-cache.8.xml:145
msgid ""
"<literal>showsrc</literal> displays all the source package records that "
"match the given package names. All versions are shown, as well as all "
@@ -1891,7 +1913,7 @@ msgstr ""
"son binarios."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:149
+#: apt-cache.8.xml:151
msgid ""
"<literal>dump</literal> shows a short listing of every package in the cache. "
"It is primarily for debugging."
@@ -1900,7 +1922,7 @@ msgstr ""
"la caché. Fundamentalmente para depuración."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:154
+#: apt-cache.8.xml:156
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."
@@ -1910,7 +1932,7 @@ msgstr ""
"además, la usa el método &dselect;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:159
+#: apt-cache.8.xml:161
msgid ""
"<literal>unmet</literal> displays a summary of all unmet dependencies in the "
"package cache."
@@ -1919,7 +1941,7 @@ msgstr ""
"satisfechas en la caché de paquetes."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:164
+#: apt-cache.8.xml:166
msgid ""
"<literal>show</literal> performs a function similar to <command>dpkg --print-"
"avail</command>; it displays the package records for the named packages."
@@ -1928,12 +1950,12 @@ msgstr ""
"avail</command>, muestra los campos del paquete para los paquetes nombrados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:169
+#: apt-cache.8.xml:171
msgid "&synopsis-regex;"
msgstr "&synopsis-regex;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:170
+#: apt-cache.8.xml:172
msgid ""
"<literal>search</literal> performs a full text search on all available "
"package lists for the POSIX regex pattern given, see &regex;. It searches "
@@ -1955,7 +1977,7 @@ msgstr ""
"de los paquetes, no en la descripción larga."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:181
+#: apt-cache.8.xml:183
msgid ""
"Separate arguments can be used to specify multiple search patterns that are "
"and'ed together."
@@ -1964,7 +1986,7 @@ msgstr ""
"búsqueda que se juntarán mediante una «Y lógica»."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:186
+#: apt-cache.8.xml:188
msgid ""
"<literal>depends</literal> shows a listing of each dependency a package has "
"and all the possible other packages that can fulfill that dependency."
@@ -1973,7 +1995,7 @@ msgstr ""
"paquete y de todos los demás paquetes que la pueden satisfacer."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:191
+#: apt-cache.8.xml:193
msgid ""
"<literal>rdepends</literal> shows a listing of each reverse dependency a "
"package has."
@@ -1981,12 +2003,12 @@ msgstr ""
"<literal>rdepends</literal> muestra las dependencias inversas de un paquete."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:195
+#: apt-cache.8.xml:197
msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:196
+#: apt-cache.8.xml:198
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 "
@@ -2002,7 +2024,7 @@ msgstr ""
"generate</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:201
+#: apt-cache.8.xml:203
msgid ""
"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 "
@@ -2013,7 +2035,7 @@ msgstr ""
"virtuales también aparecen en la lista generada."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:207
+#: apt-cache.8.xml:209
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."
@@ -2034,7 +2056,7 @@ msgstr ""
"active la opción <literal>APT::Cache::GivenOnly</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:216
+#: apt-cache.8.xml:218
msgid ""
"The resulting nodes will have several shapes; normal packages are boxes, "
"pure virtual packages are triangles, mixed virtual packages are diamonds, "
@@ -2049,12 +2071,12 @@ msgstr ""
"líneas verdes son conflictos."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:221
+#: apt-cache.8.xml:223
msgid "Caution, dotty cannot graph larger sets of packages."
msgstr "Tenga cuidado, dotty no puede dibujar grandes conjuntos de paquetes."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:225
+#: apt-cache.8.xml:227
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>."
@@ -2064,12 +2086,12 @@ msgstr ""
"ulink>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:229
+#: apt-cache.8.xml:231
msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:230
+#: apt-cache.8.xml:232
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 "
@@ -2082,7 +2104,7 @@ msgstr ""
"detallada acerca de la prioridad de selección del paquete nombrado."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:237
+#: apt-cache.8.xml:239
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 "
@@ -2101,7 +2123,7 @@ msgstr ""
"paquetes (<literal>APT::Architecture</literal>)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:253
+#: apt-cache.8.xml:255
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::"
@@ -2112,7 +2134,7 @@ msgstr ""
"configuración: <literal>Dir::Cache::pkgcache</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:259
+#: apt-cache.8.xml:261
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 "
@@ -2127,7 +2149,7 @@ msgstr ""
"Opción de configuración: <literal>Dir::Cache::srcpkgcache</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:267
+#: apt-cache.8.xml:269
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 "
@@ -2141,7 +2163,7 @@ msgstr ""
"configuración: <literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:274
+#: apt-cache.8.xml:276
msgid ""
"Print only important dependencies; for use with <literal>unmet</literal> and "
"<literal>depends</literal>. Causes only Depends and Pre-Depends relations to "
@@ -2153,7 +2175,7 @@ msgstr ""
"Cache::Important</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:288
+#: apt-cache.8.xml:290
msgid ""
"Per default the <literal>depends</literal> and <literal>rdepends</literal> "
"print all dependencies. This can be tweaked with these flags which will omit "
@@ -2169,7 +2191,7 @@ msgstr ""
"<literal>APT::Cache::ShowRecommends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:295
+#: apt-cache.8.xml:297
msgid ""
"Print full package records when searching. Configuration Item: "
"<literal>APT::Cache::ShowFull</literal>."
@@ -2178,7 +2200,7 @@ msgstr ""
"Opción de configuración: <literal>APT::Cache::ShowFull</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:300
+#: apt-cache.8.xml:302
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-"
@@ -2195,7 +2217,7 @@ msgstr ""
"configuración: <literal>APT::Cache::AllVersions</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:309
+#: apt-cache.8.xml:311
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</"
@@ -2207,7 +2229,7 @@ msgstr ""
"Cache::Generate</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:315
+#: apt-cache.8.xml:317
msgid ""
"Only search on the package names, not the long descriptions. Configuration "
"Item: <literal>APT::Cache::NamesOnly</literal>."
@@ -2216,7 +2238,7 @@ msgstr ""
"Opción de configuración: <literal>APT::Cache::NamesOnly</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:320
+#: apt-cache.8.xml:322
msgid ""
"Make <literal>pkgnames</literal> print all names, including virtual packages "
"and missing dependencies. Configuration Item: <literal>APT::Cache::"
@@ -2227,7 +2249,7 @@ msgstr ""
"configuración: <literal>APT::Cache::AllNames</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:326
+#: apt-cache.8.xml:328
msgid ""
"Make <literal>depends</literal> and <literal>rdepends</literal> recursive so "
"that all packages mentioned are printed once. Configuration Item: "
@@ -2238,7 +2260,7 @@ msgstr ""
"vez. Opción de configuración <literal>APT::Cache::RecurseDepends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:333
+#: apt-cache.8.xml:335
msgid ""
"Limit the output of <literal>depends</literal> and <literal>rdepends</"
"literal> to packages which are currently installed. Configuration Item: "
@@ -2249,12 +2271,12 @@ msgstr ""
"Cache::Installed</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:351
+#: apt-cache.8.xml:353
msgid "&apt-conf;, &sources-list;, &apt-get;"
msgstr "&apt-conf;, &sources-list;, &apt-get;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:356
+#: apt-cache.8.xml:358
msgid ""
"<command>apt-cache</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -2263,12 +2285,12 @@ msgstr ""
"valor 100 en caso de error."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-key.8.xml:32
+#: apt-key.8.xml:34
msgid "APT key management utility"
msgstr "Herramienta para gestionar las claves de APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:39
+#: apt-key.8.xml:41
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 "
@@ -2279,12 +2301,12 @@ msgstr ""
"claves se consideran de confianza."
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:45
+#: apt-key.8.xml:47
msgid "Commands"
msgstr "Órdenes"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:50
+#: apt-key.8.xml:52
msgid ""
"Add a new key to the list of trusted keys. The key is read from the "
"filename given with the parameter &synopsis-param-filename; or if the "
@@ -2295,32 +2317,32 @@ msgstr ""
"entrada estándar si el nombre de fichero se define como <literal>-</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:63
+#: apt-key.8.xml:65
msgid "Remove a key from the list of trusted keys."
msgstr "Elimina una clave de la lista de claves de confianza."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:74
+#: apt-key.8.xml:76
msgid "Output the key &synopsis-param-keyid; to standard output."
msgstr "Muestra la clave &synopsis-param-keyid; por la salida estándar."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:85
+#: apt-key.8.xml:87
msgid "Output all trusted keys to standard output."
msgstr "Devuelve todas las claves de confianza por la salida estándar."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:96
+#: apt-key.8.xml:98
msgid "List trusted keys."
msgstr "Lista las claves de confianza."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:107
+#: apt-key.8.xml:109
msgid "List fingerprints of trusted keys."
msgstr "Lista las huellas digitales de las claves de confianza."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:118
+#: apt-key.8.xml:120
msgid ""
"Pass advanced options to gpg. With adv --recv-key you can download the "
"public key."
@@ -2329,13 +2351,12 @@ msgstr ""
"«adv --recv-key»."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:130
+#: apt-key.8.xml:132
msgid ""
"Update the local keyring with the archive keyring and remove from the local "
"keyring the archive keys which are no longer valid. The archive keyring is "
"shipped in the <literal>archive-keyring</literal> package of your "
-"distribution, e.g. the &keyring-package; package in "
-"&keyring-distro;."
+"distribution, e.g. the &keyring-package; package in &keyring-distro;."
msgstr ""
"Actualiza el registro de claves local con el registro de claves del archivo "
"y elimina del registro local las claves de archivo que ya no son válidas. El "
@@ -2344,7 +2365,7 @@ msgstr ""
"en &keyring-distro;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:144
+#: apt-key.8.xml:146
msgid ""
"Perform an update working similarly to the <command>update</command> command "
"above, but get the archive keyring from a URI instead and validate it "
@@ -2362,12 +2383,12 @@ msgstr ""
"de APT para Ubuntu sí es compatible."
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:160 apt-cdrom.8.xml:80
+#: apt-key.8.xml:162 apt-cdrom.8.xml:82
msgid "Options"
msgstr "Opciones"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:161
+#: apt-key.8.xml:163
msgid ""
"Note that options need to be defined before the commands described in the "
"previous section."
@@ -2376,7 +2397,7 @@ msgstr ""
"descritas en el sección anterior."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:164
+#: apt-key.8.xml:166
msgid ""
"With this option it is possible to specify a particular keyring file the "
"command should operate on. The default is that a command is executed on the "
@@ -2393,49 +2414,49 @@ msgstr ""
"es, por ejemplo, que las claves nuevas se añaden a este fichero."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:179
+#: apt-key.8.xml:181
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:180
+#: apt-key.8.xml:182
msgid "Local trust database of archive keys."
msgstr "Base de datos local de las claves de confianza de archivos Debian"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:183
+#: apt-key.8.xml:185
msgid "&keyring-filename;"
msgstr "&keyring-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:184
+#: apt-key.8.xml:186
msgid "Keyring of &keyring-distro; archive trusted keys."
msgstr "Registro de las claves de confianza del archivo de &keyring-distro;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:187
-msgid ""
-"&keyring-removed-filename;"
-msgstr ""
-"&keyring-removed-filename;"
+#: apt-key.8.xml:189
+msgid "&keyring-removed-filename;"
+msgstr "&keyring-removed-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:188
+#: apt-key.8.xml:190
msgid "Keyring of &keyring-distro; archive removed trusted keys."
-msgstr "Registro de las claves de confianza eliminadas del archivo de &keyring-distro;."
+msgstr ""
+"Registro de las claves de confianza eliminadas del archivo de &keyring-"
+"distro;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:197
+#: apt-key.8.xml:199
msgid "&apt-get;, &apt-secure;"
msgstr "&apt-get;, &apt-secure;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-mark.8.xml:33
+#: apt-mark.8.xml:35
msgid "mark/unmark a package as being automatically-installed"
msgstr "Marca o desmarca un paquete como instalado automáticamente"
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:39
+#: apt-mark.8.xml:41
msgid ""
"<command>apt-mark</command> will change whether a package has been marked as "
"being automatically installed."
@@ -2444,7 +2465,7 @@ msgstr ""
"o no."
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:43
+#: apt-mark.8.xml:45
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 "
@@ -2460,7 +2481,7 @@ msgstr ""
"eliminará."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:52
+#: apt-mark.8.xml:54
msgid ""
"<literal>auto</literal> is used to mark a package as being automatically "
"installed, which will cause the package to be removed when no more manually "
@@ -2471,7 +2492,7 @@ msgstr ""
"ningún otro paquete manualmente instalado depende de este paquete."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:60
+#: apt-mark.8.xml:62
msgid ""
"<literal>manual</literal> is used to mark a package as being manually "
"installed, which will prevent the package from being automatically removed "
@@ -2482,7 +2503,7 @@ msgstr ""
"otro depende de él."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:68
+#: apt-mark.8.xml:70
msgid ""
"<literal>hold</literal> is used to mark a package as held back, which will "
"prevent the package from being automatically installed, upgraded or "
@@ -2497,7 +2518,7 @@ msgstr ""
"file</option> tenga efecto sobre él."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:78
+#: apt-mark.8.xml:80
msgid ""
"<literal>unhold</literal> is used to cancel a previously set hold on a "
"package to allow all actions again."
@@ -2506,7 +2527,7 @@ msgstr ""
"sobre un paquete previamente marcado con «hold»."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:84
+#: apt-mark.8.xml:86
msgid ""
"<literal>showauto</literal> is used to print a list of automatically "
"installed packages with each package on a new line. All automatically "
@@ -2519,7 +2540,7 @@ msgstr ""
"paquetes solo se muestran aquellos automáticamente instalados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:92
+#: apt-mark.8.xml:94
msgid ""
"<literal>showmanual</literal> can be used in the same way as "
"<literal>showauto</literal> except that it will print a list of manually "
@@ -2530,7 +2551,7 @@ msgstr ""
"paquetes manualmente instalados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:99
+#: apt-mark.8.xml:101
msgid ""
"<literal>showhold</literal> is used to print a list of packages on hold in "
"the same way as for the other show commands."
@@ -2539,7 +2560,7 @@ msgstr ""
"de la misma forma que las otras órdenes «show»."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:115
+#: apt-mark.8.xml:117
msgid ""
"Read/Write package stats from the filename given with the parameter "
"&synopsis-param-filename; instead of from the default location, which is "
@@ -2553,7 +2574,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:136
+#: apt-mark.8.xml:138
msgid ""
"<command>apt-mark</command> returns zero on normal operation, non-zero on "
"error."
@@ -2562,12 +2583,12 @@ msgstr ""
"100 en caso de error."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-secure.8.xml:47
+#: apt-secure.8.xml:49
msgid "Archive authentication support for APT"
msgstr "Compatibilidad con la autenticación en el archivo para APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:52
+#: apt-secure.8.xml:54
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 "
@@ -2580,7 +2601,7 @@ msgstr ""
"sin acceso a la clave con la que se firmó el fichero «Release»."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:60
+#: apt-secure.8.xml:62
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 "
@@ -2596,7 +2617,7 @@ msgstr ""
"ellas."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:69
+#: apt-secure.8.xml:71
msgid ""
"The package frontends &apt-get;, &aptitude; and &synaptic; support this new "
"authentication feature."
@@ -2605,12 +2626,12 @@ msgstr ""
"pueden usar esta nueva funcionalidad de autenticación."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:74
+#: apt-secure.8.xml:76
msgid "Trusted archives"
msgstr "Archivos de confianza"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:77
+#: apt-secure.8.xml:79
msgid ""
"The chain of trust from an apt archive to the end user is made up of several "
"steps. <command>apt-secure</command> is the last step in this chain; "
@@ -2627,7 +2648,7 @@ msgstr ""
"asegurar que la integridad del archivo es correcta."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:85
+#: apt-secure.8.xml:87
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 "
@@ -2640,7 +2661,7 @@ msgstr ""
"devscripts respectivamente)."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:92
+#: apt-secure.8.xml:94
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. In order to become "
@@ -2658,29 +2679,29 @@ msgstr ""
"identidad del propietario de la clave."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:102
+#: apt-secure.8.xml:104
msgid ""
"Once the uploaded package is verified and included in the archive, the "
"maintainer signature is stripped off, and checksums of the package are "
"computed and put in the Packages file. The checksums 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 for this &keyring-distro; release, and distributed "
-"alongside the packages and the Packages files on &keyring-distro; mirrors. The keys "
-"are in the &keyring-distro; archive keyring available in the &keyring-package; "
-"package."
+"then signed by the archive key for this &keyring-distro; release, and "
+"distributed alongside the packages and the Packages files on &keyring-"
+"distro; mirrors. The keys are in the &keyring-distro; archive keyring "
+"available in the &keyring-package; package."
msgstr ""
"Una vez que el paquete enviado se ha verificado e incluido en el archivo, se "
"elimina la firma del mantenedor, y se realizan las sumas de control del "
"paquete, que se incluyen en el fichero «Packages». A continuación, se "
"realiza una suma de control de todos los ficheros «Package», y se incluyen "
"en el fichero «Release». Acto seguido, el fichero «Release» se firma con la "
-"clave del archivo de esta distribución de &keyring-distro;, y se distribuye junto con "
-"los paquetes y los ficheros «Packages» de las réplicas de &keyring-distro;. Las claves "
-"están disponibles en el registro de claves del archivo &keyring-distro; en el paquete "
-"&keyring-package; package."
+"clave del archivo de esta distribución de &keyring-distro;, y se distribuye "
+"junto con los paquetes y los ficheros «Packages» de las réplicas de &keyring-"
+"distro;. Las claves están disponibles en el registro de claves del archivo "
+"&keyring-distro; en el paquete &keyring-package; package."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:113
+#: apt-secure.8.xml:115
msgid ""
"End users can check the signature of the Release file, extract a checksum of "
"a package from it and compare it with the checksum of the package they "
@@ -2692,7 +2713,7 @@ msgstr ""
"APT."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:118
+#: apt-secure.8.xml:120
msgid ""
"Notice that this is distinct from checking signatures on a per package "
"basis. It is designed to prevent two possible attacks:"
@@ -2701,7 +2722,7 @@ msgstr ""
"individualmente. Se diseñó para prevenir dos posible ataques:"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:123
+#: apt-secure.8.xml:125
msgid ""
"<literal>Network \"man in the middle\" attacks</literal>. Without signature "
"checking, malicious agents can introduce themselves into the package "
@@ -2717,7 +2738,7 @@ msgstr ""
"envenenamiento de ARP o de DNS)."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:131
+#: apt-secure.8.xml:133
msgid ""
"<literal>Mirror network compromise</literal>. Without signature checking, a "
"malicious agent can compromise a mirror host and modify the files in it to "
@@ -2730,7 +2751,7 @@ msgstr ""
"usuarios que descarguen paquetes de dicha réplica."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:138
+#: apt-secure.8.xml:140
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 "
@@ -2743,12 +2764,12 @@ msgstr ""
"una firma por paquete."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:144
+#: apt-secure.8.xml:146
msgid "User configuration"
msgstr "Configuración de usuario"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:146
+#: apt-secure.8.xml:148
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 "
@@ -2762,7 +2783,7 @@ msgstr ""
"paquetes de Debian."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:153
+#: apt-secure.8.xml:155
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 "
@@ -2779,12 +2800,12 @@ msgstr ""
"archivos de paquetes configurados."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:162
+#: apt-secure.8.xml:164
msgid "Archive configuration"
msgstr "Configuración del archivo"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:164
+#: apt-secure.8.xml:166
msgid ""
"If you want to provide archive signatures in an archive under your "
"maintenance you have to:"
@@ -2793,7 +2814,7 @@ msgstr ""
"que:"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:169
+#: apt-secure.8.xml:171
msgid ""
"<emphasis>Create a toplevel Release file</emphasis>, if it does not exist "
"already. You can do this by running <command>apt-ftparchive release</"
@@ -2804,7 +2825,7 @@ msgstr ""
"utils)."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:174
+#: apt-secure.8.xml:176
msgid ""
"<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --"
"clearsign -o InRelease Release</command> and <command>gpg -abs -o Release."
@@ -2815,7 +2836,7 @@ msgstr ""
"o Release.gpg Release</command>."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:178
+#: apt-secure.8.xml:180
msgid ""
"<emphasis>Publish the key fingerprint</emphasis>, that way your users will "
"know what key they need to import in order to authenticate the files in the "
@@ -2826,7 +2847,7 @@ msgstr ""
"del archivo."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:185
+#: apt-secure.8.xml:187
msgid ""
"Whenever the contents of the archive change (new packages are added or "
"removed) the archive maintainer has to follow the first two steps outlined "
@@ -2837,7 +2858,7 @@ msgstr ""
"explicados anteriormente."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:193
+#: apt-secure.8.xml:195
msgid ""
"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, "
"&debsign; &debsig-verify;, &gpg;"
@@ -2846,7 +2867,7 @@ msgstr ""
"&debsign; &debsig-verify;, &gpg;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:197
+#: apt-secure.8.xml:199
msgid ""
"For more background information you might want to review the <ulink url="
"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian "
@@ -2863,12 +2884,12 @@ msgstr ""
"una Distribución</ulink> de V. Alex Brennen."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:210
+#: apt-secure.8.xml:212
msgid "Manpage Authors"
msgstr "Autores de la página del manual"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:212
+#: apt-secure.8.xml:214
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."
@@ -2877,12 +2898,12 @@ msgstr ""
"Peña, Isaac Jones, Colin Walters, Florian Weimer y Michael Vogt."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cdrom.8.xml:32
+#: apt-cdrom.8.xml:34
msgid "APT CD-ROM management utility"
msgstr "Herramienta de APT para la gestión de discos ópticos"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:38
+#: apt-cdrom.8.xml:40
msgid ""
"<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of "
"available sources. <command>apt-cdrom</command> takes care of determining "
@@ -2895,7 +2916,7 @@ msgstr ""
"verifica los ficheros de índice."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:45
+#: apt-cdrom.8.xml:47
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 disc in a multi-CD set "
@@ -2907,7 +2928,7 @@ msgstr ""
"errores de grabación."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:56
+#: apt-cdrom.8.xml:58
msgid ""
"<literal>add</literal> is used to add a new disc to the source list. It will "
"unmount the CD-ROM device, prompt for a disc to be inserted and then proceed "
@@ -2922,7 +2943,7 @@ msgstr ""
"título descriptivo."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:64
+#: apt-cdrom.8.xml:66
msgid ""
"APT uses a CD-ROM ID to track which disc is currently in the drive and "
"maintains a database of these IDs in <filename>&statedir;/cdroms.list</"
@@ -2933,7 +2954,7 @@ msgstr ""
"identificadores en <filename>&statedir;/cdroms.list</filename>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:72
+#: apt-cdrom.8.xml:74
msgid ""
"A debugging tool to report the identity of the current disc as well as the "
"stored file name"
@@ -2942,7 +2963,24 @@ msgstr ""
"así como del nombre del fichero guardado."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:85
+#: apt-cdrom.8.xml:87
+#, fuzzy
+#| msgid ""
+#| "Mount point; specify the location to mount the CD-ROM. This mount point "
+#| "must be listed in <filename>/etc/fstab</filename> and properly "
+#| "configured. Configuration Item: <literal>Acquire::cdrom::mount</literal>."
+msgid ""
+"Do not try to auto-detect the CD-ROM path. Usually combined with the "
+"<option>--cdrom</option> option. Configuration Item: <literal>Acquire::"
+"cdrom::AutoDetect</literal>."
+msgstr ""
+"Punto de montaje. Define el lugar donde se debe montar el disco óptico. El "
+"punto de montaje debe aparecer en <filename>/etc/fstab</filename> y estar "
+"correctamente configurado. Opción de configuración: <literal>Acquire::cdrom::"
+"mount</literal>."
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-cdrom.8.xml:95
msgid ""
"Mount point; specify the location to mount the CD-ROM. This mount point must "
"be listed in <filename>/etc/fstab</filename> and properly configured. "
@@ -2954,7 +2992,7 @@ msgstr ""
"mount</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:94
+#: apt-cdrom.8.xml:104
msgid ""
"Rename a disc; change the label of a disc or override the disc's given "
"label. This option will cause <command>apt-cdrom</command> to prompt for a "
@@ -2966,7 +3004,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:103
+#: 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::"
@@ -2976,7 +3014,7 @@ msgstr ""
"de montaje. Opción de configuración: <literal>APT::CDROM::NoMount</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:111
+#: 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 "
@@ -2989,7 +3027,7 @@ msgstr ""
"de configuración: <literal>APT::CDROM::Fast</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:121
+#: 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 "
@@ -3001,7 +3039,7 @@ msgstr ""
"pero encontrará todo el contenido."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:132
+#: 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: "
@@ -3012,12 +3050,12 @@ msgstr ""
"CDROM::NoAct</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:145
+#: 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:150
+#: apt-cdrom.8.xml:160
msgid ""
"<command>apt-cdrom</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -3026,12 +3064,12 @@ msgstr ""
"100 en caso de error."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-config.8.xml:33
+#: apt-config.8.xml:35
msgid "APT Configuration Query program"
msgstr "Programa para consultar la configuración de APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:39
+#: apt-config.8.xml:41
msgid ""
"<command>apt-config</command> is an internal program used by various "
"portions of the APT suite to provide consistent configurability. It accesses "
@@ -3045,7 +3083,7 @@ msgstr ""
"sencillo de usar por aplicaciones con scripts."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:51
+#: apt-config.8.xml:53
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 "
@@ -3061,7 +3099,7 @@ msgstr ""
"manera en un script de intérprete de órdenes:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-config.8.xml:59
+#: apt-config.8.xml:61
#, no-wrap
msgid ""
"OPTS=\"-f\"\n"
@@ -3073,7 +3111,7 @@ msgstr ""
"eval $RES\n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:64
+#: apt-config.8.xml:66
msgid ""
"This will set the shell environment variable $OPTS to the value of MyApp::"
"options with a default of <option>-f</option>."
@@ -3082,7 +3120,7 @@ msgstr ""
"valor de MyApp::Opciones, y con <option>-f</option> por omisión."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:68
+#: apt-config.8.xml:70
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 "
@@ -3095,12 +3133,12 @@ msgstr ""
"internamente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:77
+#: apt-config.8.xml:79
msgid "Just show the contents of the configuration space."
msgstr "Sólo muestra el contenido del espacio de configuración."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:90
+#: apt-config.8.xml:92
msgid ""
"Include options which have an empty value. This is the default, so use --no-"
"empty to remove them from the output."
@@ -3109,12 +3147,12 @@ msgstr ""
"predeterminado, utilice «--no-empty» para eliminarlos de la salida."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-config.8.xml:95
+#: apt-config.8.xml:97
msgid "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
msgstr "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:96
+#: apt-config.8.xml:98
msgid ""
"Defines the output of each config option. &percnt;t will be replaced with "
"its individual name, &percnt;f with its full hierarchical name and &percnt;v "
@@ -3132,13 +3170,13 @@ msgstr ""
"utilizando &percnt;&percnt;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:110 apt-extracttemplates.1.xml:71 apt-sortpkgs.1.xml:64
-#: apt-ftparchive.1.xml:608
+#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66
+#: apt-ftparchive.1.xml:610
msgid "&apt-conf;"
msgstr "&apt-conf;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:115
+#: apt-config.8.xml:117
msgid ""
"<command>apt-config</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -3147,27 +3185,27 @@ msgstr ""
"valor 100 en caso de error."
#. type: Content of: <refentry><refentryinfo><author><contrib>
-#: apt.conf.5.xml:20
+#: apt.conf.5.xml:22
msgid "Initial documentation of Debug::*."
msgstr "Documentación inicial de Debug::*."
#. type: Content of: <refentry><refentryinfo><author><email>
-#: apt.conf.5.xml:21
+#: apt.conf.5.xml:23
msgid "dburrows@debian.org"
msgstr "dburrows@debian.org"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt.conf.5.xml:31 apt_preferences.5.xml:25 sources.list.5.xml:26
+#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28
msgid "5"
msgstr "5"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt.conf.5.xml:38
+#: apt.conf.5.xml:40
msgid "Configuration file for APT"
msgstr "Fichero de configuración de APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:42
+#: apt.conf.5.xml:44
msgid ""
"<filename>/etc/apt/apt.conf</filename> is the main configuration file shared "
"by all the tools in the APT suite of tools, though it is by no means the "
@@ -3181,7 +3219,7 @@ msgstr ""
"ofrecer un entorno homogéneo."
#. type: Content of: <refentry><refsect1><orderedlist><para>
-#: apt.conf.5.xml:48
+#: apt.conf.5.xml:50
msgid ""
"When an APT tool starts up it will read the configuration files in the "
"following order:"
@@ -3190,7 +3228,7 @@ msgstr ""
"en el siguiente orden:"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:50
+#: apt.conf.5.xml:52
msgid ""
"the file specified by the <envar>APT_CONFIG</envar> environment variable (if "
"any)"
@@ -3199,7 +3237,7 @@ msgstr ""
"existir)."
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:52
+#: apt.conf.5.xml:54
msgid ""
"all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
"order which have either no or \"<literal>conf</literal>\" as filename "
@@ -3218,7 +3256,7 @@ msgstr ""
"forma silenciosa."
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:59
+#: apt.conf.5.xml:61
msgid ""
"the main configuration file specified by <literal>Dir::Etc::main</literal>"
msgstr ""
@@ -3226,7 +3264,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:61
+#: apt.conf.5.xml:63
msgid ""
"the command line options are applied to override the configuration "
"directives or to load even more configuration files."
@@ -3235,12 +3273,12 @@ msgstr ""
"configuración o para cargar más ficheros de configuración."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:65
+#: apt.conf.5.xml:67
msgid "Syntax"
msgstr "Sintaxis"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:66
+#: apt.conf.5.xml:68
msgid ""
"The configuration file is organized in a tree with options organized into "
"functional groups. Option specification is given with a double colon "
@@ -3255,7 +3293,7 @@ msgstr ""
"APT. Las opciones no se heredan de sus grupos paternos."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:72
+#: apt.conf.5.xml:74
msgid ""
"Syntactically the configuration language is modeled after what the ISC tools "
"such as bind and dhcp use. Lines starting with <literal>//</literal> are "
@@ -3281,7 +3319,7 @@ msgstr ""
"llaves, como:"
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:85
+#: apt.conf.5.xml:87
#, no-wrap
msgid ""
"APT {\n"
@@ -3299,7 +3337,7 @@ msgstr ""
"};\n"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:93
+#: apt.conf.5.xml:95
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 "
@@ -3311,13 +3349,13 @@ msgstr ""
"separadas por punto y coma."
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:98
+#: apt.conf.5.xml:100
#, 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:101
+#: apt.conf.5.xml:103
msgid ""
"In general the sample configuration file &configureindex; is a good guide "
"for how it should look."
@@ -3326,7 +3364,7 @@ msgstr ""
"buena guía para entender su aspecto."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:104
+#: apt.conf.5.xml:106
msgid ""
"Case is not significant in names of configuration items, so in the previous "
"example you could use <literal>dpkg::pre-install-pkgs</literal>."
@@ -3336,7 +3374,7 @@ msgstr ""
"<literal>dpkg::pre-install-pkgs</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:107
+#: apt.conf.5.xml:109
msgid ""
"Names for the configuration items are optional if a list is defined as can "
"be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If "
@@ -3351,7 +3389,7 @@ msgstr ""
"cualquier otra opción reasignando un nuevo valor a la opción."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:112
+#: apt.conf.5.xml:114
msgid ""
"Two special commands are defined: <literal>#include</literal> (which is "
"deprecated and not supported by alternative implementations) and "
@@ -3371,7 +3409,7 @@ msgstr ""
"acabar con punto y coma)."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:122
+#: apt.conf.5.xml:124
msgid ""
"The <literal>#clear</literal> command is the only way to delete a list or a "
"complete scope. Reopening a scope (or using the syntax described below with "
@@ -3387,7 +3425,7 @@ msgstr ""
"los ámbitos no se pueden redefinir, sólo eliminar."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:130
+#: apt.conf.5.xml:132
msgid ""
"All of the APT tools take an -o option which allows an arbitrary "
"configuration directive to be specified on the command line. The syntax is a "
@@ -3406,7 +3444,7 @@ msgstr ""
"sintaxis de ámbitos en la línea de órdenes)."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:138
+#: apt.conf.5.xml:140
msgid ""
"Note that appending items to a list using <literal>::</literal> only works "
"for one item per line, and that you should not use it in combination with "
@@ -3436,12 +3474,12 @@ msgstr ""
"declaraciones ahora que APT no muestra fallos de forma explícita."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:153
+#: apt.conf.5.xml:155
msgid "The APT Group"
msgstr "El grupo APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:154
+#: apt.conf.5.xml:156
msgid ""
"This group of options controls general APT behavior as well as holding the "
"options for all of the tools."
@@ -3450,7 +3488,7 @@ msgstr ""
"mantiene las opciones para todas las herramientas."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:159
+#: apt.conf.5.xml:161
msgid ""
"System Architecture; sets the architecture to use when fetching files and "
"parsing package lists. The internal default is the architecture apt was "
@@ -3461,7 +3499,7 @@ msgstr ""
"arquitectura para la que apt se compiló."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:166
+#: apt.conf.5.xml:168
msgid ""
"All Architectures the system supports. For instance, CPUs implementing the "
"<literal>amd64</literal> (also called <literal>x86-64</literal>) "
@@ -3483,7 +3521,7 @@ msgstr ""
"add-architecture</command>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:179
+#: apt.conf.5.xml:181
msgid ""
"Default release to install packages from if more than one version is "
"available. Contains release name, codename or release version. Examples: "
@@ -3497,7 +3535,7 @@ msgstr ""
"«5.0*». Consulte también &apt-preferences;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:185
+#: apt.conf.5.xml:187
msgid ""
"Ignore held packages; this global option causes the problem resolver to "
"ignore held packages in its decision making."
@@ -3506,7 +3544,7 @@ msgstr ""
"problemas ignore los paquetes retenidos en la toma de decisiones."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:190
+#: apt.conf.5.xml:192
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 "
@@ -3520,7 +3558,7 @@ msgstr ""
"mecanismo directo para reinstalarlos."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:198
+#: apt.conf.5.xml:200
msgid ""
"Defaults to on, which will cause APT to install essential and important "
"packages as soon as possible in an install/upgrade operation, in order to "
@@ -3547,7 +3585,7 @@ msgstr ""
"del paquete A, ya que no se satisface la dependencia sobre éste."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:210
+#: apt.conf.5.xml:212
msgid ""
"The immediate configuration marker is also applied in the potentially "
"problematic case of circular dependencies, since a dependency with the "
@@ -3576,7 +3614,7 @@ msgstr ""
"anteriormente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:223
+#: apt.conf.5.xml:225
msgid ""
"Before a big operation like <literal>dist-upgrade</literal> is run with this "
"option disabled you should try to explicitly <literal>install</literal> the "
@@ -3593,7 +3631,7 @@ msgstr ""
"para que así pueden mejorar y corregir el proceso de actualización."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:234
+#: apt.conf.5.xml:236
msgid ""
"Never enable this option unless you <emphasis>really</emphasis> know what "
"you are doing. It permits APT to temporarily remove an essential package to "
@@ -3614,7 +3652,7 @@ msgstr ""
"sobre la que estos paquetes dependen."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:246
+#: apt.conf.5.xml:248
msgid ""
"APT uses since version 0.7.26 a resizable memory mapped cache file to store "
"the available information. <literal>Cache-Start</literal> acts as a hint of "
@@ -3651,14 +3689,14 @@ msgstr ""
"desactiva el crecimiento automático de la caché."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:262
+#: apt.conf.5.xml:264
msgid "Defines which packages are considered essential build dependencies."
msgstr ""
"Define los paquetes que se consideran dependencias de construcción "
"esenciales."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:266
+#: apt.conf.5.xml:268
msgid ""
"The Get subsection controls the &apt-get; tool; please see its documentation "
"for more information about the options here."
@@ -3667,7 +3705,7 @@ msgstr ""
"documentación para más información sobre esta opción."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:271
+#: apt.conf.5.xml:273
msgid ""
"The Cache subsection controls the &apt-cache; tool; please see its "
"documentation for more information about the options here."
@@ -3676,7 +3714,7 @@ msgstr ""
"documentación para más información sobre esta opción."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:276
+#: apt.conf.5.xml:278
msgid ""
"The CDROM subsection controls the &apt-cdrom; tool; please see its "
"documentation for more information about the options here."
@@ -3685,12 +3723,12 @@ msgstr ""
"documentación para más información sobre esta opción."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:282
+#: apt.conf.5.xml:284
msgid "The Acquire Group"
msgstr "El grupo Acquire"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:283
+#: apt.conf.5.xml:285
msgid ""
"The <literal>Acquire</literal> group of options controls the download of "
"packages as well as the various \"acquire methods\" responsible for the "
@@ -3701,7 +3739,7 @@ msgstr ""
"sí mismo (consulte también &sources-list;)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:290
+#: apt.conf.5.xml:292
msgid ""
"Security related option defaulting to true, as giving a Release file's "
"validation an expiration date prevents replay attacks over a long timescale, "
@@ -3722,7 +3760,7 @@ msgstr ""
"utilizar la opción <literal>Max-ValidTime</literal> a continuación."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:303
+#: apt.conf.5.xml:305
msgid ""
"Maximum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3741,7 +3779,7 @@ msgstr ""
"se pueden realizar añadiendo la etiqueta del archivo al nombre de opción."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:315
+#: apt.conf.5.xml:317
msgid ""
"Minimum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3761,7 +3799,7 @@ msgstr ""
"y deben utilizar añadiendo la etiqueta del archivo al nombre de opción."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:327
+#: apt.conf.5.xml:329
msgid ""
"Try to download deltas called <literal>PDiffs</literal> for indexes (like "
"<filename>Packages</filename> files) instead of downloading whole ones. True "
@@ -3772,7 +3810,7 @@ msgstr ""
"enteros. Su valor predeterminado es «true»."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:330
+#: apt.conf.5.xml:332
msgid ""
"Two sub-options to limit the use of PDiffs are also available: "
"<literal>FileLimit</literal> can be used to specify a maximum number of "
@@ -3790,7 +3828,7 @@ msgstr ""
"parches."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:340
+#: apt.conf.5.xml:342
msgid ""
"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
"literal> or <literal>access</literal> which determines how APT parallelizes "
@@ -3805,7 +3843,7 @@ msgstr ""
"se abrirá una conexión por cada tipo de URI."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:348
+#: apt.conf.5.xml:350
msgid ""
"Number of retries to perform. If this is non-zero APT will retry failed "
"files the given number of times."
@@ -3814,7 +3852,7 @@ msgstr ""
"intentar obtener los ficheros fallidos el número de veces proporcionado."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:353
+#: apt.conf.5.xml:355
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."
@@ -3824,7 +3862,7 @@ msgstr ""
"«true» de forma predeterminada."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:358
+#: apt.conf.5.xml:360
msgid ""
"<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. "
"It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</"
@@ -3844,7 +3882,7 @@ msgstr ""
"opciones anteriores."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:366
+#: apt.conf.5.xml:368
msgid ""
"Three settings are provided for cache control with HTTP/1.1 compliant proxy "
"caches. <literal>No-Cache</literal> tells the proxy not to use its cached "
@@ -3863,7 +3901,7 @@ msgstr ""
"impedir que el proxy contamine la caché con ficheros «.deb» (de gran tamaño)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:376 apt.conf.5.xml:448
+#: apt.conf.5.xml:378 apt.conf.5.xml:466
msgid ""
"The option <literal>timeout</literal> sets the timeout timer used by the "
"method; this value applies to the connection as well as the data timeout."
@@ -3873,7 +3911,7 @@ msgstr ""
"y a la recepción de datos."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:379
+#: apt.conf.5.xml:381
msgid ""
"The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to "
"enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e."
@@ -3893,7 +3931,7 @@ msgstr ""
"cumplir la especificación HTTP/1.1."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:386
+#: apt.conf.5.xml:388
msgid ""
"<literal>Acquire::http::AllowRedirect</literal> controls whether APT will "
"follow redirects, which is enabled by default."
@@ -3902,13 +3940,20 @@ msgstr ""
"redirección; activado por omisión."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:389
+#: apt.conf.5.xml:391
+#, fuzzy
+#| msgid ""
+#| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
+#| "literal> which accepts integer values in kilobytes. The default value is "
+#| "0 which deactivates the limit and tries to use all available bandwidth "
+#| "(note that this option implicitly disables downloading from multiple "
+#| "servers at the same time.)"
msgid ""
"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
-"literal> which accepts integer values in kilobytes. The default value is 0 "
-"which deactivates the limit and tries to use all available bandwidth (note "
-"that this option implicitly disables downloading from multiple servers at "
-"the same time.)"
+"literal> which accepts integer values in kilobytes per second. The default "
+"value is 0 which deactivates the limit and tries to use all available "
+"bandwidth. Note that this option implicitly disables downloading from "
+"multiple servers at the same time."
msgstr ""
"El ancho de banda usado se puede limitar mediante <literal>Acquire::http::Dl-"
"Limit</literal>, que acepta valores enteros en kilobytes. El valor "
@@ -3917,7 +3962,7 @@ msgstr ""
"implícitamente la descarga simultánea desde varios servidores)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:394
+#: apt.conf.5.xml:398
msgid ""
"<literal>Acquire::http::User-Agent</literal> can be used to set a different "
"User-Agent for the http download method as some proxies allow access for "
@@ -3930,6 +3975,20 @@ msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
#: apt.conf.5.xml:402
msgid ""
+"<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify "
+"an external command to discover the http proxy to use. Apt expects the "
+"command to output the proxy on stdout in the style <literal>http://proxy:"
+"port/</literal>. This will override the generic <literal>Acquire::http::"
+"Proxy</literal> but not any specific host proxy configuration set via "
+"<literal>Acquire::http::Proxy::$HOST</literal>. See the &squid-deb-proxy-"
+"client; package for an example implementation that uses avahi. This option "
+"takes precedence over the legacy option name <literal>ProxyAutoDetect</"
+"literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:420
+msgid ""
"The <literal>Cache-control</literal>, <literal>Timeout</literal>, "
"<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and "
"<literal>proxy</literal> options work for HTTPS URIs in the same way as for "
@@ -3945,7 +4004,7 @@ msgstr ""
"<literal>Pipeline-Depth</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:410
+#: apt.conf.5.xml:428
msgid ""
"<literal>CaInfo</literal> suboption specifies place of file that holds info "
"about trusted certificates. <literal>&lt;host&gt;::CaInfo</literal> is the "
@@ -3985,7 +4044,7 @@ msgstr ""
"SslForceVersion</literal> es la opción correspondiente para cada servidor."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:431
+#: apt.conf.5.xml:449
msgid ""
"<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. "
"It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</"
@@ -4018,7 +4077,7 @@ msgstr ""
"<literal>$(SITE)</literal> y <literal>$(SITE_PORT)</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:451
+#: apt.conf.5.xml:469
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, "
@@ -4035,7 +4094,7 @@ msgstr ""
"ejemplos)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:458
+#: apt.conf.5.xml:476
msgid ""
"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
"envar> environment variable to an HTTP URL - see the discussion of the http "
@@ -4049,7 +4108,7 @@ msgstr ""
"a su poca eficiencia."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:463
+#: apt.conf.5.xml:481
msgid ""
"The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@ -4065,13 +4124,13 @@ msgstr ""
"compatibles con la RFC 2428."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:477
+#: apt.conf.5.xml:495
#, no-wrap
msgid "/cdrom/::Mount \"foo\";"
msgstr "/cdrom/::Mount \"algo\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:472
+#: apt.conf.5.xml:490
msgid ""
"For URIs using the <literal>cdrom</literal> method, the only configurable "
"option is the mount point, <literal>cdrom::Mount</literal>, which must be "
@@ -4093,7 +4152,7 @@ msgstr ""
"especificar órdenes para desmontar mediante UMount."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:485
+#: apt.conf.5.xml:503
msgid ""
"For GPGV URIs the only configurable option is <literal>gpgv::Options</"
"literal>, which passes additional parameters to gpgv."
@@ -4102,13 +4161,13 @@ msgstr ""
"Options</literal>, que introduce parámetros adicionales a gpgv."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:496
+#: apt.conf.5.xml:514
#, no-wrap
msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
msgstr "Acquire::CompressionTypes::<replaceable>extensión-del-fichero</replaceable> \"<replaceable>nombre-del-método</replaceable>\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:491
+#: apt.conf.5.xml:509
msgid ""
"List of compression types which are understood by the acquire methods. "
"Files like <filename>Packages</filename> can be available in various "
@@ -4128,19 +4187,19 @@ msgstr ""
"\"0\"/>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:501
+#: apt.conf.5.xml:519
#, no-wrap
msgid "Acquire::CompressionTypes::Order:: \"gz\";"
msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:504
+#: apt.conf.5.xml:522
#, no-wrap
msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:497
+#: apt.conf.5.xml:515
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 "
@@ -4172,13 +4231,13 @@ msgstr ""
"explícita ya que se añadirá de forma automática."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:511
+#: apt.conf.5.xml:529
#, no-wrap
msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:506
+#: apt.conf.5.xml:524
msgid ""
"Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></"
"literal> will be checked at run time. If this option has been set, the "
@@ -4203,7 +4262,7 @@ msgstr ""
"omite la lista definida, simplemente prefija la lista con este tipo."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:516
+#: apt.conf.5.xml:534
msgid ""
"The special type <literal>uncompressed</literal> can be used to give "
"uncompressed files a preference, but note that most archives don't provide "
@@ -4215,7 +4274,7 @@ msgstr ""
"así que habitualmente esto solo sirve con réplicas locales."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:523
+#: apt.conf.5.xml:541
msgid ""
"When downloading <literal>gzip</literal> compressed indexes (Packages, "
"Sources, or Translations), keep them gzip compressed locally instead of "
@@ -4229,7 +4288,7 @@ msgstr ""
"paquetes locales. El valor predeterminado es «false»."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:531
+#: apt.conf.5.xml:549
msgid ""
"The Languages subsection controls which <filename>Translation</filename> "
"files are downloaded and in which order APT tries to display the description-"
@@ -4248,13 +4307,13 @@ msgstr ""
"idioma (especialmente para los códigos de idioma largos)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting>
-#: apt.conf.5.xml:548
+#: apt.conf.5.xml:566
#, no-wrap
msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; }"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:536
+#: apt.conf.5.xml:554
msgid ""
"The default list includes \"environment\" and \"en\". "
"\"<literal>environment</literal>\" has a special meaning here: it will be "
@@ -4293,7 +4352,7 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:549
+#: apt.conf.5.xml:567
msgid ""
"Note: To prevent problems resulting from APT being executed in different "
"environments (e.g. by different users or by other programs) all Translation "
@@ -4307,22 +4366,22 @@ msgstr ""
"implícito)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:558
+#: apt.conf.5.xml:576
msgid "When downloading, force to use only the IPv4 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:564
+#: apt.conf.5.xml:582
msgid "When downloading, force to use only the IPv6 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:571
+#: apt.conf.5.xml:589
msgid "Directories"
msgstr "Directorios"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:573
+#: apt.conf.5.xml:591
msgid ""
"The <literal>Dir::State</literal> section has directories that pertain to "
"local state information. <literal>lists</literal> is the directory to place "
@@ -4343,7 +4402,7 @@ msgstr ""
"filename> ó <filename>./</filename>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:580
+#: apt.conf.5.xml:598
msgid ""
"<literal>Dir::Cache</literal> contains locations pertaining to local cache "
"information, such as the two package caches <literal>srcpkgcache</literal> "
@@ -4365,7 +4424,7 @@ msgstr ""
"directorio predeterminado está en <literal>Dir::Cache</literal>"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:589
+#: apt.conf.5.xml:607
msgid ""
"<literal>Dir::Etc</literal> contains the location of configuration files, "
"<literal>sourcelist</literal> gives the location of the sourcelist and "
@@ -4381,7 +4440,7 @@ msgstr ""
"<envar>APT_CONFIG</envar>)."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:595
+#: apt.conf.5.xml:613
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 "
@@ -4392,7 +4451,7 @@ msgstr ""
"Al finalizar este proceso carga el fichero de configuración principal."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:599
+#: apt.conf.5.xml:617
msgid ""
"Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
"Bin::Methods</literal> specifies the location of the method handlers and "
@@ -4409,7 +4468,7 @@ msgstr ""
"literal> especifican la ubicación de sus respectivos programas."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:607
+#: apt.conf.5.xml:625
msgid ""
"The configuration item <literal>RootDir</literal> has a special meaning. If "
"set, all paths in <literal>Dir::</literal> will be relative to "
@@ -4430,7 +4489,7 @@ msgstr ""
"staging/var/lib/dpkg/status</filename>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:620
+#: apt.conf.5.xml:638
msgid ""
"The <literal>Ignore-Files-Silently</literal> list can be used to specify "
"which files APT should silently ignore while parsing the files in the "
@@ -4448,12 +4507,12 @@ msgstr ""
"de expresiones regulares."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:629
+#: apt.conf.5.xml:647
msgid "APT in DSelect"
msgstr "APT con DSelect"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:631
+#: apt.conf.5.xml:649
msgid ""
"When APT is used as a &dselect; method several configuration directives "
"control the default behavior. These are in the <literal>DSelect</literal> "
@@ -4464,7 +4523,7 @@ msgstr ""
"encuentran en la sección <literal>DSelect</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:636
+#: apt.conf.5.xml:654
msgid ""
"Cache Clean mode; this value may be one of <literal>always</literal>, "
"<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</"
@@ -4486,7 +4545,7 @@ msgstr ""
"realiza esta acción antes de descargar paquetes nuevos."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:650
+#: apt.conf.5.xml:668
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the install phase."
@@ -4495,7 +4554,7 @@ msgstr ""
"la línea de ordenes al ejecutar la fase de instalación."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:655
+#: apt.conf.5.xml:673
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the update phase."
@@ -4504,7 +4563,7 @@ msgstr ""
"la línea de ordenes al ejecutar la fase de actualización."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:660
+#: apt.conf.5.xml:678
msgid ""
"If true the [U]pdate operation in &dselect; will always prompt to continue. "
"The default is to prompt only on error."
@@ -4514,12 +4573,12 @@ msgstr ""
"preguntará en caso de error."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:666
+#: apt.conf.5.xml:684
msgid "How APT calls &dpkg;"
msgstr "Invocación de APT a dpkg"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:667
+#: apt.conf.5.xml:685
msgid ""
"Several configuration directives control how APT invokes &dpkg;. These are "
"in the <literal>DPkg</literal> section."
@@ -4528,7 +4587,7 @@ msgstr ""
"se encuentran en la sección <literal>DPkg</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:672
+#: apt.conf.5.xml:690
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 "
@@ -4539,7 +4598,7 @@ msgstr ""
"introduce a &dpkg; como un sólo argumento."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:678
+#: apt.conf.5.xml:696
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 "
@@ -4552,13 +4611,21 @@ msgstr ""
"sh</filename>; en caso de fallo, APT cancela la acción."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:685
+#: apt.conf.5.xml:703
+#, fuzzy
+#| msgid ""
+#| "This is a list of shell commands to run before invoking &dpkg;. Like "
+#| "<literal>options</literal> this must be specified in list notation. The "
+#| "commands are invoked in order using <filename>/bin/sh</filename>; should "
+#| "any fail APT will abort. APT will pass the filenames of all .deb files it "
+#| "is going to install to the commands, one per line on standard input."
msgid ""
"This is a list of shell commands to run before invoking &dpkg;. Like "
"<literal>options</literal> this must be specified in list notation. The "
"commands are invoked in order using <filename>/bin/sh</filename>; should any "
"fail APT will abort. APT will pass the filenames of all .deb files it is "
-"going to install to the commands, one per line on standard input."
+"going to install to the commands, one per line on the requested file "
+"descriptor, defaulting to standard input."
msgstr ""
"Es una lista de órdenes de la consola que se ejecutarán antes de invocar a "
"&dpkg;. Como <literal>options</literal>, se debe especificar con notación de "
@@ -4568,13 +4635,19 @@ msgstr ""
"la entrada estándar."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:691
+#: apt.conf.5.xml:710
+#, fuzzy
+#| msgid ""
+#| "Version 2 of this protocol dumps more information, including the protocol "
+#| "version, the APT configuration space and the packages, files and versions "
+#| "being changed. Version 2 is enabled by setting <literal>DPkg::Tools::"
+#| "options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command "
+#| "given to <literal>Pre-Install-Pkgs</literal>."
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 3 adds the architecture and <literal>MultiArch</"
+"literal> flag to each version being dumped."
msgstr ""
"La versión 2 de este protocolo vuelca más información, incluyendo la versión "
"del protocolo, el espacio de configuración de APT y de los paquetes, los "
@@ -4584,7 +4657,29 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:699
+#: apt.conf.5.xml:715
+msgid ""
+"The version of the protocol to be used for the command "
+"<literal><replaceable>cmd</replaceable></literal> can be chosen by setting "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::Version</"
+"literal> accordingly, the default being version 1. If APT isn't supporting "
+"the requested version it will send the information in the highest version it "
+"has support for instead."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:722
+msgid ""
+"The file descriptor to be used to send the information can be requested with "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</"
+"literal> which defaults to <literal>0</literal> for standard input and is "
+"available since version 0.9.11. Support for the option can be detected by "
+"looking for the environment variable <envar>APT_HOOK_INFO_FD</envar> which "
+"contains the number of the used file descriptor as a confirmation."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:732
msgid ""
"APT chdirs to this directory before invoking &dpkg;, the default is "
"<filename>/</filename>."
@@ -4593,7 +4688,7 @@ msgstr ""
"predeterminado es <filename>/</filename>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:704
+#: apt.conf.5.xml:737
msgid ""
"These options are passed to &dpkg-buildpackage; when compiling packages; the "
"default is to disable signing and produce all binaries."
@@ -4603,12 +4698,12 @@ msgstr ""
"paquetes y a producir todos los binarios."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt.conf.5.xml:709
+#: apt.conf.5.xml:742
msgid "dpkg trigger usage (and related options)"
msgstr "Uso del disparador de dpkg (y de las opciones relacionadas)"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:710
+#: apt.conf.5.xml:743
msgid ""
"APT can call &dpkg; in such a way as to let it make aggressive use of "
"triggers over multiple calls of &dpkg;. Without further options &dpkg; will "
@@ -4635,7 +4730,7 @@ msgstr ""
"tiempo (o más) durante la configuración de todos los paquetes."
#. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
-#: apt.conf.5.xml:725
+#: apt.conf.5.xml:758
#, no-wrap
msgid ""
"DPkg::NoTriggers \"true\";\n"
@@ -4649,7 +4744,7 @@ msgstr ""
"DPkg::TriggersPending \"true\";"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:719
+#: apt.conf.5.xml:752
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 "
@@ -4673,7 +4768,7 @@ msgstr ""
"type=\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:732
+#: apt.conf.5.xml:765
msgid ""
"Add the no triggers flag to all &dpkg; calls (except the ConfigurePending "
"call). See &dpkg; if you are interested in what this actually means. In "
@@ -4696,7 +4791,7 @@ msgstr ""
"eliminación."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:740
+#: apt.conf.5.xml:773
msgid ""
"Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
"and \"<literal>no</literal>\". The default value is \"<literal>all</literal>"
@@ -4726,7 +4821,7 @@ msgstr ""
"imposibilidad de arrancar el sistema. "
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:755
+#: apt.conf.5.xml:788
msgid ""
"If this option is set APT will call <command>dpkg --configure --pending</"
"command> to let &dpkg; handle all required configurations and triggers. This "
@@ -4744,7 +4839,7 @@ msgstr ""
"desactivar esta opción en todas las ejecuciones menos la última."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:762
+#: apt.conf.5.xml:795
msgid ""
"Useful for the <literal>smart</literal> configuration as a package which has "
"pending triggers is not considered as <literal>installed</literal>, and "
@@ -4760,7 +4855,7 @@ msgstr ""
"los disparadores necesarios para configurar este paquete."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:775
+#: apt.conf.5.xml:808
#, no-wrap
msgid ""
"OrderList::Score {\n"
@@ -4778,7 +4873,7 @@ msgstr ""
"};"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:768
+#: apt.conf.5.xml:801
msgid ""
"Essential packages (and their dependencies) should be configured immediately "
"after unpacking. It is a good idea to do this quite early in the upgrade "
@@ -4803,12 +4898,12 @@ msgstr ""
"<placeholder type=\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:788
+#: apt.conf.5.xml:821
msgid "Periodic and Archives options"
msgstr "Las opciones «Periodic» y «Archives»"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:789
+#: apt.conf.5.xml:822
msgid ""
"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
"of options configure behavior of apt periodic updates, which is done by the "
@@ -4822,12 +4917,12 @@ msgstr ""
"documentación de estas opciones."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:797
+#: apt.conf.5.xml:830
msgid "Debug options"
msgstr "Opciones de depuración"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:799
+#: apt.conf.5.xml:832
msgid ""
"Enabling options in the <literal>Debug::</literal> section will cause "
"debugging information to be sent to the standard error stream of the program "
@@ -4844,7 +4939,7 @@ msgstr ""
"para un usuario normal, aunque unas cuantas sí son:"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:810
+#: apt.conf.5.xml:843
msgid ""
"<literal>Debug::pkgProblemResolver</literal> enables output about the "
"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@ -4855,7 +4950,7 @@ msgstr ""
"purge</literal>."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:818
+#: apt.conf.5.xml:851
msgid ""
"<literal>Debug::NoLocking</literal> disables all file locking. This can be "
"used to run some operations (for instance, <literal>apt-get -s install</"
@@ -4866,7 +4961,7 @@ msgstr ""
"<literal>apt-get -s install</literal>) como un usuario normal."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:827
+#: apt.conf.5.xml:860
msgid ""
"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
"time that <literal>apt</literal> invokes &dpkg;."
@@ -4878,7 +4973,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:835
+#: apt.conf.5.xml:868
msgid ""
"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
"in CD-ROM IDs."
@@ -4887,14 +4982,14 @@ msgstr ""
"statfs en los identificadores de los discos ópticos."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:845
+#: apt.conf.5.xml:878
msgid "A full list of debugging options to apt follows."
msgstr ""
"A continuación, se muestra la lista completa de las opciones de depuración "
"de apt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:854
+#: apt.conf.5.xml:887
msgid ""
"Print information related to accessing <literal>cdrom://</literal> sources."
msgstr ""
@@ -4902,26 +4997,26 @@ msgstr ""
"<literal>cdrom://</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:865
+#: apt.conf.5.xml:898
msgid "Print information related to downloading packages using FTP."
msgstr ""
"Muestra la información relacionada con la descarga de paquetes mediante FTP."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:876
+#: apt.conf.5.xml:909
msgid "Print information related to downloading packages using HTTP."
msgstr ""
"Muestra la información relacionada con la descarga de paquetes mediante HTTP."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:887
+#: apt.conf.5.xml:920
msgid "Print information related to downloading packages using HTTPS."
msgstr ""
"Muestra la información relacionada con la descarga de paquetes mediante "
"HTTPS."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:898
+#: apt.conf.5.xml:931
msgid ""
"Print information related to verifying cryptographic signatures using "
"<literal>gpg</literal>."
@@ -4930,7 +5025,7 @@ msgstr ""
"criptográficas mediante <literal>gpg</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:909
+#: apt.conf.5.xml:942
msgid ""
"Output information about the process of accessing collections of packages "
"stored on CD-ROMs."
@@ -4939,14 +5034,14 @@ msgstr ""
"paquetes almacenadas en CD-ROM."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:919
+#: apt.conf.5.xml:952
msgid "Describes the process of resolving build-dependencies in &apt-get;."
msgstr ""
"Describe el proceso de resolución de dependencias de compilación en &apt-"
"get;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:929
+#: apt.conf.5.xml:962
msgid ""
"Output each cryptographic hash that is generated by the <literal>apt</"
"literal> libraries."
@@ -4955,7 +5050,7 @@ msgstr ""
"<literal>apt</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:939
+#: apt.conf.5.xml:972
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 "
@@ -4966,7 +5061,7 @@ msgstr ""
"identificador de un CD-ROM."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:950
+#: apt.conf.5.xml:983
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."
@@ -4976,14 +5071,14 @@ msgstr ""
"a la vez."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:962
+#: apt.conf.5.xml:995
msgid "Log when items are added to or removed from the global download queue."
msgstr ""
"Registra los elementos que se añaden o se borran de la cola de descarga "
"global."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:972
+#: apt.conf.5.xml:1005
msgid ""
"Output status messages and errors related to verifying checksums and "
"cryptographic signatures of downloaded files."
@@ -4993,7 +5088,7 @@ msgstr ""
"ficheros descargados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:982
+#: apt.conf.5.xml:1015
msgid ""
"Output information about downloading and applying package index list diffs, "
"and errors relating to package index list diffs."
@@ -5002,7 +5097,7 @@ msgstr ""
"lista de índices de paquetes, y los errores relacionados con éstos."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:994
+#: apt.conf.5.xml:1027
msgid ""
"Output information related to patching apt package lists when downloading "
"index diffs instead of full indices."
@@ -5012,7 +5107,7 @@ msgstr ""
"índices completos."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1005
+#: apt.conf.5.xml:1038
msgid ""
"Log all interactions with the sub-processes that actually perform downloads."
msgstr ""
@@ -5020,7 +5115,7 @@ msgstr ""
"descargas."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1016
+#: apt.conf.5.xml:1049
msgid ""
"Log events related to the automatically-installed status of packages and to "
"the removal of unused packages."
@@ -5029,7 +5124,7 @@ msgstr ""
"de los paquetes y con la eliminación de los paquetes sin usar."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1026
+#: apt.conf.5.xml:1059
msgid ""
"Generate debug messages describing which packages are being automatically "
"installed to resolve dependencies. This corresponds to the initial auto-"
@@ -5045,7 +5140,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1040
+#: apt.conf.5.xml:1073
msgid ""
"Generate debug messages describing which packages are marked as keep/install/"
"remove while the ProblemResolver does his work. Each addition or deletion "
@@ -5076,7 +5171,7 @@ msgstr ""
"la sección en la que aparece el paquete."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1061
+#: apt.conf.5.xml:1094
msgid ""
"When invoking &dpkg;, output the precise command line with which it is being "
"invoked, with arguments separated by a single space character."
@@ -5085,7 +5180,7 @@ msgstr ""
"invocó, con los argumentos separados por un espacio."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1072
+#: apt.conf.5.xml:1105
msgid ""
"Output all the data received from &dpkg; on the status file descriptor and "
"any errors encountered while parsing it."
@@ -5094,7 +5189,7 @@ msgstr ""
"estado y cualquier error encontrado durante el análisis."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1083
+#: apt.conf.5.xml:1116
msgid ""
"Generate a trace of the algorithm that decides the order in which "
"<literal>apt</literal> should pass packages to &dpkg;."
@@ -5103,7 +5198,7 @@ msgstr ""
"literal> debería entregar los paquetes a &dpkg;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1095
+#: apt.conf.5.xml:1128
msgid ""
"Output status messages tracing the steps performed when invoking &dpkg;."
msgstr ""
@@ -5111,12 +5206,12 @@ msgstr ""
"&dpkg;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1106
+#: apt.conf.5.xml:1139
msgid "Output the priority of each package list on startup."
msgstr "Muestra la prioridad de cada lista de paquetes al iniciarse."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1116
+#: apt.conf.5.xml:1149
msgid ""
"Trace the execution of the dependency resolver (this applies only to what "
"happens when a complex dependency problem is encountered)."
@@ -5125,7 +5220,7 @@ msgstr ""
"lo que ocurre cuando se encuentra un problema de dependencias complejo)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1127
+#: apt.conf.5.xml:1160
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 "
@@ -5136,7 +5231,7 @@ msgstr ""
"misma que la descrita en <literal>Debug::pkgDepCache::Marker</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1139
+#: apt.conf.5.xml:1172
msgid ""
"Print information about the vendors read from <filename>/etc/apt/vendors."
"list</filename>."
@@ -5145,13 +5240,13 @@ msgstr ""
"vendors.list</filename>."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:1161 apt_preferences.5.xml:545 sources.list.5.xml:211
-#: apt-ftparchive.1.xml:596
+#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:217
+#: apt-ftparchive.1.xml:598
msgid "Examples"
msgstr "Ejemplos"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1162
+#: apt.conf.5.xml:1195
msgid ""
"&configureindex; is a configuration file showing example values for all "
"possible options."
@@ -5161,17 +5256,17 @@ msgstr ""
#. ? reading apt.conf
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1174
+#: apt.conf.5.xml:1207
msgid "&apt-cache;, &apt-config;, &apt-preferences;."
msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt_preferences.5.xml:32
+#: apt_preferences.5.xml:34
msgid "Preference control file for APT"
msgstr "Fichero de preferencias de APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:37
+#: apt_preferences.5.xml:39
msgid ""
"The APT preferences file <filename>/etc/apt/preferences</filename> and the "
"fragment files in the <filename>/etc/apt/preferences.d/</filename> folder "
@@ -5184,7 +5279,7 @@ msgstr ""
"paquetes seleccionados para su instalación."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:42
+#: apt_preferences.5.xml:44
msgid ""
"Several versions of a package may be available for installation when the "
"&sources-list; file contains references to more than one distribution (for "
@@ -5205,7 +5300,7 @@ msgstr ""
"usuario sobre qué versión se seleccionará para su instalación."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:52
+#: apt_preferences.5.xml:54
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 "
@@ -5220,7 +5315,7 @@ msgstr ""
"APT no modifican la elección del ejemplar, sólo la elección de la versión."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:59
+#: apt_preferences.5.xml:61
msgid ""
"Preferences are a strong power in the hands of a system administrator but "
"they can become also their biggest nightmare if used without care! APT will "
@@ -5244,7 +5339,7 @@ msgstr ""
"que no funcionen como se espera. Queda avisado."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:70
+#: apt_preferences.5.xml:72
msgid ""
"Note that the files in the <filename>/etc/apt/preferences.d</filename> "
"directory are parsed in alphanumeric ascending order and need to obey the "
@@ -5265,24 +5360,24 @@ msgstr ""
"Files-Silently</literal>. Si coincide, el fichero se ignora silenciosamente."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:79
+#: apt_preferences.5.xml:81
msgid "APT's Default Priority Assignments"
msgstr "Asignación de prioridades predeterminadas de APT "
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:94
+#: apt_preferences.5.xml:96
#, no-wrap
msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n"
msgstr "<command>apt-get install -t testing <replaceable>paquete</replaceable></command>\n"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:97
+#: apt_preferences.5.xml:99
#, 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:81
+#: apt_preferences.5.xml:83
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 "
@@ -5310,7 +5405,7 @@ msgstr ""
"\"0\"/><placeholder type=\"programlisting\" id=\"1\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:101
+#: apt_preferences.5.xml:103
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:"
@@ -5320,12 +5415,12 @@ msgstr ""
"Asignar: "
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:106
+#: apt_preferences.5.xml:108
msgid "priority 1"
msgstr "priority 1"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:107
+#: apt_preferences.5.xml:109
msgid ""
"to the versions coming from archives which in their <filename>Release</"
"filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</"
@@ -5338,12 +5433,12 @@ msgstr ""
"literal> de Debian."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:113
+#: apt_preferences.5.xml:115
msgid "priority 100"
msgstr "prioridad 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:114
+#: apt_preferences.5.xml:116
msgid ""
"to the version that is already installed (if any) and to the versions coming "
"from archives which in their <filename>Release</filename> files are marked "
@@ -5357,12 +5452,12 @@ msgstr ""
"<literal>squeeze-backports</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:121
+#: apt_preferences.5.xml:123
msgid "priority 500"
msgstr "prioridad 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:122
+#: apt_preferences.5.xml:124
msgid ""
"to the versions that are not installed and do not belong to the target "
"release."
@@ -5371,12 +5466,12 @@ msgstr ""
"objetivo."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:126
+#: apt_preferences.5.xml:128
msgid "priority 990"
msgstr "prioridad 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:127
+#: apt_preferences.5.xml:129
msgid ""
"to the versions that are not installed and belong to the target release."
msgstr ""
@@ -5384,7 +5479,7 @@ msgstr ""
"objetivo."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:132
+#: apt_preferences.5.xml:134
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 "
@@ -5401,7 +5496,7 @@ msgstr ""
"la opción «ButAutomaticUpgrades: yes»."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:139
+#: apt_preferences.5.xml:141
msgid ""
"APT then applies the following rules, listed in order of precedence, to "
"determine which version of a package to install."
@@ -5410,7 +5505,7 @@ msgstr ""
"determinar qué versión del paquete debe instalar."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:142
+#: apt_preferences.5.xml:144
msgid ""
"Never downgrade unless the priority of an available version exceeds 1000. "
"(\"Downgrading\" is installing a less recent version of a package in place "
@@ -5427,12 +5522,12 @@ msgstr ""
"ser peligroso)."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:148
+#: apt_preferences.5.xml:150
msgid "Install the highest priority version."
msgstr "Instala la versión de mayor prioridad."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:149
+#: apt_preferences.5.xml:151
msgid ""
"If two or more versions have the same priority, install the most recent one "
"(that is, the one with the higher version number)."
@@ -5441,7 +5536,7 @@ msgstr ""
"(esto es, la que tiene un número de versión mayor)."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:152
+#: apt_preferences.5.xml:154
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</"
@@ -5452,7 +5547,7 @@ msgstr ""
"<literal>--reinstall</literal>, se instalará la que no está instalada."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:158
+#: apt_preferences.5.xml:160
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 "
@@ -5467,7 +5562,7 @@ msgstr ""
"command> o <command>apt-get upgrade</command>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:165
+#: apt_preferences.5.xml:167
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 "
@@ -5481,7 +5576,7 @@ msgstr ""
"upgrade</command>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:170
+#: apt_preferences.5.xml:172
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 "
@@ -5500,12 +5595,12 @@ msgstr ""
"versión instalada."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:179
+#: apt_preferences.5.xml:181
msgid "The Effect of APT Preferences"
msgstr "El efecto de las preferencias sobre APT"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:181
+#: apt_preferences.5.xml:183
msgid ""
"The APT preferences file allows the system administrator to control the "
"assignment of priorities. The file consists of one or more multi-line "
@@ -5518,7 +5613,7 @@ msgstr ""
"registros pueden tener una de estos dos formatos: el específico o el general."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:187
+#: apt_preferences.5.xml:189
msgid ""
"The specific form assigns a priority (a \"Pin-Priority\") to one or more "
"specified packages with a specified version or version range. For example, "
@@ -5535,7 +5630,7 @@ msgstr ""
"paquetes separados por espacios."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:194
+#: apt_preferences.5.xml:196
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5547,7 +5642,7 @@ msgstr ""
"Pin-Priority: 1001\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:200
+#: apt_preferences.5.xml:202
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 "
@@ -5562,7 +5657,7 @@ msgstr ""
"identificado por su nombre de dominio."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:206
+#: apt_preferences.5.xml:208
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 "
@@ -5573,7 +5668,7 @@ msgstr ""
"prioridad alta a todas las versiones disponibles desde un sitio local."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:211
+#: apt_preferences.5.xml:213
#, no-wrap
msgid ""
"Package: *\n"
@@ -5585,7 +5680,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:216
+#: apt_preferences.5.xml:218
msgid ""
"A note of caution: the keyword used here is \"<literal>origin</literal>\" "
"which can be used to match a hostname. The following record will assign a "
@@ -5599,7 +5694,7 @@ msgstr ""
"debian.org»."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:220
+#: apt_preferences.5.xml:222
#, no-wrap
msgid ""
"Package: *\n"
@@ -5611,7 +5706,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:224
+#: apt_preferences.5.xml:226
msgid ""
"This should <emphasis>not</emphasis> be confused with the Origin of a "
"distribution as specified in a <filename>Release</filename> file. What "
@@ -5626,7 +5721,7 @@ msgstr ""
"sino el autor o el nombre del proveedor, tales como «Debian» o «Ximian»."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:229
+#: apt_preferences.5.xml:231
msgid ""
"The following record assigns a low priority to all package versions "
"belonging to any distribution whose Archive name is \"<literal>unstable</"
@@ -5637,7 +5732,7 @@ msgstr ""
"archivo de paquetes «<literal>unstable</literal>» (inestable)."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:233
+#: apt_preferences.5.xml:235
#, no-wrap
msgid ""
"Package: *\n"
@@ -5649,7 +5744,7 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:238
+#: apt_preferences.5.xml:240
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any distribution whose Codename is \"<literal>&testing-codename;"
@@ -5660,7 +5755,7 @@ msgstr ""
"«<literal>&testing-codename;</literal>»."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:242
+#: apt_preferences.5.xml:244
#, no-wrap
msgid ""
"Package: *\n"
@@ -5672,7 +5767,7 @@ msgstr ""
"Pin-Priority: 900\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:247
+#: apt_preferences.5.xml:249
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any release whose Archive name is \"<literal>stable</literal>\" "
@@ -5684,7 +5779,7 @@ msgstr ""
"«<literal>&stable-version;</literal>»."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:252
+#: apt_preferences.5.xml:254
#, no-wrap
msgid ""
"Package: *\n"
@@ -5696,12 +5791,12 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:262
+#: apt_preferences.5.xml:264
msgid "Regular expressions and &glob; syntax"
msgstr "Expresiones regulares y sintaxis &glob;"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:264
+#: apt_preferences.5.xml:266
msgid ""
"APT also supports pinning by &glob; expressions, and regular expressions "
"surrounded by slashes. For example, the following example assigns the "
@@ -5716,7 +5811,7 @@ msgstr ""
"«kde» (como expresión regular extendida POSIX delimitada por barras)."
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:273
+#: apt_preferences.5.xml:275
#, no-wrap
msgid ""
"Package: gnome* /kde/\n"
@@ -5728,7 +5823,7 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:279
+#: apt_preferences.5.xml:281
msgid ""
"The rule for those expressions is that they can occur anywhere where a "
"string can occur. Thus, the following pin assigns the priority 990 to all "
@@ -5739,7 +5834,7 @@ msgstr ""
"paquetes provenientes de una publicación a partir de &ubuntu-codename;."
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:285
+#: apt_preferences.5.xml:287
#, no-wrap
msgid ""
"Package: *\n"
@@ -5751,7 +5846,7 @@ msgstr ""
"Pin-Priority: 990\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:291
+#: apt_preferences.5.xml:293
msgid ""
"If a regular expression occurs in a <literal>Package</literal> field, the "
"behavior is the same as if this regular expression were replaced with a list "
@@ -5769,12 +5864,12 @@ msgstr ""
"literal>» en un campo «Package» no se considera una expresión &glob;."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:307
+#: apt_preferences.5.xml:309
msgid "How APT Interprets Priorities"
msgstr "Interpretación de APT de las prioridades"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:310
+#: apt_preferences.5.xml:312
msgid ""
"Priorities (P) assigned in the APT preferences file must be positive or "
"negative integers. They are interpreted as follows (roughly speaking):"
@@ -5784,12 +5879,12 @@ msgstr ""
"siguiente modo:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:315
+#: apt_preferences.5.xml:317
msgid "P &gt;= 1000"
msgstr "P &gt;= 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:316
+#: apt_preferences.5.xml:318
msgid ""
"causes a version to be installed even if this constitutes a downgrade of the "
"package"
@@ -5798,12 +5893,12 @@ msgstr ""
"el sistema."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:320
+#: apt_preferences.5.xml:322
msgid "990 &lt;= P &lt; 1000"
msgstr "990 &lt;= P &lt; 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:321
+#: apt_preferences.5.xml:323
msgid ""
"causes a version to be installed even if it does not come from the target "
"release, unless the installed version is more recent"
@@ -5812,12 +5907,12 @@ msgstr ""
"que la versión instalada sea más reciente."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:326
+#: apt_preferences.5.xml:328
msgid "500 &lt;= P &lt; 990"
msgstr "500 &lt;= P &lt; 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:327
+#: apt_preferences.5.xml:329
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"
@@ -5827,12 +5922,12 @@ msgstr ""
"más reciente."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:332
+#: apt_preferences.5.xml:334
msgid "100 &lt;= P &lt; 500"
msgstr "100 &lt;= P &lt; 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:333
+#: apt_preferences.5.xml:335
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"
@@ -5841,12 +5936,12 @@ msgstr ""
"perteneciente a otra distribución, o si la versión instalada es más reciente."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:338
+#: apt_preferences.5.xml:340
msgid "0 &lt; P &lt; 100"
msgstr "0 &lt; P &lt; 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:339
+#: apt_preferences.5.xml:341
msgid ""
"causes a version to be installed only if there is no installed version of "
"the package"
@@ -5854,17 +5949,17 @@ msgstr ""
"La versión sólo se instala si no hay ninguna versión del paquete instalada."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:343
+#: apt_preferences.5.xml:345
msgid "P &lt; 0"
msgstr "P &lt; 0"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:344
+#: apt_preferences.5.xml:346
msgid "prevents the version from being installed"
msgstr "Evita la instalación de la versión."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:349
+#: apt_preferences.5.xml:351
msgid ""
"If any specific-form records match an available package version then the "
"first such record determines the priority of the package version. Failing "
@@ -5878,7 +5973,7 @@ msgstr ""
"versión del paquete."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:355
+#: apt_preferences.5.xml:357
msgid ""
"For example, suppose the APT preferences file contains the three records "
"presented earlier:"
@@ -5887,7 +5982,7 @@ msgstr ""
"registros antes mencionados:"
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:359
+#: apt_preferences.5.xml:361
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5915,12 +6010,12 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:372
+#: apt_preferences.5.xml:374
msgid "Then:"
msgstr "Por ello:"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:374
+#: apt_preferences.5.xml:376
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 "
@@ -5935,7 +6030,7 @@ msgstr ""
"perl;*, se instalará una versión anterior de <literal>perl</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:379
+#: apt_preferences.5.xml:381
msgid ""
"A version of any package other than <literal>perl</literal> that is "
"available from the local system has priority over other versions, even "
@@ -5946,7 +6041,7 @@ msgstr ""
"versiones, incluso sobre los pertenecientes a la distribución objetivo."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:383
+#: apt_preferences.5.xml:385
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</"
@@ -5959,12 +6054,12 @@ msgstr ""
"hay ninguna versión del paquete ya instalado."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:393
+#: apt_preferences.5.xml:395
msgid "Determination of Package Version and Distribution Properties"
msgstr "Determinar la versión del paquete y las propiedades de la distribución"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:395
+#: apt_preferences.5.xml:397
msgid ""
"The locations listed in the &sources-list; file should provide "
"<filename>Packages</filename> and <filename>Release</filename> files to "
@@ -5975,7 +6070,7 @@ msgstr ""
"describen los paquetes disponibles en cada uno de los sitios."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:399
+#: apt_preferences.5.xml:401
msgid ""
"The <filename>Packages</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable>/"
@@ -5995,27 +6090,27 @@ msgstr ""
"de APT:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:407
+#: apt_preferences.5.xml:409
msgid "the <literal>Package:</literal> line"
msgstr "La línea <literal>Package:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:408
+#: apt_preferences.5.xml:410
msgid "gives the package name"
msgstr "indica el nombre del paquete."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:411 apt_preferences.5.xml:461
+#: apt_preferences.5.xml:413 apt_preferences.5.xml:463
msgid "the <literal>Version:</literal> line"
msgstr "La línea <literal>Version:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:412
+#: apt_preferences.5.xml:414
msgid "gives the version number for the named package"
msgstr "indica el número de versión del paquete."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:417
+#: apt_preferences.5.xml:419
msgid ""
"The <filename>Release</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
@@ -6036,12 +6131,12 @@ msgstr ""
"son relevantes para las prioridades de APT:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:428
+#: apt_preferences.5.xml:430
msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
msgstr "Las líneas <literal>Archive:</literal> o <literal>Suite:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:429
+#: apt_preferences.5.xml:431
msgid ""
"names the archive to which all the packages in the directory tree belong. "
"For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@ -6059,18 +6154,18 @@ msgstr ""
"línea en el fichero de preferencias de APT:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:439
+#: apt_preferences.5.xml:441
#, 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:445
+#: apt_preferences.5.xml:447
msgid "the <literal>Codename:</literal> line"
msgstr "La línea <literal>Codename:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:446
+#: apt_preferences.5.xml:448
msgid ""
"names the codename to which all the packages in the directory tree belong. "
"For example, the line \"Codename: &testing-codename;\" specifies that all of "
@@ -6089,13 +6184,13 @@ msgstr ""
"de APT:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:455
+#: apt_preferences.5.xml:457
#, no-wrap
msgid "Pin: release n=&testing-codename;\n"
msgstr "Pin: release n=&testing-codename;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:462
+#: apt_preferences.5.xml:464
msgid ""
"names the release version. For example, the packages in the tree might "
"belong to Debian release version &stable-version;. Note that there is "
@@ -6112,7 +6207,7 @@ msgstr ""
"siguientes línea en el fichero de preferencias de APT:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:471
+#: apt_preferences.5.xml:473
#, no-wrap
msgid ""
"Pin: release v=&stable-version;\n"
@@ -6124,12 +6219,12 @@ msgstr ""
"Pin: release &stable-version;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:480
+#: apt_preferences.5.xml:482
msgid "the <literal>Component:</literal> line"
msgstr "La línea <literal>Component:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:481
+#: apt_preferences.5.xml:483
msgid ""
"names the licensing component associated with the packages in the directory "
"tree of the <filename>Release</filename> file. For example, the line "
@@ -6148,18 +6243,18 @@ msgstr ""
"de APT:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:490
+#: apt_preferences.5.xml:492
#, 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:496
+#: apt_preferences.5.xml:498
msgid "the <literal>Origin:</literal> line"
msgstr "La línea <literal>Origin:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:497
+#: apt_preferences.5.xml:499
msgid ""
"names the originator of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -6172,18 +6267,18 @@ msgstr ""
"mediante la siguiente línea:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:503
+#: apt_preferences.5.xml:505
#, 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:509
+#: apt_preferences.5.xml:511
msgid "the <literal>Label:</literal> line"
msgstr "La línea <literal>Label:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:510
+#: apt_preferences.5.xml:512
msgid ""
"names the label of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -6196,13 +6291,13 @@ msgstr ""
"siguiente línea:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:516
+#: apt_preferences.5.xml:518
#, 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:523
+#: apt_preferences.5.xml:525
msgid ""
"All of the <filename>Packages</filename> and <filename>Release</filename> "
"files retrieved from locations listed in the &sources-list; file are stored "
@@ -6227,12 +6322,12 @@ msgstr ""
"la distribución «<literal>unstable</literal>» (inestable)."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:536
+#: apt_preferences.5.xml:538
msgid "Optional Lines in an APT Preferences Record"
msgstr "Líneas opcionales en el registro de preferencias de APT"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:538
+#: apt_preferences.5.xml:540
msgid ""
"Each record in the APT preferences file can optionally begin with one or "
"more lines beginning with the word <literal>Explanation:</literal>. This "
@@ -6243,12 +6338,12 @@ msgstr ""
"Útil para comentarios."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:547
+#: apt_preferences.5.xml:549
msgid "Tracking Stable"
msgstr "Seguir la distribución «stable» (estable)"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:555
+#: apt_preferences.5.xml:557
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated\n"
@@ -6272,7 +6367,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:549
+#: apt_preferences.5.xml:551
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 "
@@ -6287,8 +6382,8 @@ msgstr ""
"<literal>Debian</literal>. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:572 apt_preferences.5.xml:618
-#: apt_preferences.5.xml:676
+#: apt_preferences.5.xml:574 apt_preferences.5.xml:620
+#: apt_preferences.5.xml:678
#, no-wrap
msgid ""
"apt-get install <replaceable>package-name</replaceable>\n"
@@ -6300,7 +6395,7 @@ msgstr ""
"apt-get dist-upgrade\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:567
+#: apt_preferences.5.xml:569
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 "
@@ -6314,13 +6409,13 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:584
+#: apt_preferences.5.xml:586
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/testing\n"
msgstr "apt-get install <replaceable>paquete</replaceable>/testing\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:578
+#: apt_preferences.5.xml:580
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>testing</literal> distribution; the package "
@@ -6333,12 +6428,12 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:590
+#: apt_preferences.5.xml:592
msgid "Tracking Testing or Unstable"
msgstr "Seguir la distribución «testing» (en pruebas) o «unstable» (inestable)"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:599
+#: apt_preferences.5.xml:601
#, no-wrap
msgid ""
"Package: *\n"
@@ -6366,7 +6461,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:592
+#: apt_preferences.5.xml:594
msgid ""
"The following APT preferences file will cause APT to assign a high priority "
"to package versions from the <literal>testing</literal> distribution, a "
@@ -6383,7 +6478,7 @@ msgstr ""
">"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:613
+#: apt_preferences.5.xml:615
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 "
@@ -6396,13 +6491,13 @@ msgstr ""
"<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:633
+#: apt_preferences.5.xml:635
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
msgstr "apt-get install <replaceable>paquete</replaceable>/unstable\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:624
+#: apt_preferences.5.xml:626
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>unstable</literal> distribution. "
@@ -6421,12 +6516,12 @@ msgstr ""
"instalada. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:640
+#: apt_preferences.5.xml:642
msgid "Tracking the evolution of a codename release"
msgstr "Seguir la evolución de una publicación por el nombre"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:654
+#: apt_preferences.5.xml:656
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@ -6460,7 +6555,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:642
+#: apt_preferences.5.xml:644
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 "
@@ -6487,7 +6582,7 @@ msgstr ""
"\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:671
+#: apt_preferences.5.xml:673
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 "
@@ -6501,13 +6596,13 @@ msgstr ""
"id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:691
+#: apt_preferences.5.xml:693
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/sid\n"
msgstr "apt-get install <replaceable>paquete</replaceable>/sid\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:682
+#: apt_preferences.5.xml:684
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>sid</literal> distribution. Thereafter, "
@@ -6526,17 +6621,17 @@ msgstr ""
"instalada. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:706
+#: apt_preferences.5.xml:708
msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: sources.list.5.xml:33
+#: sources.list.5.xml:35
msgid "List of configured APT data sources"
msgstr "Lista de fuentes de datos de APT configurados"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:38
+#: sources.list.5.xml:40
msgid ""
"The source list <filename>/etc/apt/sources.list</filename> is designed to "
"support any number of active sources and a variety of source media. The file "
@@ -6553,7 +6648,7 @@ msgstr ""
"command> (o una orden equivalente de una interfaz de APT)."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:45
+#: sources.list.5.xml:47
msgid ""
"Each line specifying a source starts with type (e.g. <literal>deb-src</"
"literal>) followed by options and arguments for this type. Individual "
@@ -6568,12 +6663,12 @@ msgstr ""
"cualquier lugar de la línea marca los caracteres restantes como comentario."
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:53
+#: sources.list.5.xml:55
msgid "sources.list.d"
msgstr "sources.list.d"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:54
+#: sources.list.5.xml:56
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 "
@@ -6595,12 +6690,12 @@ msgstr ""
"silenciosamente."
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:65
+#: sources.list.5.xml:67
msgid "The deb and deb-src types"
msgstr "Los tipos «deb» y «deb-src»"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:66
+#: sources.list.5.xml:68
msgid ""
"The <literal>deb</literal> type references a typical two-level Debian "
"archive, <filename>distribution/component</filename>. The "
@@ -6626,7 +6721,7 @@ msgstr ""
"literal> para obtener los índices de fuentes."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:78
+#: sources.list.5.xml:80
msgid ""
"The format for a <filename>sources.list</filename> entry using the "
"<literal>deb</literal> and <literal>deb-src</literal> types is:"
@@ -6635,13 +6730,13 @@ msgstr ""
"usando los tipos <literal>deb</literal> y <literal>deb-src</literal> es:"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:81
+#: sources.list.5.xml:83
#, no-wrap
msgid "deb [ options ] uri distribution [component1] [component2] [...]"
msgstr "deb [ opciones ] uri distribución [componente1] [componente2] [...]"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:83
+#: sources.list.5.xml:85
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. "
@@ -6662,7 +6757,7 @@ msgstr ""
"<literal>distribución</literal> no define una ruta exacta."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:92
+#: sources.list.5.xml:94
msgid ""
"<literal>distribution</literal> may also contain a variable, <literal>"
"$(ARCH)</literal> which expands to the Debian architecture (such as "
@@ -6682,7 +6777,7 @@ msgstr ""
"sistema."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:100
+#: sources.list.5.xml:102
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 "
@@ -6708,7 +6803,7 @@ msgstr ""
"aprovechar mejor el ancho de banda."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:112
+#: sources.list.5.xml:114
msgid ""
"<literal>options</literal> is always optional and needs to be surrounded by "
"square brackets. It can consist of multiple settings in the form "
@@ -6725,7 +6820,7 @@ msgstr ""
"ignoran silenciosamente):"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:117
+#: sources.list.5.xml:120
msgid ""
"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
"replaceable>,…</literal> can be used to specify for which architectures "
@@ -6740,7 +6835,28 @@ msgstr ""
"arquitecturas definidas por la opción <literal>APT::Architectures</literal>."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:121
+#: sources.list.5.xml:124
+#, fuzzy
+#| msgid ""
+#| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+#| "replaceable>,…</literal> can be used to specify for which architectures "
+#| "information should be downloaded. If this option is not set all "
+#| "architectures defined by the <literal>APT::Architectures</literal> option "
+#| "will be downloaded."
+msgid ""
+"<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>,"
+"<replaceable>arch2</replaceable>,…</literal> which can be used to add/remove "
+"architectures from the set which will be downloaded."
+msgstr ""
+"<literal>arch=<replaceable>arquitecura1</replaceable>,"
+"<replaceable>arquitecura2</replaceable>,…</literal> se puede utilizar para "
+"definir la arquitectura para la que se descarga información sobre "
+"arquitecturas. Si no se define esta opción, se descargarán todas las "
+"arquitecturas definidas por la opción <literal>APT::Architectures</literal>."
+
+#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
+#: sources.list.5.xml:127
msgid ""
"<literal>trusted=yes</literal> can be set to indicate that packages from "
"this source are always authenticated even if the <filename>Release</"
@@ -6758,7 +6874,7 @@ msgstr ""
"autenticadas no lo están."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:128
+#: sources.list.5.xml:134
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 "
@@ -6771,12 +6887,12 @@ msgstr ""
"seguidos por servidores de Internet distantes, por ejemplo)."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:133
+#: sources.list.5.xml:139
msgid "Some examples:"
msgstr "Algunos ejemplos:"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:135
+#: sources.list.5.xml:141
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@ -6788,17 +6904,17 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:141
+#: sources.list.5.xml:147
msgid "URI specification"
msgstr "Especificación del URI"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:143
+#: sources.list.5.xml:149
msgid "The currently recognized URI types are:"
msgstr "Los tipos de URI permitidos actualmente son:"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:147
+#: sources.list.5.xml:153
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 "
@@ -6809,7 +6925,7 @@ msgstr ""
"particiones montadas mediante NFS y réplicas o archivos de paquetes locales."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:154
+#: sources.list.5.xml:160
msgid ""
"The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. "
"Use the &apt-cdrom; program to create cdrom entries in the source list."
@@ -6819,7 +6935,7 @@ msgstr ""
"list»."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:161
+#: sources.list.5.xml:167
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:"
@@ -6837,7 +6953,7 @@ msgstr ""
"autenticación no es seguro."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:172
+#: sources.list.5.xml:178
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. "
@@ -6858,7 +6974,7 @@ msgstr ""
"fichero de configuración."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:184
+#: sources.list.5.xml:190
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. "
@@ -6871,7 +6987,7 @@ msgstr ""
"permite realizar la copia de ficheros con APT."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:191
+#: sources.list.5.xml:197
msgid ""
"The rsh/ssh method invokes RSH/SSH to connect to a remote host and access "
"the files as a given user. Prior configuration of rhosts or RSA keys is "
@@ -6885,12 +7001,12 @@ msgstr ""
"transferencia de ficheros desde la máquina remota."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
-#: sources.list.5.xml:198
+#: sources.list.5.xml:204
msgid "adding more recognizable URI types"
msgstr "Añadir más tipos de URI reconocidos."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:200
+#: sources.list.5.xml:206
msgid ""
"APT can be extended with more methods shipped in other optional packages, "
"which should follow the naming scheme <package>apt-transport-"
@@ -6909,7 +7025,7 @@ msgstr ""
"debtorrent, consulte &apt-transport-debtorrent;."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:212
+#: sources.list.5.xml:218
msgid ""
"Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
"stable/main, stable/contrib, and stable/non-free."
@@ -6918,36 +7034,36 @@ msgstr ""
"para «stable/main», «stable/contrib», y «stable/non-free»."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:214
+#: sources.list.5.xml:220
#, 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:216
+#: sources.list.5.xml:222
msgid "As above, except this uses the unstable (development) distribution."
msgstr ""
"Como arriba, excepto que usa la distribución «unstable» (en desarrollo)."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:217
+#: sources.list.5.xml:223
#, 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:219
+#: sources.list.5.xml:225
msgid "Source line for the above"
msgstr "Línea para obtener el código fuente desde la ubicación anterior."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:220
+#: sources.list.5.xml:226
#, 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:222
+#: sources.list.5.xml:228
msgid ""
"The first line gets package information for the architectures in "
"<literal>APT::Architectures</literal> while the second always retrieves "
@@ -6958,7 +7074,7 @@ msgstr ""
"obtiene <literal>amd64</literal> y <literal>armel</literal>."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:224
+#: sources.list.5.xml:230
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main\n"
@@ -6968,7 +7084,7 @@ msgstr ""
"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:227
+#: sources.list.5.xml:233
msgid ""
"Uses HTTP to access the archive at archive.debian.org, and uses only the "
"hamm/main area."
@@ -6977,13 +7093,13 @@ msgstr ""
"usa sólo la sección «hamm/main»."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:229
+#: sources.list.5.xml:235
#, 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:231
+#: sources.list.5.xml:237
msgid ""
"Uses FTP to access the archive at ftp.debian.org, under the debian "
"directory, and uses only the &stable-codename;/contrib area."
@@ -6992,13 +7108,13 @@ msgstr ""
"del directorio «debian», y usa sólo la sección «&stable-codename;/contrib»."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:233
+#: sources.list.5.xml:239
#, no-wrap
msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:235
+#: sources.list.5.xml:241
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 "
@@ -7011,19 +7127,19 @@ msgstr ""
"filename>, se usará sólo una sesión FTP para ambas."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:239
+#: sources.list.5.xml:245
#, 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><literallayout>
-#: sources.list.5.xml:248
+#: sources.list.5.xml:254
#, no-wrap
msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:241
+#: sources.list.5.xml:247
msgid ""
"Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
"directory, and uses only files found under <filename>unstable/binary-i386</"
@@ -7042,17 +7158,17 @@ msgstr ""
"tiene esta estructura.) <placeholder type=\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:253
+#: sources.list.5.xml:259
msgid "&apt-cache; &apt-conf;"
msgstr "&apt-cache; &apt-conf;"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-extracttemplates.1.xml:26 apt-sortpkgs.1.xml:26 apt-ftparchive.1.xml:26
+#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28
msgid "1"
msgstr "1"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-extracttemplates.1.xml:33
+#: apt-extracttemplates.1.xml:35
msgid ""
"Utility to extract <command>debconf</command> config and templates from "
"Debian packages"
@@ -7061,7 +7177,7 @@ msgstr ""
"plantillas de paquetes de Debian"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:39
+#: apt-extracttemplates.1.xml:41
msgid ""
"<command>apt-extracttemplates</command> will take one or more Debian package "
"files as input and write out (to a temporary directory) all associated "
@@ -7076,12 +7192,12 @@ msgstr ""
"plantillas, se generará una salida de una línea con el formato:"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:44
+#: apt-extracttemplates.1.xml:46
msgid "package version template-file config-script"
msgstr "paquete versión fichero-de-plantilla script-de-configuración"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:45
+#: apt-extracttemplates.1.xml:47
msgid ""
"template-file and config-script are written to the temporary directory "
"specified by the <option>-t</option> or <option>--tempdir</option> "
@@ -7096,7 +7212,7 @@ msgstr ""
"XXXX</filename> y <filename>paquete.config.XXXX</filename>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-extracttemplates.1.xml:58
+#: apt-extracttemplates.1.xml:60
msgid ""
"Temporary directory in which to write extracted <command>debconf</command> "
"template files and config scripts. Configuration Item: <literal>APT::"
@@ -7107,7 +7223,7 @@ msgstr ""
"de configuración: <literal>APT::ExtractTemplates::TempDir</literal>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:75
+#: apt-extracttemplates.1.xml:77
msgid ""
"<command>apt-extracttemplates</command> returns zero on normal operation, "
"decimal 100 on error."
@@ -7116,12 +7232,12 @@ msgstr ""
"error, y el valor 100 en caso de error."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-sortpkgs.1.xml:33
+#: apt-sortpkgs.1.xml:35
msgid "Utility to sort package index files"
msgstr "Herramienta para ordenar los ficheros de índice de paquetes"
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:39
+#: apt-sortpkgs.1.xml:41
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 "
@@ -7134,7 +7250,7 @@ msgstr ""
"ordenación internas."
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:45
+#: apt-sortpkgs.1.xml:47
msgid ""
"All output is sent to standard output; the input must be a seekable file."
msgstr ""
@@ -7142,7 +7258,7 @@ msgstr ""
"fichero ubicable."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-sortpkgs.1.xml:54
+#: apt-sortpkgs.1.xml:56
msgid ""
"Use source index field ordering. Configuration Item: <literal>APT::"
"SortPkgs::Source</literal>."
@@ -7151,7 +7267,7 @@ msgstr ""
"configuración: <literal>APT::SortPkgs::Source</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:68
+#: apt-sortpkgs.1.xml:70
msgid ""
"<command>apt-sortpkgs</command> returns zero on normal operation, decimal "
"100 on error."
@@ -7160,12 +7276,12 @@ msgstr ""
"valor 100 en caso de error."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-ftparchive.1.xml:33
+#: apt-ftparchive.1.xml:35
msgid "Utility to generate index files"
msgstr "Herramienta para generar ficheros de índice"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:39
+#: apt-ftparchive.1.xml:41
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 "
@@ -7178,7 +7294,7 @@ msgstr ""
"de origen basado en el contenido de ese sitio."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:43
+#: apt-ftparchive.1.xml:45
msgid ""
"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; "
"program, incorporating its entire functionality via the <literal>packages</"
@@ -7193,7 +7309,7 @@ msgstr ""
"«script» para el proceso de generación de un archivo completo."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:49
+#: apt-ftparchive.1.xml:51
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 "
@@ -7208,7 +7324,7 @@ msgstr ""
"los ficheros y genera los ficheros de salida comprimidos deseados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:60
+#: apt-ftparchive.1.xml:62
msgid ""
"The packages command generates a package file from a directory tree. It "
"takes the given directory and recursively searches it for .deb files, "
@@ -7221,7 +7337,7 @@ msgstr ""
"orden es casi un equivalente de &dpkg-scanpackages;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:65 apt-ftparchive.1.xml:89
+#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91
msgid ""
"The option <option>--db</option> can be used to specify a binary caching DB."
msgstr ""
@@ -7229,7 +7345,7 @@ msgstr ""
"datos binaria para la caché (registro de paquetes)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:70
+#: apt-ftparchive.1.xml:72
msgid ""
"The <literal>sources</literal> command generates a source index file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -7243,7 +7359,7 @@ msgstr ""
"scansources;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:75
+#: apt-ftparchive.1.xml:77
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 "
@@ -7254,7 +7370,7 @@ msgstr ""
"para cambiar el fichero de fuentes alternativo que se usará."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:82
+#: apt-ftparchive.1.xml:84
msgid ""
"The <literal>contents</literal> command generates a contents file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -7272,7 +7388,7 @@ msgstr ""
"por una coma en la salida."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:94
+#: apt-ftparchive.1.xml:96
msgid ""
"The <literal>release</literal> command generates a Release file from a "
"directory tree. It recursively searches the given directory for uncompressed "
@@ -7298,7 +7414,7 @@ msgstr ""
"contiene una suma de control MD5, SHA1 y SHA256 para cada fichero."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:104
+#: apt-ftparchive.1.xml:106
msgid ""
"Values for the additional metadata fields in the Release file are taken from "
"the corresponding variables under <literal>APT::FTPArchive::Release</"
@@ -7319,7 +7435,7 @@ msgstr ""
"<literal>Components</literal> y <literal>Description</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:117
+#: apt-ftparchive.1.xml:119
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 "
@@ -7335,7 +7451,7 @@ msgstr ""
"configuración necesaria."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:126
+#: apt-ftparchive.1.xml:128
msgid ""
"The <literal>clean</literal> command tidies the databases used by the given "
"configuration file by removing any records that are no longer necessary."
@@ -7345,12 +7461,12 @@ msgstr ""
"necesarios."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:132
+#: apt-ftparchive.1.xml:134
msgid "The Generate Configuration"
msgstr "La configuración de «generate»"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:134
+#: apt-ftparchive.1.xml:136
msgid ""
"The <literal>generate</literal> command uses a configuration file to "
"describe the archives that are going to be generated. It follows the typical "
@@ -7368,7 +7484,7 @@ msgstr ""
"etiqueta."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:142
+#: apt-ftparchive.1.xml:144
msgid ""
"The generate configuration has four separate sections, each described below."
msgstr ""
@@ -7376,12 +7492,12 @@ msgstr ""
"a continuación."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:144
+#: apt-ftparchive.1.xml:146
msgid "<literal>Dir</literal> Section"
msgstr "Sección <literal>Dir</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:146
+#: apt-ftparchive.1.xml:148
msgid ""
"The <literal>Dir</literal> section defines the standard directories needed "
"to locate the files required during the generation process. These "
@@ -7394,7 +7510,7 @@ msgstr ""
"secciones posteriores para producir una ruta absoluta."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:153
+#: apt-ftparchive.1.xml:155
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 "
@@ -7405,17 +7521,17 @@ msgstr ""
"«dist»."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:160
+#: apt-ftparchive.1.xml:162
msgid "Specifies the location of the override files."
msgstr "Define la ubicación de los ficheros alternativos."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:165
+#: apt-ftparchive.1.xml:167
msgid "Specifies the location of the cache files."
msgstr "Define la ubicación de los ficheros almacenados."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:170
+#: apt-ftparchive.1.xml:172
msgid ""
"Specifies the location of the file list files, if the <literal>FileList</"
"literal> setting is used below."
@@ -7424,12 +7540,12 @@ msgstr ""
"posteriormente el valor <literal>FileList</literal>."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:176
+#: apt-ftparchive.1.xml:178
msgid "<literal>Default</literal> Section"
msgstr "Sección <literal>Default</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:178
+#: apt-ftparchive.1.xml:180
msgid ""
"The <literal>Default</literal> section specifies default values, and "
"settings that control the operation of the generator. Other sections may "
@@ -7440,7 +7556,7 @@ msgstr ""
"sobrescribir estos valores predeterminados con un valor de la sección."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:184
+#: apt-ftparchive.1.xml:186
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 "
@@ -7454,7 +7570,7 @@ msgstr ""
"compresión es «. gzip»."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:192
+#: apt-ftparchive.1.xml:194
msgid ""
"Sets the default list of file extensions that are package files. This "
"defaults to '.deb'."
@@ -7463,7 +7579,7 @@ msgstr ""
"paquete. El valor predeterminado es «.deb»."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:198
+#: apt-ftparchive.1.xml:200
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Sources files."
@@ -7472,7 +7588,7 @@ msgstr ""
"controla la compresión para los ficheros «Sources»."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:204
+#: apt-ftparchive.1.xml:206
msgid ""
"Sets the default list of file extensions that are source files. This "
"defaults to '.dsc'."
@@ -7481,7 +7597,7 @@ msgstr ""
"ficheros de fuentes. El valor predeterminado es «.dsc»."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:210
+#: apt-ftparchive.1.xml:212
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Contents files."
@@ -7490,7 +7606,7 @@ msgstr ""
"controla la compresión para los ficheros «Contents»."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:216
+#: apt-ftparchive.1.xml:218
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Translation-en master file."
@@ -7499,7 +7615,7 @@ msgstr ""
"controla la compresión para el fichero maestro Translation-en."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:222
+#: apt-ftparchive.1.xml:224
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-"
@@ -7510,7 +7626,7 @@ msgstr ""
"cada sección."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:229
+#: apt-ftparchive.1.xml:231
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."
@@ -7520,7 +7636,7 @@ msgstr ""
"sin tener en cuenta la máscara de usuario («umask»)."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:236 apt-ftparchive.1.xml:382
+#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384
msgid ""
"Specifies whether long descriptions should be included in the "
"<filename>Packages</filename> file or split out into a master "
@@ -7531,12 +7647,12 @@ msgstr ""
"maestro."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:242
+#: apt-ftparchive.1.xml:244
msgid "<literal>TreeDefault</literal> Section"
msgstr "Sección <literal>TreeDefault</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:244
+#: apt-ftparchive.1.xml:246
msgid ""
"Sets defaults specific to <literal>Tree</literal> sections. All of these "
"variables are substitution variables and have the strings $(DIST), "
@@ -7547,7 +7663,7 @@ msgstr ""
"$(DIST), $(SECTION) y $(ARCH) con sus valores respectivos."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:251
+#: apt-ftparchive.1.xml:253
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 "
@@ -7558,7 +7674,7 @@ msgstr ""
"que durante varios días todos se regenerarán."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:258
+#: apt-ftparchive.1.xml:260
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. "
@@ -7577,7 +7693,7 @@ msgstr ""
"unidades usadas son días."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:269
+#: apt-ftparchive.1.xml:271
msgid ""
"Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/"
"$(SECTION)/binary-$(ARCH)/</filename>"
@@ -7586,7 +7702,7 @@ msgstr ""
"$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:275
+#: apt-ftparchive.1.xml:277
msgid ""
"Sets the top of the source package directory tree. Defaults to <filename>"
"$(DIST)/$(SECTION)/source/</filename>"
@@ -7595,7 +7711,7 @@ msgstr ""
"predeterminado es <filename>$(DIST)/$(SECTION)/source/</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:281
+#: apt-ftparchive.1.xml:283
msgid ""
"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/"
"binary-$(ARCH)/Packages</filename>"
@@ -7604,7 +7720,7 @@ msgstr ""
"$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:287
+#: apt-ftparchive.1.xml:289
msgid ""
"Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/"
"source/Sources</filename>"
@@ -7613,7 +7729,7 @@ msgstr ""
"$(DIST)/$(SECTION)/source/Sources</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:293
+#: apt-ftparchive.1.xml:295
msgid ""
"Sets the output Translation-en master file with the long descriptions if "
"they should be not included in the Packages file. Defaults to <filename>"
@@ -7624,7 +7740,7 @@ msgstr ""
"predeterminado es <filename>$(DIST)/$(SECTION)/i18n/Translation-en</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:300
+#: apt-ftparchive.1.xml:302
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)/</"
@@ -7635,7 +7751,7 @@ msgstr ""
"<filename>$(DIST)/$(SECTION)/</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:307
+#: apt-ftparchive.1.xml:309
msgid ""
"Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/"
"Contents-$(ARCH)</filename>. If this setting causes multiple Packages files "
@@ -7650,13 +7766,13 @@ msgstr ""
"automáticamente esos ficheros de paquete."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:316
+#: apt-ftparchive.1.xml:318
msgid "Sets header file to prepend to the contents output."
msgstr ""
"Define el fichero de cabecera a añadir al fichero «Contents» de salida."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:321
+#: apt-ftparchive.1.xml:323
msgid ""
"Sets the binary cache database to use for this section. Multiple sections "
"can share the same database."
@@ -7665,7 +7781,7 @@ msgstr ""
"Varias secciones pueden compartir la misma base de datos."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:327
+#: apt-ftparchive.1.xml:329
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -7677,7 +7793,7 @@ msgstr ""
"como prefijo el directorio del archivo."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:334
+#: apt-ftparchive.1.xml:336
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -7691,12 +7807,12 @@ msgstr ""
"índices de fuentes."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:342
+#: apt-ftparchive.1.xml:344
msgid "<literal>Tree</literal> Section"
msgstr "Sección <literal>Tree</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:344
+#: apt-ftparchive.1.xml:346
msgid ""
"The <literal>Tree</literal> section defines a standard Debian file tree "
"which consists of a base directory, then multiple sections in that base "
@@ -7711,7 +7827,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:349
+#: apt-ftparchive.1.xml:351
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 "
@@ -7724,7 +7840,7 @@ msgstr ""
"valor como <filename>dists/&stable-codename;</filename>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:354
+#: apt-ftparchive.1.xml:356
msgid ""
"All of the settings defined in the <literal>TreeDefault</literal> section "
"can be used in a <literal>Tree</literal> section as well as three new "
@@ -7735,7 +7851,7 @@ msgstr ""
"variables."
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt-ftparchive.1.xml:360
+#: apt-ftparchive.1.xml:362
#, no-wrap
msgid ""
"for i in Sections do \n"
@@ -7749,7 +7865,7 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:357
+#: apt-ftparchive.1.xml:359
msgid ""
"When processing a <literal>Tree</literal> section <command>apt-ftparchive</"
"command> performs an operation similar to: <placeholder type=\"programlisting"
@@ -7760,7 +7876,7 @@ msgstr ""
"<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:368
+#: apt-ftparchive.1.xml:370
msgid ""
"This is a space separated list of sections which appear under the "
"distribution; typically this is something like <literal>main contrib non-"
@@ -7771,7 +7887,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:375
+#: apt-ftparchive.1.xml:377
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 "
@@ -7782,7 +7898,7 @@ msgstr ""
"indicar que este árbol tiene un fichero de fuentes."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:388
+#: apt-ftparchive.1.xml:390
msgid ""
"Sets the binary override file. The override file contains section, priority "
"and maintainer address information."
@@ -7791,7 +7907,7 @@ msgstr ""
"sección, la prioridad y la dirección del mantenedor."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:394
+#: apt-ftparchive.1.xml:396
msgid ""
"Sets the source override file. The override file contains section "
"information."
@@ -7800,22 +7916,22 @@ msgstr ""
"la sección."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:400 apt-ftparchive.1.xml:446
+#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448
msgid "Sets the binary extra override file."
msgstr "Define el fichero binario alternativo adicional."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:405 apt-ftparchive.1.xml:451
+#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453
msgid "Sets the source extra override file."
msgstr "Define el fichero de fuentes alternativo adicional."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:410
+#: apt-ftparchive.1.xml:412
msgid "<literal>BinDirectory</literal> Section"
msgstr "Sección <literal>BinDirectory</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:412
+#: apt-ftparchive.1.xml:414
msgid ""
"The <literal>bindirectory</literal> section defines a binary directory tree "
"with no special structure. The scope tag specifies the location of the "
@@ -7830,12 +7946,12 @@ msgstr ""
"<literal>Section</literal><literal>Architecture</literal>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:420
+#: apt-ftparchive.1.xml:422
msgid "Sets the Packages file output."
msgstr "Define el fichero «Packages» de salida."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:425
+#: apt-ftparchive.1.xml:427
msgid ""
"Sets the Sources file output. At least one of <literal>Packages</literal> or "
"<literal>Sources</literal> is required."
@@ -7844,42 +7960,42 @@ msgstr ""
"<literal>Packages</literal> o <literal>Sources</literal>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:431
+#: apt-ftparchive.1.xml:433
msgid "Sets the Contents file output (optional)."
msgstr "Define el fichero «Contents» de salida (opcional)"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:436
+#: apt-ftparchive.1.xml:438
msgid "Sets the binary override file."
msgstr "Define el fichero binario alternativo."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:441
+#: apt-ftparchive.1.xml:443
msgid "Sets the source override file."
msgstr "Define el fichero de fuentes alternativo."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:456
+#: apt-ftparchive.1.xml:458
msgid "Sets the cache DB."
msgstr "Define la base de datos de la caché."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:461
+#: apt-ftparchive.1.xml:463
msgid "Appends a path to all the output paths."
msgstr "Añade una ruta a todas las rutas de salida."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:466
+#: apt-ftparchive.1.xml:468
msgid "Specifies the file list file."
msgstr "Define el fichero de la lista de ficheros."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:473
+#: apt-ftparchive.1.xml:475
msgid "The Binary Override File"
msgstr "El fichero binario alternativo"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:474
+#: apt-ftparchive.1.xml:476
msgid ""
"The binary override file is fully compatible with &dpkg-scanpackages;. It "
"contains four fields separated by spaces. The first field is the package "
@@ -7894,19 +8010,19 @@ msgstr ""
"de permutación del mantenedor."
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:480
+#: apt-ftparchive.1.xml:482
#, no-wrap
msgid "old [// oldn]* => new"
msgstr "antigua [// antigua-n]* => nueva"
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:482
+#: apt-ftparchive.1.xml:484
#, no-wrap
msgid "new"
msgstr "nueva"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:479
+#: apt-ftparchive.1.xml:481
msgid ""
"The general form of the maintainer field is: <placeholder type="
"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" "
@@ -7923,12 +8039,12 @@ msgstr ""
"segunda forma sustituye de forma incondicional el campo del mantenedor."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:490
+#: apt-ftparchive.1.xml:492
msgid "The Source Override File"
msgstr "El fichero de fuentes alternativo"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:492
+#: apt-ftparchive.1.xml:494
msgid ""
"The source override file is fully compatible with &dpkg-scansources;. It "
"contains two fields separated by spaces. The first field is the source "
@@ -7939,12 +8055,12 @@ msgstr ""
"nombre del paquete fuente, el segundo es la sección a la que se asignará."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:497
+#: apt-ftparchive.1.xml:499
msgid "The Extra Override File"
msgstr "El fichero alternativo adicional"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:499
+#: apt-ftparchive.1.xml:501
msgid ""
"The extra override file allows any arbitrary tag to be added or replaced in "
"the output. It has three columns, the first is the package, the second is "
@@ -7955,7 +8071,7 @@ msgstr ""
"paquete, la segunda es la etiqueta y el resto de la línea es el nuevo valor."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:510
+#: apt-ftparchive.1.xml:512
msgid ""
"Generate the given checksum. These options default to on, when turned off "
"the generated index files will not have the checksum fields where possible. "
@@ -7979,7 +8095,7 @@ msgstr ""
"<literal>MD5</literal>, <literal>SHA1</literal> o <literal>SHA256</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:521
+#: apt-ftparchive.1.xml:523
msgid ""
"Use a binary caching DB. This has no effect on the generate command. "
"Configuration Item: <literal>APT::FTPArchive::DB</literal>."
@@ -7988,7 +8104,7 @@ msgstr ""
"«generate». Opción de configuración: <literal>APT::FTPArchive::DB</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:527
+#: apt-ftparchive.1.xml:529
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 "
@@ -8002,7 +8118,7 @@ msgstr ""
"configuración. Opción de configuración: <literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:535
+#: apt-ftparchive.1.xml:537
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 "
@@ -8015,7 +8131,7 @@ msgstr ""
"Opción de configuración: <literal>APT::FTPArchive::DeLinkAct</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:543
+#: apt-ftparchive.1.xml:545
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 "
@@ -8032,7 +8148,7 @@ msgstr ""
"Contents</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:553
+#: apt-ftparchive.1.xml:555
msgid ""
"Select the source override file to use with the <literal>sources</literal> "
"command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
@@ -8043,7 +8159,7 @@ msgstr ""
"FTPArchive::SourceOverride</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:559
+#: apt-ftparchive.1.xml:561
msgid ""
"Make the caching databases read only. Configuration Item: <literal>APT::"
"FTPArchive::ReadOnlyDB</literal>."
@@ -8052,7 +8168,7 @@ msgstr ""
"Opción de configuración: <literal>APT::FTPArchive::ReadOnlyDB</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:564
+#: apt-ftparchive.1.xml:566
msgid ""
"Accept in the <literal>packages</literal> and <literal>contents</literal> "
"commands only package files matching <literal>*_arch.deb</literal> or "
@@ -8066,7 +8182,7 @@ msgstr ""
"FTPArchive::Architecture</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:572
+#: apt-ftparchive.1.xml:574
msgid ""
"&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
"packages are recompiled and/or republished with the same version again, this "
@@ -8090,7 +8206,7 @@ msgstr ""
"comprobaciones adicionales son innecesarias."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:584
+#: apt-ftparchive.1.xml:586
msgid ""
"This configuration option defaults to \"<literal>true</literal>\" and should "
"only be set to <literal>\"false\"</literal> if the Archive generated with "
@@ -8106,13 +8222,13 @@ msgstr ""
"con la orden «generate»."
#. type: Content of: <refentry><refsect1><para><programlisting>
-#: apt-ftparchive.1.xml:602
+#: apt-ftparchive.1.xml:604
#, 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>directorio</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:598
+#: apt-ftparchive.1.xml:600
msgid ""
"To create a compressed Packages file for a directory containing binary "
"packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@ -8121,7 +8237,7 @@ msgstr ""
"paquetes binarios («.deb»): <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:612
+#: apt-ftparchive.1.xml:614
msgid ""
"<command>apt-ftparchive</command> returns zero on normal operation, decimal "
"100 on error."
diff --git a/doc/po/fr.po b/doc/po/fr.po
index 3849630b5..dd3242cb7 100644
--- a/doc/po/fr.po
+++ b/doc/po/fr.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-06-13 13:46+0300\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2013-04-09 07:56+0200\n"
"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -610,35 +610,35 @@ msgid ""
msgstr "<!ENTITY synopsis-keyid \"id_de_clé\">"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-get.8.xml:26 apt-cache.8.xml:26 apt-key.8.xml:25 apt-mark.8.xml:26
-#: apt-secure.8.xml:25 apt-cdrom.8.xml:25 apt-config.8.xml:26
+#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28
+#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28
msgid "8"
msgstr "8"
#. type: Content of: <refentry><refmeta><refmiscinfo>
-#: apt-get.8.xml:27 apt-cache.8.xml:27 apt-key.8.xml:26 apt-mark.8.xml:27
-#: apt-secure.8.xml:26 apt-cdrom.8.xml:26 apt-config.8.xml:27
-#: apt.conf.5.xml:32 apt_preferences.5.xml:26 sources.list.5.xml:27
-#: apt-extracttemplates.1.xml:27 apt-sortpkgs.1.xml:27 apt-ftparchive.1.xml:27
+#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29
+#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29
+#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29
+#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29
msgid "APT"
msgstr "APT"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-get.8.xml:33
+#: apt-get.8.xml:35
msgid "APT package handling utility -- command-line interface"
msgstr ""
"Utilitaire APT pour la gestion des paquets -- interface en ligne de commande."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:38 apt-cache.8.xml:38 apt-key.8.xml:37 apt-mark.8.xml:38
-#: apt-secure.8.xml:50 apt-cdrom.8.xml:37 apt-config.8.xml:38
-#: apt.conf.5.xml:41 apt_preferences.5.xml:36 sources.list.5.xml:36
-#: apt-extracttemplates.1.xml:38 apt-sortpkgs.1.xml:38 apt-ftparchive.1.xml:38
+#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40
+#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40
+#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38
+#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40
msgid "Description"
msgstr "Description"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:39
+#: apt-get.8.xml:41
msgid ""
"<command>apt-get</command> is the command-line tool for handling packages, "
"and may be considered the user's \"back-end\" to other tools using the APT "
@@ -651,8 +651,8 @@ msgstr ""
"existent, comme &dselect;, &aptitude;, &synaptic; and &wajig;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:44 apt-cache.8.xml:44 apt-cdrom.8.xml:51 apt-config.8.xml:44
-#: apt-ftparchive.1.xml:54
+#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46
+#: apt-ftparchive.1.xml:56
msgid ""
"Unless the <option>-h</option>, or <option>--help</option> option is given, "
"one of the commands below must be present."
@@ -661,7 +661,7 @@ msgstr ""
"donnée, l'une des commandes suivantes doit être présente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:49
+#: apt-get.8.xml:51
msgid ""
"<literal>update</literal> is used to resynchronize the package index files "
"from their sources. The indexes of available packages are fetched from the "
@@ -686,7 +686,7 @@ msgstr ""
"ne peut être connue à l'avance."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:61
+#: apt-get.8.xml:63
msgid ""
"<literal>upgrade</literal> is used to install the newest versions of all "
"packages currently installed on the system from the sources enumerated in "
@@ -712,7 +712,7 @@ msgstr ""
"l'existence de nouvelles versions des paquets."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:74
+#: apt-get.8.xml:76
msgid ""
"<literal>dist-upgrade</literal> in addition to performing the function of "
"<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@ -736,7 +736,7 @@ msgstr ""
"un mécanisme de remplacement des paramètres généraux pour certains paquets."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:87
+#: apt-get.8.xml:89
msgid ""
"<literal>dselect-upgrade</literal> is used in conjunction with the "
"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@ -754,7 +754,7 @@ msgstr ""
"installation de nouveaux paquets)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:98
+#: apt-get.8.xml:100
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 "
@@ -783,7 +783,7 @@ msgstr ""
"prises par le système de résolution des conflits d'apt-get."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:116
+#: apt-get.8.xml:118
msgid ""
"A specific version of a package can be selected for installation by "
"following the package name with an equals and the version of the package to "
@@ -800,7 +800,7 @@ msgstr ""
"unstable)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:123
+#: apt-get.8.xml:125
msgid ""
"Both of the version selection mechanisms can downgrade packages and must be "
"used with care."
@@ -810,7 +810,7 @@ msgstr ""
"avec précaution."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:126
+#: apt-get.8.xml:128
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. "
@@ -830,7 +830,7 @@ msgstr ""
"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:137
+#: apt-get.8.xml:139
msgid ""
"Finally, the &apt-preferences; mechanism allows you to create an alternative "
"installation policy for individual packages."
@@ -839,7 +839,7 @@ msgstr ""
"l'installation des paquets."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:141
+#: apt-get.8.xml:143
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 "
@@ -860,7 +860,7 @@ msgstr ""
"d'utiliser une expression plus précise."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:151
+#: apt-get.8.xml:153
msgid ""
"<literal>remove</literal> is identical to <literal>install</literal> except "
"that packages are removed instead of installed. Note that removing a package "
@@ -876,7 +876,7 @@ msgstr ""
"d'être supprimé."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:159
+#: apt-get.8.xml:161
msgid ""
"<literal>purge</literal> is identical to <literal>remove</literal> except "
"that packages are removed and purged (any configuration files are deleted "
@@ -887,7 +887,7 @@ msgstr ""
"de configuration sont également effacés)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:164
+#: apt-get.8.xml:166
msgid ""
"<literal>source</literal> causes <command>apt-get</command> to fetch source "
"packages. APT will examine the available packages to decide which source "
@@ -906,7 +906,7 @@ msgstr ""
"par paquet avec la syntaxe <literal>paquet/version</literal> si possible."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:172
+#: apt-get.8.xml:174
msgid ""
"Source packages are tracked separately from binary packages via <literal>deb-"
"src</literal> lines in the &sources-list; file. This means that you will "
@@ -922,7 +922,7 @@ msgstr ""
"installé ou que vous voulez installer."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:178
+#: apt-get.8.xml:180
msgid ""
"If the <option>--compile</option> option is specified then the package will "
"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
@@ -937,7 +937,7 @@ msgstr ""
"décompacté."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:185
+#: apt-get.8.xml:187
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 "
@@ -952,7 +952,7 @@ msgstr ""
"Source</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:191
+#: apt-get.8.xml:193
msgid ""
"Note that source packages are not installed and tracked in the "
"<command>dpkg</command> database like binary packages; they are simply "
@@ -964,7 +964,7 @@ msgstr ""
"les archives tar."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:197
+#: apt-get.8.xml:199
msgid ""
"<literal>build-dep</literal> causes apt-get to install/remove packages in an "
"attempt to satisfy the build dependencies for a source package. By default "
@@ -979,7 +979,7 @@ msgstr ""
"indiquée avec l'option <option>--host-architecture</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:204
+#: apt-get.8.xml:206
msgid ""
"<literal>check</literal> is a diagnostic tool; it updates the package cache "
"and checks for broken dependencies."
@@ -988,7 +988,7 @@ msgstr ""
"jour le cache des paquets et cherche les dépendances défectueuses."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:209
+#: apt-get.8.xml:211
msgid ""
"<literal>download</literal> will download the given binary package into the "
"current directory."
@@ -997,7 +997,7 @@ msgstr ""
"répertoire courant."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:215
+#: apt-get.8.xml:217
msgid ""
"<literal>clean</literal> clears out the local repository of retrieved "
"package files. It removes everything but the lock file from "
@@ -1016,7 +1016,7 @@ msgstr ""
"temps en temps si l'on veut libérer de l'espace disque."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:225
+#: apt-get.8.xml:227
msgid ""
"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
"local repository of retrieved package files. The difference is that it only "
@@ -1035,7 +1035,7 @@ msgstr ""
"installés."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:235
+#: apt-get.8.xml:237
msgid ""
"<literal>autoremove</literal> is used to remove packages that were "
"automatically installed to satisfy dependencies for other packages and are "
@@ -1046,7 +1046,7 @@ msgstr ""
"ne sont plus nécessaires."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:240
+#: apt-get.8.xml:242
msgid ""
"<literal>changelog</literal> downloads a package changelog and displays it "
"through <command>sensible-pager</command>. The server name and base "
@@ -1070,14 +1070,14 @@ msgstr ""
"<option>install</option>."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:258 apt-cache.8.xml:248 apt-mark.8.xml:108
-#: apt-config.8.xml:84 apt-extracttemplates.1.xml:52 apt-sortpkgs.1.xml:48
-#: apt-ftparchive.1.xml:504
+#: apt-get.8.xml:260 apt-cache.8.xml:250 apt-mark.8.xml:110
+#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50
+#: apt-ftparchive.1.xml:506
msgid "options"
msgstr "options"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:263
+#: apt-get.8.xml:265
msgid ""
"Do not consider recommended packages as a dependency for installing. "
"Configuration Item: <literal>APT::Install-Recommends</literal>."
@@ -1086,7 +1086,7 @@ msgstr ""
"Élément de configuration : <literal>APT::Install-Recommends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:268
+#: apt-get.8.xml:270
msgid ""
"Consider suggested packages as a dependency for installing. Configuration "
"Item: <literal>APT::Install-Suggests</literal>."
@@ -1095,7 +1095,7 @@ msgstr ""
"de configuration : <literal>APT::Install-Suggests</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:273
+#: apt-get.8.xml:275
msgid ""
"Download only; package files are only retrieved, not unpacked or installed. "
"Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@ -1105,7 +1105,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:278
+#: apt-get.8.xml:280
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 "
@@ -1133,7 +1133,7 @@ msgstr ""
"configuration : <literal>APT::Get::Fix-Broken</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:293
+#: apt-get.8.xml:295
msgid ""
"Ignore missing packages; if packages cannot be retrieved or fail the "
"integrity check after retrieval (corrupted package files), hold back those "
@@ -1153,7 +1153,7 @@ msgstr ""
"<literal>APT::Get::Fix-Missing</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:304
+#: apt-get.8.xml:306
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 "
@@ -1165,7 +1165,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:311
+#: apt-get.8.xml:313
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 "
@@ -1187,7 +1187,7 @@ msgstr ""
"configuration : <literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:326
+#: apt-get.8.xml:328
msgid ""
"No action; perform a simulation of events that would occur but do not "
"actually change the system. Configuration Item: <literal>APT::Get::"
@@ -1198,7 +1198,7 @@ msgstr ""
"<literal>APT::Get::Simulate</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:330
+#: apt-get.8.xml:332
msgid ""
"Simulated runs performed as a user will automatically deactivate locking "
"(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::"
@@ -1219,7 +1219,7 @@ msgstr ""
"notifications)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:338
+#: apt-get.8.xml:340
msgid ""
"Simulated runs print out a series of lines, each representing a "
"<command>dpkg</command> operation: configure (<literal>Conf</literal>), "
@@ -1234,7 +1234,7 @@ msgstr ""
"que les dommages n'ont aucune conséquence (rare)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:346
+#: apt-get.8.xml:348
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 "
@@ -1250,7 +1250,7 @@ msgstr ""
"configuration : <literal>APT::Get::Assume-Yes</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:354
+#: apt-get.8.xml:356
msgid ""
"Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::"
"Assume-No</literal>."
@@ -1259,7 +1259,7 @@ msgstr ""
"configuration : <literal>APT::Get::Assume-No</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:359
+#: apt-get.8.xml:361
msgid ""
"Show upgraded packages; print out a list of all packages that are to be "
"upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@ -1269,7 +1269,7 @@ msgstr ""
"Upgraded</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:365
+#: apt-get.8.xml:367
msgid ""
"Show full versions for upgraded and installed packages. Configuration Item: "
"<literal>APT::Get::Show-Versions</literal>."
@@ -1278,7 +1278,7 @@ msgstr ""
"Élément de configuration : <literal>APT::Get::Show-Versions</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:371
+#: apt-get.8.xml:373
msgid ""
"This option controls the architecture packages are built for by <command>apt-"
"get source --compile</command> and how cross-builddependencies are "
@@ -1296,7 +1296,7 @@ msgstr ""
"literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:381
+#: apt-get.8.xml:383
msgid ""
"Compile source packages after downloading them. Configuration Item: "
"<literal>APT::Get::Compile</literal>."
@@ -1305,7 +1305,7 @@ msgstr ""
"configuration : <literal>APT::Get::Compile</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:386
+#: apt-get.8.xml:388
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 "
@@ -1319,7 +1319,19 @@ msgstr ""
"<literal>APT::Ignore-Hold</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:393
+#: apt-get.8.xml:395
+msgid ""
+"Allow installing new packages when used in conjunction with "
+"<literal>upgrade</literal>. This is useful if the update of a installed "
+"package requires new dependencies to be installed. Instead of holding the "
+"package back <literal>upgrade</literal> will upgrade the package and install "
+"the new dependencies. Note that <literal>upgrade</literal> with this option "
+"will never remove packages, only allow adding new ones. Configuration Item: "
+"<literal>APT::Get::Upgrade-Allow-New</literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:407
msgid ""
"Do not upgrade packages; when used in conjunction with <literal>install</"
"literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@ -1332,7 +1344,7 @@ msgstr ""
"Upgrade</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:400
+#: apt-get.8.xml:414
msgid ""
"Do not install new packages; when used in conjunction with <literal>install</"
"literal>, <literal>only-upgrade</literal> will install upgrades for already "
@@ -1345,7 +1357,7 @@ msgstr ""
"configuration : <literal>APT::Get::Only-Upgrade</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:408
+#: apt-get.8.xml:422
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 "
@@ -1361,7 +1373,7 @@ msgstr ""
"yes</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:416
+#: apt-get.8.xml:430
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 "
@@ -1383,7 +1395,7 @@ msgstr ""
"<literal>APT::Get::Print-URIs</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:427
+#: apt-get.8.xml:441
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. "
@@ -1397,7 +1409,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:435
+#: apt-get.8.xml:449
msgid ""
"Re-install packages that are already installed and at the newest version. "
"Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@ -1406,7 +1418,7 @@ msgstr ""
"Élément de configuration : <literal>APT::Get::ReInstall</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:440
+#: apt-get.8.xml:454
msgid ""
"This option is on by default; use <literal>--no-list-cleanup</literal> to "
"turn it off. When it is on, <command>apt-get</command> will automatically "
@@ -1424,7 +1436,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:450
+#: apt-get.8.xml:464
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 "
@@ -1446,7 +1458,7 @@ msgstr ""
"Release</literal>. Voyez aussi la page de manuel d'&apt-preferences;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:465
+#: apt-get.8.xml:479
msgid ""
"Only perform operations that are 'trivial'. Logically this can be considered "
"related to <option>--assume-yes</option>; where <option>--assume-yes</"
@@ -1460,7 +1472,7 @@ msgstr ""
"Get::Trivial-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:472
+#: apt-get.8.xml:486
msgid ""
"If any packages are to be removed apt-get immediately aborts without "
"prompting. Configuration Item: <literal>APT::Get::Remove</literal>."
@@ -1470,7 +1482,7 @@ msgstr ""
"Remove</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:478
+#: apt-get.8.xml:492
msgid ""
"If the command is either <literal>install</literal> or <literal>remove</"
"literal>, then this option acts like running the <literal>autoremove</"
@@ -1483,7 +1495,7 @@ msgstr ""
"inutilisés. Élément de configuration : <literal>APT::Get::Upgrade</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:485
+#: apt-get.8.xml:499
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 "
@@ -1503,7 +1515,7 @@ msgstr ""
"literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:496
+#: apt-get.8.xml:510
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</"
@@ -1515,7 +1527,7 @@ msgstr ""
"literal>, "
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:502
+#: apt-get.8.xml:516
msgid ""
"Only process architecture-dependent build-dependencies. Configuration Item: "
"<literal>APT::Get::Arch-Only</literal>."
@@ -1525,7 +1537,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:507
+#: apt-get.8.xml:521
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::"
@@ -1536,23 +1548,33 @@ msgstr ""
"outils comme pbuilder. Élément de configuration : <literal>APT::Get::"
"AllowUnauthenticated</literal>."
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:527
+msgid ""
+"Show user friendly progress information in the terminal window when packages "
+"are installed, upgraded or removed. For a machine parsable version of this "
+"data see README.progress-reporting in the apt doc directory. Configuration "
+"Item: <literal>DpkgPM::Progress</literal> and <literal>Dpkg::Progress-Fancy</"
+"literal>."
+msgstr ""
+
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125
-#: apt.conf.5.xml:1167 apt_preferences.5.xml:698
+#: apt-get.8.xml:540 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127
+#: apt.conf.5.xml:1200 apt_preferences.5.xml:700
msgid "Files"
msgstr "Fichiers"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131
-#: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109
-#: apt.conf.5.xml:1173 apt_preferences.5.xml:705 sources.list.5.xml:252
-#: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63
-#: apt-ftparchive.1.xml:607
+#: apt-get.8.xml:550 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133
+#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111
+#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:258
+#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65
+#: apt-ftparchive.1.xml:609
msgid "See Also"
msgstr "Voir aussi"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:529
+#: apt-get.8.xml:551
msgid ""
"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@ -1563,14 +1585,14 @@ msgstr ""
"« HOWTO » d'APT."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:534 apt-cache.8.xml:355 apt-mark.8.xml:135
-#: apt-cdrom.8.xml:149 apt-config.8.xml:114 apt-extracttemplates.1.xml:74
-#: apt-sortpkgs.1.xml:67 apt-ftparchive.1.xml:611
+#: apt-get.8.xml:556 apt-cache.8.xml:357 apt-mark.8.xml:137
+#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76
+#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613
msgid "Diagnostics"
msgstr "Diagnostics"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:535
+#: apt-get.8.xml:557
msgid ""
"<command>apt-get</command> returns zero on normal operation, decimal 100 on "
"error."
@@ -1579,12 +1601,12 @@ msgstr ""
"décimal 100 en cas d'erreur."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cache.8.xml:33
+#: apt-cache.8.xml:35
msgid "query the APT cache"
msgstr "recherche dans le cache d'APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:39
+#: apt-cache.8.xml:41
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 "
@@ -1597,7 +1619,7 @@ msgstr ""
"desquelles il extrait les informations intéressantes."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:49
+#: apt-cache.8.xml:51
msgid ""
"<literal>gencaches</literal> creates APT's package cache. This is done "
"implicitly by all commands needing this cache if it is missing or outdated."
@@ -1607,14 +1629,14 @@ msgstr ""
"ou obsolète."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:53 apt-cache.8.xml:142 apt-cache.8.xml:163
-#: apt-cache.8.xml:185 apt-cache.8.xml:190 apt-cache.8.xml:206
-#: apt-cache.8.xml:224 apt-cache.8.xml:236
+#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165
+#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208
+#: apt-cache.8.xml:226 apt-cache.8.xml:238
msgid "&synopsis-pkg;"
msgstr "&synopsis-pkg;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:54
+#: apt-cache.8.xml:56
msgid ""
"<literal>showpkg</literal> displays information about the packages listed on "
"the command line. Remaining arguments are package names. The available "
@@ -1638,7 +1660,7 @@ msgstr ""
"résultat :"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-cache.8.xml:66
+#: apt-cache.8.xml:68
#, no-wrap
msgid ""
"Package: libreadline2\n"
@@ -1664,7 +1686,7 @@ msgstr ""
"Reverse Provides: \n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:78
+#: apt-cache.8.xml:80
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, "
@@ -1683,7 +1705,7 @@ msgstr ""
"consulter le code source d'APT."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:87
+#: apt-cache.8.xml:89
msgid ""
"<literal>stats</literal> displays some statistics about the cache. No "
"further arguments are expected. Statistics reported are:"
@@ -1693,7 +1715,7 @@ msgstr ""
"rapportées :"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:90
+#: apt-cache.8.xml:92
msgid ""
"<literal>Total package names</literal> is the number of package names found "
"in the cache."
@@ -1702,7 +1724,7 @@ msgstr ""
"le cache."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:94
+#: apt-cache.8.xml:96
msgid ""
"<literal>Normal packages</literal> is the number of regular, ordinary "
"package names; these are packages that bear a one-to-one correspondence "
@@ -1715,7 +1737,7 @@ msgstr ""
"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:100
+#: apt-cache.8.xml:102
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 "
@@ -1733,7 +1755,7 @@ msgstr ""
"n'existe aucun paquet nommé « mail-transport-agent »."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:108
+#: apt-cache.8.xml:110
msgid ""
"<literal>Single virtual packages</literal> is the number of packages with "
"only one package providing a particular virtual package. For example, in the "
@@ -1746,7 +1768,7 @@ msgstr ""
"« xless » remplit « X11-text-viewer »."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:114
+#: apt-cache.8.xml:116
msgid ""
"<literal>Mixed virtual packages</literal> is the number of packages that "
"either provide a particular virtual package or have the virtual package name "
@@ -1759,7 +1781,7 @@ msgstr ""
"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:121
+#: apt-cache.8.xml:123
msgid ""
"<literal>Missing</literal> is the number of package names that were "
"referenced in a dependency but were not provided by any package. Missing "
@@ -1774,7 +1796,7 @@ msgstr ""
"Habituellement on les trouve dans les champs « Conflicts » ou « Breaks »."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:128
+#: apt-cache.8.xml:130
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 "
@@ -1789,7 +1811,7 @@ msgstr ""
"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:135
+#: apt-cache.8.xml:137
msgid ""
"<literal>Total dependencies</literal> is the number of dependency "
"relationships claimed by all of the packages in the cache."
@@ -1798,7 +1820,7 @@ msgstr ""
"dépendances déclarées par tous les paquets présents dans le cache."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:143
+#: apt-cache.8.xml:145
msgid ""
"<literal>showsrc</literal> displays all the source package records that "
"match the given package names. All versions are shown, as well as all "
@@ -1809,7 +1831,7 @@ msgstr ""
"les entrées qui déclarent que ces noms correspondent à des paquets binaires."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:149
+#: apt-cache.8.xml:151
msgid ""
"<literal>dump</literal> shows a short listing of every package in the cache. "
"It is primarily for debugging."
@@ -1818,7 +1840,7 @@ msgstr ""
"paquet du cache. Elle est d'abord destinée au débogage."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:154
+#: apt-cache.8.xml:156
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."
@@ -1828,7 +1850,7 @@ msgstr ""
"et la méthode &dselect; s'en sert."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:159
+#: apt-cache.8.xml:161
msgid ""
"<literal>unmet</literal> displays a summary of all unmet dependencies in the "
"package cache."
@@ -1837,7 +1859,7 @@ msgstr ""
"dépendances absentes dans le cache de paquets."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:164
+#: apt-cache.8.xml:166
msgid ""
"<literal>show</literal> performs a function similar to <command>dpkg --print-"
"avail</command>; it displays the package records for the named packages."
@@ -1847,12 +1869,12 @@ msgstr ""
"argument."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:169
+#: apt-cache.8.xml:171
msgid "&synopsis-regex;"
msgstr "&synopsis-regex;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:170
+#: apt-cache.8.xml:172
msgid ""
"<literal>search</literal> performs a full text search on all available "
"package lists for the POSIX regex pattern given, see &regex;. It searches "
@@ -1873,7 +1895,7 @@ msgstr ""
"mais seulement dans les noms de paquets."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:181
+#: apt-cache.8.xml:183
msgid ""
"Separate arguments can be used to specify multiple search patterns that are "
"and'ed together."
@@ -1882,7 +1904,7 @@ msgstr ""
"rationnelles différentes sur lesquelles seront réalisées un « et » logique."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:186
+#: apt-cache.8.xml:188
msgid ""
"<literal>depends</literal> shows a listing of each dependency a package has "
"and all the possible other packages that can fulfill that dependency."
@@ -1892,7 +1914,7 @@ msgstr ""
"satisfont ces dépendances."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:191
+#: apt-cache.8.xml:193
msgid ""
"<literal>rdepends</literal> shows a listing of each reverse dependency a "
"package has."
@@ -1901,12 +1923,12 @@ msgstr ""
"dépendances inverses d'un paquet."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:195
+#: apt-cache.8.xml:197
msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:196
+#: apt-cache.8.xml:198
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 "
@@ -1921,7 +1943,7 @@ msgstr ""
"l'option <option>--generate</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:201
+#: apt-cache.8.xml:203
msgid ""
"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 "
@@ -1932,7 +1954,7 @@ msgstr ""
"affichés dans la liste créée."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:207
+#: apt-cache.8.xml:209
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."
@@ -1954,7 +1976,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:216
+#: apt-cache.8.xml:218
msgid ""
"The resulting nodes will have several shapes; normal packages are boxes, "
"pure virtual packages are triangles, mixed virtual packages are diamonds, "
@@ -1969,14 +1991,14 @@ msgstr ""
"conflits."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:221
+#: apt-cache.8.xml:223
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><listitem><para>
-#: apt-cache.8.xml:225
+#: apt-cache.8.xml:227
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>."
@@ -1986,12 +2008,12 @@ msgstr ""
"ulink>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:229
+#: apt-cache.8.xml:231
msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:230
+#: apt-cache.8.xml:232
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 "
@@ -2004,7 +2026,7 @@ msgstr ""
"paquet donné en argument."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:237
+#: apt-cache.8.xml:239
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 "
@@ -2024,7 +2046,7 @@ msgstr ""
"literal>)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:253
+#: apt-cache.8.xml:255
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::"
@@ -2035,7 +2057,7 @@ msgstr ""
"<literal>Dir::Cache::pkgcache</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:259
+#: apt-cache.8.xml:261
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 "
@@ -2051,7 +2073,7 @@ msgstr ""
"<literal>Dir::Cache::srcpkgcache</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:267
+#: apt-cache.8.xml:269
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 "
@@ -2066,7 +2088,7 @@ msgstr ""
"<literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:274
+#: apt-cache.8.xml:276
msgid ""
"Print only important dependencies; for use with <literal>unmet</literal> and "
"<literal>depends</literal>. Causes only Depends and Pre-Depends relations to "
@@ -2078,7 +2100,7 @@ msgstr ""
"<literal>APT::Cache::Important</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:288
+#: apt-cache.8.xml:290
msgid ""
"Per default the <literal>depends</literal> and <literal>rdepends</literal> "
"print all dependencies. This can be tweaked with these flags which will omit "
@@ -2093,7 +2115,7 @@ msgstr ""
"replaceable></literal>, p. ex. <literal>APT::Cache::ShowRecommends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:295
+#: apt-cache.8.xml:297
msgid ""
"Print full package records when searching. Configuration Item: "
"<literal>APT::Cache::ShowFull</literal>."
@@ -2103,7 +2125,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:300
+#: apt-cache.8.xml:302
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-"
@@ -2121,7 +2143,7 @@ msgstr ""
"<literal>APT::Cache::AllVersions</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:309
+#: apt-cache.8.xml:311
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</"
@@ -2133,7 +2155,7 @@ msgstr ""
"configuration : <literal>APT::Cache::Generate</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:315
+#: apt-cache.8.xml:317
msgid ""
"Only search on the package names, not the long descriptions. Configuration "
"Item: <literal>APT::Cache::NamesOnly</literal>."
@@ -2143,7 +2165,7 @@ msgstr ""
"NamesOnly</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:320
+#: apt-cache.8.xml:322
msgid ""
"Make <literal>pkgnames</literal> print all names, including virtual packages "
"and missing dependencies. Configuration Item: <literal>APT::Cache::"
@@ -2154,7 +2176,7 @@ msgstr ""
"configuration : <literal>APT::Cache::AllNames</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:326
+#: apt-cache.8.xml:328
msgid ""
"Make <literal>depends</literal> and <literal>rdepends</literal> recursive so "
"that all packages mentioned are printed once. Configuration Item: "
@@ -2166,7 +2188,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:333
+#: apt-cache.8.xml:335
msgid ""
"Limit the output of <literal>depends</literal> and <literal>rdepends</"
"literal> to packages which are currently installed. Configuration Item: "
@@ -2177,12 +2199,12 @@ msgstr ""
"Élément de configuration : <literal>APT::Cache::Installed</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:351
+#: apt-cache.8.xml:353
msgid "&apt-conf;, &sources-list;, &apt-get;"
msgstr "&apt-conf;, &sources-list;, &apt-get;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:356
+#: apt-cache.8.xml:358
msgid ""
"<command>apt-cache</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -2191,12 +2213,12 @@ msgstr ""
"nombre décimal 100 en cas d'erreur."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-key.8.xml:32
+#: apt-key.8.xml:34
msgid "APT key management utility"
msgstr "Utilitaire de gestion des clés d'APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:39
+#: apt-key.8.xml:41
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 "
@@ -2206,12 +2228,12 @@ msgstr ""
"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:45
+#: apt-key.8.xml:47
msgid "Commands"
msgstr "Commandes"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:50
+#: apt-key.8.xml:52
msgid ""
"Add a new key to the list of trusted keys. The key is read from the "
"filename given with the parameter &synopsis-param-filename; or if the "
@@ -2222,32 +2244,32 @@ msgstr ""
"si le nom de fichier est <literal>-</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:63
+#: apt-key.8.xml:65
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><listitem><para>
-#: apt-key.8.xml:74
+#: apt-key.8.xml:76
msgid "Output the key &synopsis-param-keyid; to standard output."
msgstr "Afficher la clé &synopsis-param-keyid; sur la sortie standard."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:85
+#: apt-key.8.xml:87
msgid "Output all trusted keys to standard output."
msgstr "Afficher toutes les clés fiables sur la sortie standard."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:96
+#: apt-key.8.xml:98
msgid "List trusted keys."
msgstr "Afficher la liste des clés fiables."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:107
+#: apt-key.8.xml:109
msgid "List fingerprints of trusted keys."
msgstr "Afficher les empreintes des clés fiables."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:118
+#: apt-key.8.xml:120
msgid ""
"Pass advanced options to gpg. With adv --recv-key you can download the "
"public key."
@@ -2256,22 +2278,21 @@ msgstr ""
"possible de télécharger une clé publique."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:130
+#: apt-key.8.xml:132
msgid ""
"Update the local keyring with the archive keyring and remove from the local "
"keyring the archive keys which are no longer valid. The archive keyring is "
"shipped in the <literal>archive-keyring</literal> package of your "
-"distribution, e.g. the &keyring-package; package in "
-"&keyring-distro;."
+"distribution, e.g. the &keyring-package; package in &keyring-distro;."
msgstr ""
"Mettre à jour le trousseau de clés local avec le trousseau de clés de "
"l'archive et y supprimer les clés qui ne sont plus valables. Le trousseau de "
"clés de l'archive est fourni dans le paquet <literal>archive-keyring</"
-"literal> de la distribution, par exemple le paquet &keyring-package; "
-"dans &keyring-distro;."
+"literal> de la distribution, par exemple le paquet &keyring-package; dans "
+"&keyring-distro;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:144
+#: apt-key.8.xml:146
msgid ""
"Perform an update working similarly to the <command>update</command> command "
"above, but get the archive keyring from a URI instead and validate it "
@@ -2289,12 +2310,12 @@ msgstr ""
"place. Par contre, la version d'Ubuntu permet de l'utiliser."
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:160 apt-cdrom.8.xml:80
+#: apt-key.8.xml:162 apt-cdrom.8.xml:82
msgid "Options"
msgstr "Options"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:161
+#: apt-key.8.xml:163
msgid ""
"Note that options need to be defined before the commands described in the "
"previous section."
@@ -2303,7 +2324,7 @@ msgstr ""
"décrites dans la section suivante."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:164
+#: apt-key.8.xml:166
msgid ""
"With this option it is possible to specify a particular keyring file the "
"command should operate on. The default is that a command is executed on the "
@@ -2320,49 +2341,47 @@ msgstr ""
"les nouvelles clés y seront ajoutées."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:179
+#: apt-key.8.xml:181
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:180
+#: apt-key.8.xml:182
msgid "Local trust database of archive keys."
msgstr "Base de données locale de fiabilité des clés de l'archive."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:183
+#: apt-key.8.xml:185
msgid "&keyring-filename;"
msgstr "&keyring-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:184
+#: apt-key.8.xml:186
msgid "Keyring of &keyring-distro; archive trusted keys."
msgstr "Trousseau des clés fiables de l'archive &keyring-distro;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:187
-msgid ""
-"&keyring-removed-filename;"
-msgstr ""
-"&keyring-removed-filename;"
+#: apt-key.8.xml:189
+msgid "&keyring-removed-filename;"
+msgstr "&keyring-removed-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:188
+#: apt-key.8.xml:190
msgid "Keyring of &keyring-distro; archive removed trusted keys."
msgstr "Trousseau des clés fiables supprimées de l'archive &keyring-distro;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:197
+#: apt-key.8.xml:199
msgid "&apt-get;, &apt-secure;"
msgstr "&apt-get;, &apt-secure;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-mark.8.xml:33
+#: apt-mark.8.xml:35
msgid "mark/unmark a package as being automatically-installed"
msgstr "Indiquer si un paquet a été installé automatiquement ou non"
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:39
+#: apt-mark.8.xml:41
msgid ""
"<command>apt-mark</command> will change whether a package has been marked as "
"being automatically installed."
@@ -2371,7 +2390,7 @@ msgstr ""
"a été automatiquement installé ou pas."
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:43
+#: apt-mark.8.xml:45
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 "
@@ -2387,7 +2406,7 @@ msgstr ""
"command>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:52
+#: apt-mark.8.xml:54
msgid ""
"<literal>auto</literal> is used to mark a package as being automatically "
"installed, which will cause the package to be removed when no more manually "
@@ -2398,7 +2417,7 @@ msgstr ""
"aucun paquet installé manuellement ne dépend de lui."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:60
+#: apt-mark.8.xml:62
msgid ""
"<literal>manual</literal> is used to mark a package as being manually "
"installed, which will prevent the package from being automatically removed "
@@ -2409,7 +2428,7 @@ msgstr ""
"aucun autre paquet n'en dépend."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:68
+#: apt-mark.8.xml:70
msgid ""
"<literal>hold</literal> is used to mark a package as held back, which will "
"prevent the package from being automatically installed, upgraded or "
@@ -2424,7 +2443,7 @@ msgstr ""
"non affecté par l'option <option>--file</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:78
+#: apt-mark.8.xml:80
msgid ""
"<literal>unhold</literal> is used to cancel a previously set hold on a "
"package to allow all actions again."
@@ -2434,7 +2453,7 @@ msgstr ""
"liée."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:84
+#: apt-mark.8.xml:86
msgid ""
"<literal>showauto</literal> is used to print a list of automatically "
"installed packages with each package on a new line. All automatically "
@@ -2448,7 +2467,7 @@ msgstr ""
"affichés."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:92
+#: apt-mark.8.xml:94
msgid ""
"<literal>showmanual</literal> can be used in the same way as "
"<literal>showauto</literal> except that it will print a list of manually "
@@ -2459,7 +2478,7 @@ msgstr ""
"manuellement."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:99
+#: apt-mark.8.xml:101
msgid ""
"<literal>showhold</literal> is used to print a list of packages on hold in "
"the same way as for the other show commands."
@@ -2468,7 +2487,7 @@ msgstr ""
"de manière analogue aux commandes de même type."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:115
+#: apt-mark.8.xml:117
msgid ""
"Read/Write package stats from the filename given with the parameter "
"&synopsis-param-filename; instead of from the default location, which is "
@@ -2481,7 +2500,7 @@ msgstr ""
"literal>)."
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:136
+#: apt-mark.8.xml:138
msgid ""
"<command>apt-mark</command> returns zero on normal operation, non-zero on "
"error."
@@ -2490,12 +2509,12 @@ msgstr ""
"autre chiffre en cas d'erreur."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-secure.8.xml:47
+#: apt-secure.8.xml:49
msgid "Archive authentication support for APT"
msgstr "Gestion de l'authentification d'archive avec APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:52
+#: apt-secure.8.xml:54
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 "
@@ -2508,7 +2527,7 @@ msgstr ""
"la clé de la signature du fichier Release."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:60
+#: apt-secure.8.xml:62
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 "
@@ -2524,7 +2543,7 @@ msgstr ""
"vérification des sources avant tout téléchargement de paquet."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:69
+#: apt-secure.8.xml:71
msgid ""
"The package frontends &apt-get;, &aptitude; and &synaptic; support this new "
"authentication feature."
@@ -2533,12 +2552,12 @@ msgstr ""
"fonction de certification."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:74
+#: apt-secure.8.xml:76
msgid "Trusted archives"
msgstr "Trusted archives"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:77
+#: apt-secure.8.xml:79
msgid ""
"The chain of trust from an apt archive to the end user is made up of several "
"steps. <command>apt-secure</command> is the last step in this chain; "
@@ -2555,7 +2574,7 @@ msgstr ""
"en sorte que l'archive soit fiable."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:85
+#: apt-secure.8.xml:87
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 "
@@ -2568,7 +2587,7 @@ msgstr ""
"verify et devscripts."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:92
+#: apt-secure.8.xml:94
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. In order to become "
@@ -2586,17 +2605,17 @@ msgstr ""
"l'identité des propriétaires de la clé."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:102
+#: apt-secure.8.xml:104
#, fuzzy
msgid ""
"Once the uploaded package is verified and included in the archive, the "
"maintainer signature is stripped off, and checksums of the package are "
"computed and put in the Packages file. The checksums 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 for this &keyring-distro; release, and distributed "
-"alongside the packages and the Packages files on &keyring-distro; mirrors. The keys "
-"are in the &keyring-distro; archive keyring available in the &keyring-package; "
-"package."
+"then signed by the archive key for this &keyring-distro; release, and "
+"distributed alongside the packages and the Packages files on &keyring-"
+"distro; mirrors. The keys are in the &keyring-distro; archive keyring "
+"available in the &keyring-package; package."
msgstr ""
"Une fois que le paquet envoyé a été vérifié et inclus dans l'archive, la "
"signature du responsable est enlevée, une somme de contrôle du paquet est "
@@ -2607,7 +2626,7 @@ msgstr ""
"miroirs. Les clés sont fournies par le paquet &keyring-package;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:113
+#: apt-secure.8.xml:115
msgid ""
"End users can check the signature of the Release file, extract a checksum of "
"a package from it and compare it with the checksum of the package they "
@@ -2619,7 +2638,7 @@ msgstr ""
"automatiquement."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:118
+#: apt-secure.8.xml:120
msgid ""
"Notice that this is distinct from checking signatures on a per package "
"basis. It is designed to prevent two possible attacks:"
@@ -2628,7 +2647,7 @@ msgstr ""
"paquet. Elle vise à empêcher deux types d'attaque possibles :"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:123
+#: apt-secure.8.xml:125
msgid ""
"<literal>Network \"man in the middle\" attacks</literal>. Without signature "
"checking, malicious agents can introduce themselves into the package "
@@ -2643,7 +2662,7 @@ msgstr ""
"trafic vers un serveur fourbe (par usurpation d'adresses)."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:131
+#: apt-secure.8.xml:133
msgid ""
"<literal>Mirror network compromise</literal>. Without signature checking, a "
"malicious agent can compromise a mirror host and modify the files in it to "
@@ -2656,7 +2675,7 @@ msgstr ""
"paquets de ce miroir propagent du code malveillant."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:138
+#: apt-secure.8.xml:140
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 "
@@ -2669,12 +2688,12 @@ msgstr ""
"signature des paquets."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:144
+#: apt-secure.8.xml:146
msgid "User configuration"
msgstr "Configuration utilisateur"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:146
+#: apt-secure.8.xml:148
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 "
@@ -2687,7 +2706,7 @@ msgstr ""
"Debian et les différents répertoires de paquets."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:153
+#: apt-secure.8.xml:155
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 "
@@ -2704,12 +2723,12 @@ msgstr ""
"l'archive que vous avez configurée."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:162
+#: apt-secure.8.xml:164
msgid "Archive configuration"
msgstr "Configuration d'une archive"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:164
+#: apt-secure.8.xml:166
msgid ""
"If you want to provide archive signatures in an archive under your "
"maintenance you have to:"
@@ -2718,7 +2737,7 @@ msgstr ""
"devez :"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:169
+#: apt-secure.8.xml:171
msgid ""
"<emphasis>Create a toplevel Release file</emphasis>, if it does not exist "
"already. You can do this by running <command>apt-ftparchive release</"
@@ -2729,7 +2748,7 @@ msgstr ""
"ftparchive release</command> (fournie dans le paquet apt-utils)."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:174
+#: apt-secure.8.xml:176
msgid ""
"<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --"
"clearsign -o InRelease Release</command> and <command>gpg -abs -o Release."
@@ -2740,7 +2759,7 @@ msgstr ""
"command>."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:178
+#: apt-secure.8.xml:180
msgid ""
"<emphasis>Publish the key fingerprint</emphasis>, that way your users will "
"know what key they need to import in order to authenticate the files in the "
@@ -2751,7 +2770,7 @@ msgstr ""
"authentifier les fichiers de l'archive."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:185
+#: apt-secure.8.xml:187
msgid ""
"Whenever the contents of the archive change (new packages are added or "
"removed) the archive maintainer has to follow the first two steps outlined "
@@ -2761,7 +2780,7 @@ msgstr ""
"les deux premières étapes."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:193
+#: apt-secure.8.xml:195
msgid ""
"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, "
"&debsign; &debsig-verify;, &gpg;"
@@ -2770,7 +2789,7 @@ msgstr ""
"&debsign; &debsig-verify;, &gpg;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:197
+#: apt-secure.8.xml:199
msgid ""
"For more background information you might want to review the <ulink url="
"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian "
@@ -2787,12 +2806,12 @@ msgstr ""
"Distribution HOWTO</ulink> par V. Alex Brennen."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:210
+#: apt-secure.8.xml:212
msgid "Manpage Authors"
msgstr "Auteurs des pages de manuel"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:212
+#: apt-secure.8.xml:214
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."
@@ -2801,12 +2820,12 @@ msgstr ""
"Peña, Isaac Jones, Colin Walters, Florian Weimer et Michael Vogt."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cdrom.8.xml:32
+#: apt-cdrom.8.xml:34
msgid "APT CD-ROM management utility"
msgstr "Utilitaire de gestion des CD d'APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:38
+#: apt-cdrom.8.xml:40
msgid ""
"<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of "
"available sources. <command>apt-cdrom</command> takes care of determining "
@@ -2819,7 +2838,7 @@ msgstr ""
"gravure et de vérifier les fichiers d'index."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:45
+#: apt-cdrom.8.xml:47
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 disc in a multi-CD set "
@@ -2831,7 +2850,7 @@ msgstr ""
"pour prendre en compte de possibles erreurs de gravure."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:56
+#: apt-cdrom.8.xml:58
msgid ""
"<literal>add</literal> is used to add a new disc to the source list. It will "
"unmount the CD-ROM device, prompt for a disc to be inserted and then proceed "
@@ -2846,7 +2865,7 @@ msgstr ""
"titre descriptif est demandé."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:64
+#: apt-cdrom.8.xml:66
msgid ""
"APT uses a CD-ROM ID to track which disc is currently in the drive and "
"maintains a database of these IDs in <filename>&statedir;/cdroms.list</"
@@ -2857,7 +2876,7 @@ msgstr ""
"identifiants dans <filename>&statedir;/cdroms.list</filename>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:72
+#: apt-cdrom.8.xml:74
msgid ""
"A debugging tool to report the identity of the current disc as well as the "
"stored file name"
@@ -2866,7 +2885,24 @@ msgstr ""
"le nom du fichier stocké."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:85
+#: apt-cdrom.8.xml:87
+#, fuzzy
+#| msgid ""
+#| "Mount point; specify the location to mount the CD-ROM. This mount point "
+#| "must be listed in <filename>/etc/fstab</filename> and properly "
+#| "configured. Configuration Item: <literal>Acquire::cdrom::mount</literal>."
+msgid ""
+"Do not try to auto-detect the CD-ROM path. Usually combined with the "
+"<option>--cdrom</option> option. Configuration Item: <literal>Acquire::"
+"cdrom::AutoDetect</literal>."
+msgstr ""
+"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><listitem><para>
+#: apt-cdrom.8.xml:95
msgid ""
"Mount point; specify the location to mount the CD-ROM. This mount point must "
"be listed in <filename>/etc/fstab</filename> and properly configured. "
@@ -2878,7 +2914,7 @@ msgstr ""
"mount</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:94
+#: apt-cdrom.8.xml:104
msgid ""
"Rename a disc; change the label of a disc or override the disc's given "
"label. This option will cause <command>apt-cdrom</command> to prompt for a "
@@ -2890,7 +2926,7 @@ msgstr ""
"<literal>APT::CDROM::Rename</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:103
+#: 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::"
@@ -2901,7 +2937,7 @@ msgstr ""
"NoMount</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:111
+#: 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 "
@@ -2915,7 +2951,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:121
+#: 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 "
@@ -2927,7 +2963,7 @@ msgstr ""
"le CD mais tous les paquets seront repérés."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:132
+#: 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: "
@@ -2938,12 +2974,12 @@ msgstr ""
"<literal>APT::CDROM::NoAct</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:145
+#: 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:150
+#: apt-cdrom.8.xml:160
msgid ""
"<command>apt-cdrom</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -2952,12 +2988,12 @@ msgstr ""
"nombre décimal 100 en cas d'erreur."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-config.8.xml:33
+#: apt-config.8.xml:35
msgid "APT Configuration Query program"
msgstr "Programme d'interrogation de la configuration d'APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:39
+#: apt-config.8.xml:41
msgid ""
"<command>apt-config</command> is an internal program used by various "
"portions of the APT suite to provide consistent configurability. It accesses "
@@ -2971,7 +3007,7 @@ msgstr ""
"apt.conf</filename>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:51
+#: apt-config.8.xml:53
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 "
@@ -2987,7 +3023,7 @@ msgstr ""
"cette commande devrait être utilisée comme suit :"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-config.8.xml:59
+#: apt-config.8.xml:61
#, no-wrap
msgid ""
"OPTS=\"-f\"\n"
@@ -2999,7 +3035,7 @@ msgstr ""
"eval $RES\n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:64
+#: apt-config.8.xml:66
msgid ""
"This will set the shell environment variable $OPTS to the value of MyApp::"
"options with a default of <option>-f</option>."
@@ -3008,7 +3044,7 @@ msgstr ""
"MyApp::Options ou, par défaut, la valeur -f."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:68
+#: apt-config.8.xml:70
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 "
@@ -3020,12 +3056,12 @@ msgstr ""
"vérifiée."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:77
+#: apt-config.8.xml:79
msgid "Just show the contents of the configuration space."
msgstr "Affiche seulement le contenu de l'espace de configuration."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:90
+#: apt-config.8.xml:92
msgid ""
"Include options which have an empty value. This is the default, so use --no-"
"empty to remove them from the output."
@@ -3035,12 +3071,12 @@ msgstr ""
"ce qui est retourné."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-config.8.xml:95
+#: apt-config.8.xml:97
msgid "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
msgstr "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:96
+#: apt-config.8.xml:98
msgid ""
"Defines the output of each config option. &percnt;t will be replaced with "
"its individual name, &percnt;f with its full hierarchical name and &percnt;v "
@@ -3058,13 +3094,13 @@ msgstr ""
"caractère &percnt; peut être affiché avec &percnt;&percnt; ."
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:110 apt-extracttemplates.1.xml:71 apt-sortpkgs.1.xml:64
-#: apt-ftparchive.1.xml:608
+#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66
+#: apt-ftparchive.1.xml:610
msgid "&apt-conf;"
msgstr "&apt-conf;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:115
+#: apt-config.8.xml:117
msgid ""
"<command>apt-config</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -3073,27 +3109,27 @@ msgstr ""
"le nombre 100 en cas d'erreur."
#. type: Content of: <refentry><refentryinfo><author><contrib>
-#: apt.conf.5.xml:20
+#: apt.conf.5.xml:22
msgid "Initial documentation of Debug::*."
msgstr "Documentation initiale de Debug::*."
#. type: Content of: <refentry><refentryinfo><author><email>
-#: apt.conf.5.xml:21
+#: apt.conf.5.xml:23
msgid "dburrows@debian.org"
msgstr "dburrows@debian.org"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt.conf.5.xml:31 apt_preferences.5.xml:25 sources.list.5.xml:26
+#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28
msgid "5"
msgstr "5"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt.conf.5.xml:38
+#: apt.conf.5.xml:40
msgid "Configuration file for APT"
msgstr "Fichier de configuration pour APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:42
+#: apt.conf.5.xml:44
msgid ""
"<filename>/etc/apt/apt.conf</filename> is the main configuration file shared "
"by all the tools in the APT suite of tools, though it is by no means the "
@@ -3107,7 +3143,7 @@ msgstr ""
"environnement d'utilisation uniforme."
#. type: Content of: <refentry><refsect1><orderedlist><para>
-#: apt.conf.5.xml:48
+#: apt.conf.5.xml:50
msgid ""
"When an APT tool starts up it will read the configuration files in the "
"following order:"
@@ -3116,7 +3152,7 @@ msgstr ""
"configuration dans l'ordre suivant :"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:50
+#: apt.conf.5.xml:52
msgid ""
"the file specified by the <envar>APT_CONFIG</envar> environment variable (if "
"any)"
@@ -3125,7 +3161,7 @@ msgstr ""
"elle existe"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:52
+#: apt.conf.5.xml:54
msgid ""
"all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
"order which have either no or \"<literal>conf</literal>\" as filename "
@@ -3146,14 +3182,14 @@ msgstr ""
"configuration étant, eux, ignorés silencieusemennt)."
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:59
+#: apt.conf.5.xml:61
msgid ""
"the main configuration file specified by <literal>Dir::Etc::main</literal>"
msgstr ""
"le fichier de configuration défini par <literal>Dir::Etc::Main</literal>"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:61
+#: apt.conf.5.xml:63
msgid ""
"the command line options are applied to override the configuration "
"directives or to load even more configuration files."
@@ -3163,12 +3199,12 @@ msgstr ""
"configuration."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:65
+#: apt.conf.5.xml:67
msgid "Syntax"
msgstr "Syntaxe"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:66
+#: apt.conf.5.xml:68
msgid ""
"The configuration file is organized in a tree with options organized into "
"functional groups. Option specification is given with a double colon "
@@ -3183,7 +3219,7 @@ msgstr ""
"Get. Il n'y a pas d'héritage des options des groupes parents."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:72
+#: apt.conf.5.xml:74
msgid ""
"Syntactically the configuration language is modeled after what the ISC tools "
"such as bind and dhcp use. Lines starting with <literal>//</literal> are "
@@ -3210,7 +3246,7 @@ msgstr ""
"accolades, comme suit :"
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:85
+#: apt.conf.5.xml:87
#, no-wrap
msgid ""
"APT {\n"
@@ -3228,7 +3264,7 @@ msgstr ""
"};\n"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:93
+#: apt.conf.5.xml:95
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 "
@@ -3240,13 +3276,13 @@ msgstr ""
"incluses, séparées par des points-virgules."
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:98
+#: apt.conf.5.xml:100
#, 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:101
+#: apt.conf.5.xml:103
msgid ""
"In general the sample configuration file &configureindex; is a good guide "
"for how it should look."
@@ -3255,7 +3291,7 @@ msgstr ""
"de configuration."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:104
+#: apt.conf.5.xml:106
msgid ""
"Case is not significant in names of configuration items, so in the previous "
"example you could use <literal>dpkg::pre-install-pkgs</literal>."
@@ -3265,7 +3301,7 @@ msgstr ""
"<literal>dpkg::pre-install-pkgs</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:107
+#: apt.conf.5.xml:109
msgid ""
"Names for the configuration items are optional if a list is defined as can "
"be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If "
@@ -3281,7 +3317,7 @@ msgstr ""
"réaffectant une valeur."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:112
+#: apt.conf.5.xml:114
msgid ""
"Two special commands are defined: <literal>#include</literal> (which is "
"deprecated and not supported by alternative implementations) and "
@@ -3301,7 +3337,7 @@ msgstr ""
"également se terminer avec un point-virgule."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:122
+#: apt.conf.5.xml:124
msgid ""
"The <literal>#clear</literal> command is the only way to delete a list or a "
"complete scope. Reopening a scope (or using the syntax described below with "
@@ -3317,7 +3353,7 @@ msgstr ""
"peuvent être remplacés mais seulement effacés."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:130
+#: apt.conf.5.xml:132
msgid ""
"All of the APT tools take an -o option which allows an arbitrary "
"configuration directive to be specified on the command line. The syntax is a "
@@ -3336,7 +3372,7 @@ msgstr ""
"champ d'action (« scope ») ne peut pas être indiquée à la ligne de commande."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:138
+#: apt.conf.5.xml:140
msgid ""
"Note that appending items to a list using <literal>::</literal> only works "
"for one item per line, and that you should not use it in combination with "
@@ -3368,12 +3404,12 @@ msgstr ""
"explicitement."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:153
+#: apt.conf.5.xml:155
msgid "The APT Group"
msgstr "Le groupe APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:154
+#: apt.conf.5.xml:156
msgid ""
"This group of options controls general APT behavior as well as holding the "
"options for all of the tools."
@@ -3382,7 +3418,7 @@ msgstr ""
"également des options communes à tous les outils."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:159
+#: apt.conf.5.xml:161
msgid ""
"System Architecture; sets the architecture to use when fetching files and "
"parsing package lists. The internal default is the architecture apt was "
@@ -3393,7 +3429,7 @@ msgstr ""
"valeur interne par défaut est l'architecture pour laquelle APT a été compilé."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:166
+#: apt.conf.5.xml:168
msgid ""
"All Architectures the system supports. For instance, CPUs implementing the "
"<literal>amd64</literal> (also called <literal>x86-64</literal>) "
@@ -3415,7 +3451,7 @@ msgstr ""
"sont enregistrées avec <command>dpkg --add-architecture</command>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:179
+#: apt.conf.5.xml:181
msgid ""
"Default release to install packages from if more than one version is "
"available. Contains release name, codename or release version. Examples: "
@@ -3429,7 +3465,7 @@ msgstr ""
"&apt-preferences;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:185
+#: apt.conf.5.xml:187
msgid ""
"Ignore held packages; this global option causes the problem resolver to "
"ignore held packages in its decision making."
@@ -3439,7 +3475,7 @@ msgstr ""
"décision."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:190
+#: apt.conf.5.xml:192
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 "
@@ -3453,7 +3489,7 @@ msgstr ""
"direct pour les réinstaller."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:198
+#: apt.conf.5.xml:200
msgid ""
"Defaults to on, which will cause APT to install essential and important "
"packages as soon as possible in an install/upgrade operation, in order to "
@@ -3480,7 +3516,7 @@ msgstr ""
"dépendances ne sont pas satisfaites."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:210
+#: apt.conf.5.xml:212
msgid ""
"The immediate configuration marker is also applied in the potentially "
"problematic case of circular dependencies, since a dependency with the "
@@ -3509,7 +3545,7 @@ msgstr ""
"le seul qu'elle permet d'éviter."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:223
+#: apt.conf.5.xml:225
msgid ""
"Before a big operation like <literal>dist-upgrade</literal> is run with this "
"option disabled you should try to explicitly <literal>install</literal> the "
@@ -3527,7 +3563,7 @@ msgstr ""
"corriger les processus de mise à jour."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:234
+#: apt.conf.5.xml:236
msgid ""
"Never enable this option unless you <emphasis>really</emphasis> know what "
"you are doing. It permits APT to temporarily remove an essential package to "
@@ -3549,7 +3585,7 @@ msgstr ""
"tous les paquets dont ces paquets dépendent."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:246
+#: apt.conf.5.xml:248
msgid ""
"APT uses since version 0.7.26 a resizable memory mapped cache file to store "
"the available information. <literal>Cache-Start</literal> acts as a hint of "
@@ -3589,14 +3625,14 @@ msgstr ""
"l'augmentation automatique de la taille du cache est désactivée."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:262
+#: apt.conf.5.xml:264
msgid "Defines which packages are considered essential build dependencies."
msgstr ""
"Cette option définit les paquets qui sont considérés comme faisant partie "
"des dépendances essentielles pour la construction de paquets."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:266
+#: apt.conf.5.xml:268
msgid ""
"The Get subsection controls the &apt-get; tool; please see its documentation "
"for more information about the options here."
@@ -3606,7 +3642,7 @@ msgstr ""
"question."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:271
+#: apt.conf.5.xml:273
msgid ""
"The Cache subsection controls the &apt-cache; tool; please see its "
"documentation for more information about the options here."
@@ -3616,7 +3652,7 @@ msgstr ""
"options en question."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:276
+#: apt.conf.5.xml:278
msgid ""
"The CDROM subsection controls the &apt-cdrom; tool; please see its "
"documentation for more information about the options here."
@@ -3626,12 +3662,12 @@ msgstr ""
"options en question."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:282
+#: apt.conf.5.xml:284
msgid "The Acquire Group"
msgstr "Le groupe Acquire"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:283
+#: apt.conf.5.xml:285
msgid ""
"The <literal>Acquire</literal> group of options controls the download of "
"packages as well as the various \"acquire methods\" responsible for the "
@@ -3642,7 +3678,7 @@ msgstr ""
"effectuent ce téléchargement (voir aussi &sources-list;)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:290
+#: apt.conf.5.xml:292
msgid ""
"Security related option defaulting to true, as giving a Release file's "
"validation an expiration date prevents replay attacks over a long timescale, "
@@ -3663,7 +3699,7 @@ msgstr ""
"alors utilisée."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:303
+#: apt.conf.5.xml:305
msgid ""
"Maximum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3682,7 +3718,7 @@ msgstr ""
"l'option."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:315
+#: apt.conf.5.xml:317
msgid ""
"Minimum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3702,7 +3738,7 @@ msgstr ""
"nom de l'option."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:327
+#: apt.conf.5.xml:329
msgid ""
"Try to download deltas called <literal>PDiffs</literal> for indexes (like "
"<filename>Packages</filename> files) instead of downloading whole ones. True "
@@ -3713,7 +3749,7 @@ msgstr ""
"filename>), plutôt que de les télécharger entièrement. Par défaut à « true »."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:330
+#: apt.conf.5.xml:332
msgid ""
"Two sub-options to limit the use of PDiffs are also available: "
"<literal>FileLimit</literal> can be used to specify a maximum number of "
@@ -3732,7 +3768,7 @@ msgstr ""
"fichiers de différences."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:340
+#: apt.conf.5.xml:342
msgid ""
"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
"literal> or <literal>access</literal> which determines how APT parallelizes "
@@ -3748,7 +3784,7 @@ msgstr ""
"initiée."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:348
+#: apt.conf.5.xml:350
msgid ""
"Number of retries to perform. If this is non-zero APT will retry failed "
"files the given number of times."
@@ -3758,7 +3794,7 @@ msgstr ""
"échoué."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:353
+#: apt.conf.5.xml:355
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."
@@ -3768,7 +3804,7 @@ msgstr ""
"archives de sources au lieu de les copier. Par défaut à « true »."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:358
+#: apt.conf.5.xml:360
msgid ""
"<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. "
"It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</"
@@ -3789,7 +3825,7 @@ msgstr ""
"options de mandataire HTTP."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:366
+#: apt.conf.5.xml:368
msgid ""
"Three settings are provided for cache control with HTTP/1.1 compliant proxy "
"caches. <literal>No-Cache</literal> tells the proxy not to use its cached "
@@ -3809,7 +3845,7 @@ msgstr ""
"fichiers .deb très grands."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:376 apt.conf.5.xml:448
+#: apt.conf.5.xml:378 apt.conf.5.xml:466
msgid ""
"The option <literal>timeout</literal> sets the timeout timer used by the "
"method; this value applies to the connection as well as the data timeout."
@@ -3819,7 +3855,7 @@ msgstr ""
"connexion qu'aux données."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:379
+#: apt.conf.5.xml:381
msgid ""
"The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to "
"enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e."
@@ -3839,7 +3875,7 @@ msgstr ""
"qui ne respectent pas la norme HTTP/1.1."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:386
+#: apt.conf.5.xml:388
msgid ""
"<literal>Acquire::http::AllowRedirect</literal> controls whether APT will "
"follow redirects, which is enabled by default."
@@ -3848,13 +3884,20 @@ msgstr ""
"suive les redirections. Ce réglage est activé par défaut."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:389
+#: apt.conf.5.xml:391
+#, fuzzy
+#| msgid ""
+#| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
+#| "literal> which accepts integer values in kilobytes. The default value is "
+#| "0 which deactivates the limit and tries to use all available bandwidth "
+#| "(note that this option implicitly disables downloading from multiple "
+#| "servers at the same time.)"
msgid ""
"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
-"literal> which accepts integer values in kilobytes. The default value is 0 "
-"which deactivates the limit and tries to use all available bandwidth (note "
-"that this option implicitly disables downloading from multiple servers at "
-"the same time.)"
+"literal> which accepts integer values in kilobytes per second. The default "
+"value is 0 which deactivates the limit and tries to use all available "
+"bandwidth. Note that this option implicitly disables downloading from "
+"multiple servers at the same time."
msgstr ""
"La bande passante utilisée peut être limité avec <literal>Acquire::http::Dl-"
"Limit</literal> qui peut prendre une valeur entière, l'unité utilisée étant "
@@ -3863,7 +3906,7 @@ msgstr ""
"implicitement le téléchargement simultané depuis plusieurs serveurs."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:394
+#: apt.conf.5.xml:398
msgid ""
"<literal>Acquire::http::User-Agent</literal> can be used to set a different "
"User-Agent for the http download method as some proxies allow access for "
@@ -3877,6 +3920,20 @@ msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
#: apt.conf.5.xml:402
msgid ""
+"<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify "
+"an external command to discover the http proxy to use. Apt expects the "
+"command to output the proxy on stdout in the style <literal>http://proxy:"
+"port/</literal>. This will override the generic <literal>Acquire::http::"
+"Proxy</literal> but not any specific host proxy configuration set via "
+"<literal>Acquire::http::Proxy::$HOST</literal>. See the &squid-deb-proxy-"
+"client; package for an example implementation that uses avahi. This option "
+"takes precedence over the legacy option name <literal>ProxyAutoDetect</"
+"literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:420
+msgid ""
"The <literal>Cache-control</literal>, <literal>Timeout</literal>, "
"<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and "
"<literal>proxy</literal> options work for HTTPS URIs in the same way as for "
@@ -3892,7 +3949,7 @@ msgstr ""
"literal> n'est pas encore gérée."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:410
+#: apt.conf.5.xml:428
msgid ""
"<literal>CaInfo</literal> suboption specifies place of file that holds info "
"about trusted certificates. <literal>&lt;host&gt;::CaInfo</literal> is the "
@@ -3925,7 +3982,7 @@ msgstr ""
"<literal>TLSv1</literal> ou <literal>SSLv3</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:431
+#: apt.conf.5.xml:449
msgid ""
"<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. "
"It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</"
@@ -3961,7 +4018,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:451
+#: apt.conf.5.xml:469
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, "
@@ -3978,7 +4035,7 @@ msgstr ""
"modèle de fichier de configuration)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:458
+#: apt.conf.5.xml:476
msgid ""
"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
"envar> environment variable to an HTTP URL - see the discussion of the http "
@@ -3993,7 +4050,7 @@ msgstr ""
"efficacité de cette méthode."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:463
+#: apt.conf.5.xml:481
msgid ""
"The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@ -4009,13 +4066,13 @@ msgstr ""
"des serveurs FTP ne suivent pas la RFC 2428."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:477
+#: apt.conf.5.xml:495
#, no-wrap
msgid "/cdrom/::Mount \"foo\";"
msgstr "/cdrom/::Mount \"foo\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:472
+#: apt.conf.5.xml:490
msgid ""
"For URIs using the <literal>cdrom</literal> method, the only configurable "
"option is the mount point, <literal>cdrom::Mount</literal>, which must be "
@@ -4038,7 +4095,7 @@ msgstr ""
"<literal>UMount</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:485
+#: apt.conf.5.xml:503
msgid ""
"For GPGV URIs the only configurable option is <literal>gpgv::Options</"
"literal>, which passes additional parameters to gpgv."
@@ -4047,13 +4104,13 @@ msgstr ""
"permet de passer des paramètres à gpgv"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:496
+#: apt.conf.5.xml:514
#, no-wrap
msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
msgstr "Acquire::CompressionTypes::<replaceable>ExtensionFichier</replaceable> \"<replaceable>NomMethode</replaceable>\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:491
+#: apt.conf.5.xml:509
msgid ""
"List of compression types which are understood by the acquire methods. "
"Files like <filename>Packages</filename> can be available in various "
@@ -4073,19 +4130,19 @@ msgstr ""
"type=\"synopsis\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:501
+#: apt.conf.5.xml:519
#, no-wrap
msgid "Acquire::CompressionTypes::Order:: \"gz\";"
msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:504
+#: apt.conf.5.xml:522
#, no-wrap
msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:497
+#: apt.conf.5.xml:515
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 "
@@ -4117,13 +4174,13 @@ msgstr ""
"<literal>bz2</literal> à liste car il sera ajouté automatiquement."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:511
+#: apt.conf.5.xml:529
#, no-wrap
msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:506
+#: apt.conf.5.xml:524
msgid ""
"Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></"
"literal> will be checked at run time. If this option has been set, the "
@@ -4150,7 +4207,7 @@ msgstr ""
"question."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:516
+#: apt.conf.5.xml:534
msgid ""
"The special type <literal>uncompressed</literal> can be used to give "
"uncompressed files a preference, but note that most archives don't provide "
@@ -4162,7 +4219,7 @@ msgstr ""
"surtout destiné aux miroirs locaux."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:523
+#: apt.conf.5.xml:541
msgid ""
"When downloading <literal>gzip</literal> compressed indexes (Packages, "
"Sources, or Translations), keep them gzip compressed locally instead of "
@@ -4177,7 +4234,7 @@ msgstr ""
"(« False »)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:531
+#: apt.conf.5.xml:549
msgid ""
"The Languages subsection controls which <filename>Translation</filename> "
"files are downloaded and in which order APT tries to display the description-"
@@ -4197,13 +4254,13 @@ msgstr ""
"langues étant particulièrement rares."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting>
-#: apt.conf.5.xml:548
+#: apt.conf.5.xml:566
#, no-wrap
msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
msgstr "Acquire::Languages { \"environment\"; \"fr\"; \"en\"; \"none\"; \"de\"; };"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:536
+#: apt.conf.5.xml:554
msgid ""
"The default list includes \"environment\" and \"en\". "
"\"<literal>environment</literal>\" has a special meaning here: it will be "
@@ -4243,7 +4300,7 @@ msgstr ""
"alors « de, fr, en ». <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:549
+#: apt.conf.5.xml:567
msgid ""
"Note: To prevent problems resulting from APT being executed in different "
"environments (e.g. by different users or by other programs) all Translation "
@@ -4257,22 +4314,22 @@ msgstr ""
"(après un « <literal>none</literal> » implicite)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:558
+#: apt.conf.5.xml:576
msgid "When downloading, force to use only the IPv4 protocol."
msgstr "Utilisation imposée du protocole IPv4 lors des téléchargements."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:564
+#: apt.conf.5.xml:582
msgid "When downloading, force to use only the IPv6 protocol."
msgstr "Utilisation imposée du protocole IPv6 lors des téléchargements."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:571
+#: apt.conf.5.xml:589
msgid "Directories"
msgstr "Les répertoires"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:573
+#: apt.conf.5.xml:591
msgid ""
"The <literal>Dir::State</literal> section has directories that pertain to "
"local state information. <literal>lists</literal> is the directory to place "
@@ -4292,7 +4349,7 @@ msgstr ""
"<filename>./</filename>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:580
+#: apt.conf.5.xml:598
msgid ""
"<literal>Dir::Cache</literal> contains locations pertaining to local cache "
"information, such as the two package caches <literal>srcpkgcache</literal> "
@@ -4315,7 +4372,7 @@ msgstr ""
"Cache</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:589
+#: apt.conf.5.xml:607
msgid ""
"<literal>Dir::Etc</literal> contains the location of configuration files, "
"<literal>sourcelist</literal> gives the location of the sourcelist and "
@@ -4330,7 +4387,7 @@ msgstr ""
"fichier de configuration indiqué par la variable <envar>APT_CONFIG</envar>)."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:595
+#: apt.conf.5.xml:613
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 "
@@ -4341,7 +4398,7 @@ msgstr ""
"configuration est chargé."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:599
+#: apt.conf.5.xml:617
msgid ""
"Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
"Bin::Methods</literal> specifies the location of the method handlers and "
@@ -4359,7 +4416,7 @@ msgstr ""
"programmes correspondants."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:607
+#: apt.conf.5.xml:625
msgid ""
"The configuration item <literal>RootDir</literal> has a special meaning. If "
"set, all paths in <literal>Dir::</literal> will be relative to "
@@ -4381,7 +4438,7 @@ msgstr ""
"staging/var/lib/dpkg/status</filename>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:620
+#: apt.conf.5.xml:638
msgid ""
"The <literal>Ignore-Files-Silently</literal> list can be used to specify "
"which files APT should silently ignore while parsing the files in the "
@@ -4399,12 +4456,12 @@ msgstr ""
"est possible d'utiliser la syntaxe des expressions rationnelles."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:629
+#: apt.conf.5.xml:647
msgid "APT in DSelect"
msgstr "APT et DSelect"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:631
+#: apt.conf.5.xml:649
msgid ""
"When APT is used as a &dselect; method several configuration directives "
"control the default behavior. These are in the <literal>DSelect</literal> "
@@ -4415,7 +4472,7 @@ msgstr ""
"<literal>DSelect</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:636
+#: apt.conf.5.xml:654
msgid ""
"Cache Clean mode; this value may be one of <literal>always</literal>, "
"<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</"
@@ -4438,7 +4495,7 @@ msgstr ""
"avant de récupérer de nouveaux paquets."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:650
+#: apt.conf.5.xml:668
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the install phase."
@@ -4447,7 +4504,7 @@ msgstr ""
"&apt-get; lors de la phase d'installation."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:655
+#: apt.conf.5.xml:673
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the update phase."
@@ -4456,7 +4513,7 @@ msgstr ""
"&apt-get; lors de la phase de mise à jour."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:660
+#: apt.conf.5.xml:678
msgid ""
"If true the [U]pdate operation in &dselect; will always prompt to continue. "
"The default is to prompt only on error."
@@ -4466,12 +4523,12 @@ msgstr ""
"d'erreur que l'on propose à l'utilisateur d'intervenir."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:666
+#: apt.conf.5.xml:684
msgid "How APT calls &dpkg;"
msgstr "Méthode d'appel de &dpkg; par APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:667
+#: apt.conf.5.xml:685
msgid ""
"Several configuration directives control how APT invokes &dpkg;. These are "
"in the <literal>DPkg</literal> section."
@@ -4480,7 +4537,7 @@ msgstr ""
"&dpkg; : elles figurent dans la section <literal>DPkg</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:672
+#: apt.conf.5.xml:690
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 "
@@ -4491,7 +4548,7 @@ msgstr ""
"est passé comme un seul paramètre à &dpkg;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:678
+#: apt.conf.5.xml:696
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 "
@@ -4504,13 +4561,21 @@ msgstr ""
"<filename>/bin/sh</filename> : APT s'arrête dès que l'une d'elles échoue."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:685
+#: apt.conf.5.xml:703
+#, fuzzy
+#| msgid ""
+#| "This is a list of shell commands to run before invoking &dpkg;. Like "
+#| "<literal>options</literal> this must be specified in list notation. The "
+#| "commands are invoked in order using <filename>/bin/sh</filename>; should "
+#| "any fail APT will abort. APT will pass the filenames of all .deb files it "
+#| "is going to install to the commands, one per line on standard input."
msgid ""
"This is a list of shell commands to run before invoking &dpkg;. Like "
"<literal>options</literal> this must be specified in list notation. The "
"commands are invoked in order using <filename>/bin/sh</filename>; should any "
"fail APT will abort. APT will pass the filenames of all .deb files it is "
-"going to install to the commands, one per line on standard input."
+"going to install to the commands, one per line on the requested file "
+"descriptor, defaulting to standard input."
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 "
@@ -4520,13 +4585,19 @@ msgstr ""
"qu'il va installer, à raison d'un par ligne."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:691
+#: apt.conf.5.xml:710
+#, fuzzy
+#| msgid ""
+#| "Version 2 of this protocol dumps more information, including the protocol "
+#| "version, the APT configuration space and the packages, files and versions "
+#| "being changed. Version 2 is enabled by setting <literal>DPkg::Tools::"
+#| "options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command "
+#| "given to <literal>Pre-Install-Pkgs</literal>."
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 3 adds the architecture and <literal>MultiArch</"
+"literal> flag to each version being dumped."
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, "
@@ -4536,7 +4607,29 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:699
+#: apt.conf.5.xml:715
+msgid ""
+"The version of the protocol to be used for the command "
+"<literal><replaceable>cmd</replaceable></literal> can be chosen by setting "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::Version</"
+"literal> accordingly, the default being version 1. If APT isn't supporting "
+"the requested version it will send the information in the highest version it "
+"has support for instead."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:722
+msgid ""
+"The file descriptor to be used to send the information can be requested with "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</"
+"literal> which defaults to <literal>0</literal> for standard input and is "
+"available since version 0.9.11. Support for the option can be detected by "
+"looking for the environment variable <envar>APT_HOOK_INFO_FD</envar> which "
+"contains the number of the used file descriptor as a confirmation."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:732
msgid ""
"APT chdirs to this directory before invoking &dpkg;, the default is "
"<filename>/</filename>."
@@ -4545,7 +4638,7 @@ msgstr ""
"le répertoire <filename>/</filename>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:704
+#: apt.conf.5.xml:737
msgid ""
"These options are passed to &dpkg-buildpackage; when compiling packages; the "
"default is to disable signing and produce all binaries."
@@ -4555,14 +4648,14 @@ msgstr ""
"créés."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt.conf.5.xml:709
+#: apt.conf.5.xml:742
msgid "dpkg trigger usage (and related options)"
msgstr ""
"utilisation des actions différées (« triggers ») de dpkg (et options "
"associées)"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:710
+#: apt.conf.5.xml:743
msgid ""
"APT can call &dpkg; in such a way as to let it make aggressive use of "
"triggers over multiple calls of &dpkg;. Without further options &dpkg; will "
@@ -4589,7 +4682,7 @@ msgstr ""
"pendant la configuration des paquets."
#. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
-#: apt.conf.5.xml:725
+#: apt.conf.5.xml:758
#, no-wrap
msgid ""
"DPkg::NoTriggers \"true\";\n"
@@ -4603,7 +4696,7 @@ msgstr ""
"DPkg::TriggersPending \"true\";"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:719
+#: apt.conf.5.xml:752
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 "
@@ -4627,7 +4720,7 @@ msgstr ""
"<placeholder type=\"literallayout\" id=\"0\"/>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:732
+#: apt.conf.5.xml:765
msgid ""
"Add the no triggers flag to all &dpkg; calls (except the ConfigurePending "
"call). See &dpkg; if you are interested in what this actually means. In "
@@ -4650,7 +4743,7 @@ msgstr ""
"options « unpack » et « remove »."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:740
+#: apt.conf.5.xml:773
msgid ""
"Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
"and \"<literal>no</literal>\". The default value is \"<literal>all</literal>"
@@ -4680,7 +4773,7 @@ msgstr ""
"configuré et donc éventuellement non amorçable."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:755
+#: apt.conf.5.xml:788
msgid ""
"If this option is set APT will call <command>dpkg --configure --pending</"
"command> to let &dpkg; handle all required configurations and triggers. This "
@@ -4699,7 +4792,7 @@ msgstr ""
"peut conserver l'option active."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:762
+#: apt.conf.5.xml:795
msgid ""
"Useful for the <literal>smart</literal> configuration as a package which has "
"pending triggers is not considered as <literal>installed</literal>, and "
@@ -4717,7 +4810,7 @@ msgstr ""
"celles concernant le paquet en cours de traitement."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:775
+#: apt.conf.5.xml:808
#, no-wrap
msgid ""
"OrderList::Score {\n"
@@ -4735,7 +4828,7 @@ msgstr ""
"};"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:768
+#: apt.conf.5.xml:801
msgid ""
"Essential packages (and their dependencies) should be configured immediately "
"after unpacking. It is a good idea to do this quite early in the upgrade "
@@ -4761,12 +4854,12 @@ msgstr ""
"id=\"0\"/>"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:788
+#: apt.conf.5.xml:821
msgid "Periodic and Archives options"
msgstr "Options « Periodic » et « Archive »"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:789
+#: apt.conf.5.xml:822
msgid ""
"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
"of options configure behavior of apt periodic updates, which is done by the "
@@ -4778,12 +4871,12 @@ msgstr ""
"script <literal>/etc/cron.daily/apt</literal>, lancé quotidiennement."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:797
+#: apt.conf.5.xml:830
msgid "Debug options"
msgstr "Les options de débogage"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:799
+#: apt.conf.5.xml:832
msgid ""
"Enabling options in the <literal>Debug::</literal> section will cause "
"debugging information to be sent to the standard error stream of the program "
@@ -4801,7 +4894,7 @@ msgstr ""
"peuvent tout de même être utiles :"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:810
+#: apt.conf.5.xml:843
msgid ""
"<literal>Debug::pkgProblemResolver</literal> enables output about the "
"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@ -4812,7 +4905,7 @@ msgstr ""
"upgrade, upgrade, install, remove et purge</literal>."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:818
+#: apt.conf.5.xml:851
msgid ""
"<literal>Debug::NoLocking</literal> disables all file locking. This can be "
"used to run some operations (for instance, <literal>apt-get -s install</"
@@ -4824,7 +4917,7 @@ msgstr ""
"superutilisateur."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:827
+#: apt.conf.5.xml:860
msgid ""
"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
"time that <literal>apt</literal> invokes &dpkg;."
@@ -4836,7 +4929,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:835
+#: apt.conf.5.xml:868
msgid ""
"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
"in CD-ROM IDs."
@@ -4845,12 +4938,12 @@ msgstr ""
"type statfs dans les identifiants de CD."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:845
+#: apt.conf.5.xml:878
msgid "A full list of debugging options to apt follows."
msgstr "Liste complète des options de débogage de APT :"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:854
+#: apt.conf.5.xml:887
msgid ""
"Print information related to accessing <literal>cdrom://</literal> sources."
msgstr ""
@@ -4858,24 +4951,24 @@ msgstr ""
"literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:865
+#: apt.conf.5.xml:898
msgid "Print information related to downloading packages using FTP."
msgstr ""
"Affiche les informations concernant le téléchargement de paquets par FTP."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:876
+#: apt.conf.5.xml:909
msgid "Print information related to downloading packages using HTTP."
msgstr ""
"Affiche les informations concernant le téléchargement de paquets par HTTP."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:887
+#: apt.conf.5.xml:920
msgid "Print information related to downloading packages using HTTPS."
msgstr "Print information related to downloading packages using HTTPS."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:898
+#: apt.conf.5.xml:931
msgid ""
"Print information related to verifying cryptographic signatures using "
"<literal>gpg</literal>."
@@ -4884,7 +4977,7 @@ msgstr ""
"cryptographiques avec <literal>gpg</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:909
+#: apt.conf.5.xml:942
msgid ""
"Output information about the process of accessing collections of packages "
"stored on CD-ROMs."
@@ -4893,14 +4986,14 @@ msgstr ""
"stockées sur CD."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:919
+#: apt.conf.5.xml:952
msgid "Describes the process of resolving build-dependencies in &apt-get;."
msgstr ""
"Décrit le processus de résolution des dépendances pour la construction de "
"paquets source ( « build-dependencies » ) par &apt-get;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:929
+#: apt.conf.5.xml:962
msgid ""
"Output each cryptographic hash that is generated by the <literal>apt</"
"literal> libraries."
@@ -4909,7 +5002,7 @@ msgstr ""
"librairies d'<literal>apt</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:939
+#: apt.conf.5.xml:972
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 "
@@ -4920,7 +5013,7 @@ msgstr ""
"utilisés sur le système de fichier du CD."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:950
+#: apt.conf.5.xml:983
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."
@@ -4930,14 +5023,14 @@ msgstr ""
"temps."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:962
+#: apt.conf.5.xml:995
msgid "Log when items are added to or removed from the global download queue."
msgstr ""
"Trace les ajouts et suppressions d'éléments de la queue globale de "
"téléchargement."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:972
+#: apt.conf.5.xml:1005
msgid ""
"Output status messages and errors related to verifying checksums and "
"cryptographic signatures of downloaded files."
@@ -4947,7 +5040,7 @@ msgstr ""
"éventuelles."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:982
+#: apt.conf.5.xml:1015
msgid ""
"Output information about downloading and applying package index list diffs, "
"and errors relating to package index list diffs."
@@ -4957,7 +5050,7 @@ msgstr ""
"éventuelles."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:994
+#: apt.conf.5.xml:1027
msgid ""
"Output information related to patching apt package lists when downloading "
"index diffs instead of full indices."
@@ -4967,7 +5060,7 @@ msgstr ""
"place des fichiers complets."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1005
+#: apt.conf.5.xml:1038
msgid ""
"Log all interactions with the sub-processes that actually perform downloads."
msgstr ""
@@ -4975,7 +5068,7 @@ msgstr ""
"effectivement des téléchargements."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1016
+#: apt.conf.5.xml:1049
msgid ""
"Log events related to the automatically-installed status of packages and to "
"the removal of unused packages."
@@ -4984,7 +5077,7 @@ msgstr ""
"automatiquement, et la suppression des paquets inutiles."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1026
+#: apt.conf.5.xml:1059
msgid ""
"Generate debug messages describing which packages are being automatically "
"installed to resolve dependencies. This corresponds to the initial auto-"
@@ -4999,7 +5092,7 @@ msgstr ""
"de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1040
+#: apt.conf.5.xml:1073
msgid ""
"Generate debug messages describing which packages are marked as keep/install/"
"remove while the ProblemResolver does his work. Each addition or deletion "
@@ -5035,7 +5128,7 @@ msgstr ""
"de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1061
+#: apt.conf.5.xml:1094
msgid ""
"When invoking &dpkg;, output the precise command line with which it is being "
"invoked, with arguments separated by a single space character."
@@ -5044,7 +5137,7 @@ msgstr ""
"paramètres sont séparés par des espaces."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1072
+#: apt.conf.5.xml:1105
msgid ""
"Output all the data received from &dpkg; on the status file descriptor and "
"any errors encountered while parsing it."
@@ -5054,7 +5147,7 @@ msgstr ""
"fichier."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1083
+#: apt.conf.5.xml:1116
msgid ""
"Generate a trace of the algorithm that decides the order in which "
"<literal>apt</literal> should pass packages to &dpkg;."
@@ -5063,18 +5156,18 @@ msgstr ""
"<literal>apt</literal> passe les paquets à &dpkg;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1095
+#: apt.conf.5.xml:1128
msgid ""
"Output status messages tracing the steps performed when invoking &dpkg;."
msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1106
+#: apt.conf.5.xml:1139
msgid "Output the priority of each package list on startup."
msgstr "Affiche, au lancement, la priorité de chaque liste de paquets."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1116
+#: apt.conf.5.xml:1149
msgid ""
"Trace the execution of the dependency resolver (this applies only to what "
"happens when a complex dependency problem is encountered)."
@@ -5083,7 +5176,7 @@ msgstr ""
"concerne que les cas où un problème de dépendances complexe se présente)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1127
+#: apt.conf.5.xml:1160
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 "
@@ -5094,7 +5187,7 @@ msgstr ""
"est décrite dans <literal>Debug::pkgDepCache::Marker</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1139
+#: apt.conf.5.xml:1172
msgid ""
"Print information about the vendors read from <filename>/etc/apt/vendors."
"list</filename>."
@@ -5103,13 +5196,13 @@ msgstr ""
"list</filename>."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:1161 apt_preferences.5.xml:545 sources.list.5.xml:211
-#: apt-ftparchive.1.xml:596
+#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:217
+#: apt-ftparchive.1.xml:598
msgid "Examples"
msgstr "Exemples"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1162
+#: apt.conf.5.xml:1195
msgid ""
"&configureindex; is a configuration file showing example values for all "
"possible options."
@@ -5119,17 +5212,17 @@ msgstr ""
#. ? reading apt.conf
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1174
+#: apt.conf.5.xml:1207
msgid "&apt-cache;, &apt-config;, &apt-preferences;."
msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt_preferences.5.xml:32
+#: apt_preferences.5.xml:34
msgid "Preference control file for APT"
msgstr "Fichier de contrôle des préférences pour APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:37
+#: apt_preferences.5.xml:39
msgid ""
"The APT preferences file <filename>/etc/apt/preferences</filename> and the "
"fragment files in the <filename>/etc/apt/preferences.d/</filename> folder "
@@ -5142,7 +5235,7 @@ msgstr ""
"l'on veut installer."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:42
+#: apt_preferences.5.xml:44
msgid ""
"Several versions of a package may be available for installation when the "
"&sources-list; file contains references to more than one distribution (for "
@@ -5164,7 +5257,7 @@ msgstr ""
"veut installer."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:52
+#: apt_preferences.5.xml:54
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 "
@@ -5180,7 +5273,7 @@ msgstr ""
"le choix des exemplaires, seulement sur le choix de la version."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:59
+#: apt_preferences.5.xml:61
msgid ""
"Preferences are a strong power in the hands of a system administrator but "
"they can become also their biggest nightmare if used without care! APT will "
@@ -5201,7 +5294,7 @@ msgstr ""
"mélangées sans une bonne compréhension des paragraphes qui suivent."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:70
+#: apt_preferences.5.xml:72
msgid ""
"Note that the files in the <filename>/etc/apt/preferences.d</filename> "
"directory are parsed in alphanumeric ascending order and need to obey the "
@@ -5223,24 +5316,24 @@ msgstr ""
"étant, eux, ignorés silencieusemennt)."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:79
+#: apt_preferences.5.xml:81
msgid "APT's Default Priority Assignments"
msgstr "Priorités affectées par défaut"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:94
+#: apt_preferences.5.xml:96
#, 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:97
+#: apt_preferences.5.xml:99
#, 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:81
+#: apt_preferences.5.xml:83
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 "
@@ -5265,7 +5358,7 @@ msgstr ""
"\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:101
+#: apt_preferences.5.xml:103
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:"
@@ -5274,12 +5367,12 @@ msgstr ""
"suivant pour déterminer la priorité des versions d'un paquet :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:106
+#: apt_preferences.5.xml:108
msgid "priority 1"
msgstr "priorité 1"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:107
+#: apt_preferences.5.xml:109
msgid ""
"to the versions coming from archives which in their <filename>Release</"
"filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</"
@@ -5292,12 +5385,12 @@ msgstr ""
"<literal>experimental</literal> de Debian."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:113
+#: apt_preferences.5.xml:115
msgid "priority 100"
msgstr "une priorité égale à 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:114
+#: apt_preferences.5.xml:116
msgid ""
"to the version that is already installed (if any) and to the versions coming "
"from archives which in their <filename>Release</filename> files are marked "
@@ -5310,12 +5403,12 @@ msgstr ""
"depuis <literal>squeeze-backports</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:121
+#: apt_preferences.5.xml:123
msgid "priority 500"
msgstr "une priorité égale à 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:122
+#: apt_preferences.5.xml:124
msgid ""
"to the versions that are not installed and do not belong to the target "
"release."
@@ -5324,12 +5417,12 @@ msgstr ""
"pas à la distribution par défaut."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:126
+#: apt_preferences.5.xml:128
msgid "priority 990"
msgstr "une priorité égale à 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:127
+#: apt_preferences.5.xml:129
msgid ""
"to the versions that are not installed and belong to the target release."
msgstr ""
@@ -5337,7 +5430,7 @@ msgstr ""
"la distribution par défaut."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:132
+#: apt_preferences.5.xml:134
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 "
@@ -5355,7 +5448,7 @@ msgstr ""
"« ButAutomaticUpgrades: yes »."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:139
+#: apt_preferences.5.xml:141
msgid ""
"APT then applies the following rules, listed in order of precedence, to "
"determine which version of a package to install."
@@ -5364,7 +5457,7 @@ msgstr ""
"qu'il faut installer (par ordre de priorité) :"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:142
+#: apt_preferences.5.xml:144
msgid ""
"Never downgrade unless the priority of an available version exceeds 1000. "
"(\"Downgrading\" is installing a less recent version of a package in place "
@@ -5380,12 +5473,12 @@ msgstr ""
"arrière."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:148
+#: apt_preferences.5.xml:150
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:149
+#: apt_preferences.5.xml:151
msgid ""
"If two or more versions have the same priority, install the most recent one "
"(that is, the one with the higher version number)."
@@ -5394,7 +5487,7 @@ msgstr ""
"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:152
+#: apt_preferences.5.xml:154
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</"
@@ -5406,7 +5499,7 @@ msgstr ""
"qui n'est pas installée."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:158
+#: apt_preferences.5.xml:160
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 "
@@ -5421,7 +5514,7 @@ msgstr ""
"replaceable></command> ou <command>apt-get dist-upgrade</command>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:165
+#: apt_preferences.5.xml:167
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 "
@@ -5434,7 +5527,7 @@ msgstr ""
"<command>apt-get upgrade</command> ne provoquent pas de retour en arrière."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:170
+#: apt_preferences.5.xml:172
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 "
@@ -5453,12 +5546,12 @@ msgstr ""
"priorité que celle de la version installée."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:179
+#: apt_preferences.5.xml:181
msgid "The Effect of APT Preferences"
msgstr "Conséquences des préférences"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:181
+#: apt_preferences.5.xml:183
msgid ""
"The APT preferences file allows the system administrator to control the "
"assignment of priorities. The file consists of one or more multi-line "
@@ -5471,7 +5564,7 @@ msgstr ""
"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:187
+#: apt_preferences.5.xml:189
msgid ""
"The specific form assigns a priority (a \"Pin-Priority\") to one or more "
"specified packages with a specified version or version range. For example, "
@@ -5487,7 +5580,7 @@ msgstr ""
"dont le numéro de version commence par <literal>&good-perl;</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:194
+#: apt_preferences.5.xml:196
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5499,7 +5592,7 @@ msgstr ""
"Pin-Priority: 1001\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:200
+#: apt_preferences.5.xml:202
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 "
@@ -5514,7 +5607,7 @@ msgstr ""
"un nom complètement qualifié."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:206
+#: apt_preferences.5.xml:208
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 "
@@ -5525,7 +5618,7 @@ msgstr ""
"priorité haute à toutes les versions disponibles dans le site local."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:211
+#: apt_preferences.5.xml:213
#, no-wrap
msgid ""
"Package: *\n"
@@ -5537,7 +5630,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:216
+#: apt_preferences.5.xml:218
msgid ""
"A note of caution: the keyword used here is \"<literal>origin</literal>\" "
"which can be used to match a hostname. The following record will assign a "
@@ -5550,7 +5643,7 @@ msgstr ""
"serveur identifié par l' nom d'hôte « ftp.de.debian.org »."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:220
+#: apt_preferences.5.xml:222
#, no-wrap
msgid ""
"Package: *\n"
@@ -5562,7 +5655,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:224
+#: apt_preferences.5.xml:226
msgid ""
"This should <emphasis>not</emphasis> be confused with the Origin of a "
"distribution as specified in a <filename>Release</filename> file. What "
@@ -5577,7 +5670,7 @@ msgstr ""
"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:229
+#: apt_preferences.5.xml:231
msgid ""
"The following record assigns a low priority to all package versions "
"belonging to any distribution whose Archive name is \"<literal>unstable</"
@@ -5588,7 +5681,7 @@ msgstr ""
"<literal>unstable</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:233
+#: apt_preferences.5.xml:235
#, no-wrap
msgid ""
"Package: *\n"
@@ -5600,7 +5693,7 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:238
+#: apt_preferences.5.xml:240
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any distribution whose Codename is \"<literal>&testing-codename;"
@@ -5611,7 +5704,7 @@ msgstr ""
"<literal>&testing-codename;</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:242
+#: apt_preferences.5.xml:244
#, no-wrap
msgid ""
"Package: *\n"
@@ -5623,7 +5716,7 @@ msgstr ""
"Pin-Priority: 900\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:247
+#: apt_preferences.5.xml:249
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any release whose Archive name is \"<literal>stable</literal>\" "
@@ -5635,7 +5728,7 @@ msgstr ""
"<literal>&stable-version;</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:252
+#: apt_preferences.5.xml:254
#, no-wrap
msgid ""
"Package: *\n"
@@ -5647,12 +5740,12 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:262
+#: apt_preferences.5.xml:264
msgid "Regular expressions and &glob; syntax"
msgstr "Expressions régulières et syntaxe &glob;"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:264
+#: apt_preferences.5.xml:266
msgid ""
"APT also supports pinning by &glob; expressions, and regular expressions "
"surrounded by slashes. For example, the following example assigns the "
@@ -5668,7 +5761,7 @@ msgstr ""
"POSIX étendue, entourée de barres obliques)."
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:273
+#: apt_preferences.5.xml:275
#, no-wrap
msgid ""
"Package: gnome* /kde/\n"
@@ -5680,7 +5773,7 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:279
+#: apt_preferences.5.xml:281
msgid ""
"The rule for those expressions is that they can occur anywhere where a "
"string can occur. Thus, the following pin assigns the priority 990 to all "
@@ -5692,7 +5785,7 @@ msgstr ""
"par &ubuntu-codename;."
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:285
+#: apt_preferences.5.xml:287
#, no-wrap
msgid ""
"Package: *\n"
@@ -5704,7 +5797,7 @@ msgstr ""
"Pin-Priority: 990\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:291
+#: apt_preferences.5.xml:293
msgid ""
"If a regular expression occurs in a <literal>Package</literal> field, the "
"behavior is the same as if this regular expression were replaced with a list "
@@ -5723,12 +5816,12 @@ msgstr ""
"expression &glob; en soi."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:307
+#: apt_preferences.5.xml:309
msgid "How APT Interprets Priorities"
msgstr "Méthode d'interprétation des priorités par APT"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:310
+#: apt_preferences.5.xml:312
msgid ""
"Priorities (P) assigned in the APT preferences file must be positive or "
"negative integers. They are interpreted as follows (roughly speaking):"
@@ -5737,12 +5830,12 @@ msgstr ""
"entiers positifs ou négatifs. Ils sont interprétés à peu près comme suit :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:315
+#: apt_preferences.5.xml:317
msgid "P &gt;= 1000"
msgstr "P &gt;= 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:316
+#: apt_preferences.5.xml:318
msgid ""
"causes a version to be installed even if this constitutes a downgrade of the "
"package"
@@ -5751,12 +5844,12 @@ msgstr ""
"retour en arrière."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:320
+#: apt_preferences.5.xml:322
msgid "990 &lt;= P &lt; 1000"
msgstr "990 &lt;= P &lt; 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:321
+#: apt_preferences.5.xml:323
msgid ""
"causes a version to be installed even if it does not come from the target "
"release, unless the installed version is more recent"
@@ -5766,12 +5859,12 @@ msgstr ""
"plus récente."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:326
+#: apt_preferences.5.xml:328
msgid "500 &lt;= P &lt; 990"
msgstr "500 &lt;= P &lt; 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:327
+#: apt_preferences.5.xml:329
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"
@@ -5780,12 +5873,12 @@ msgstr ""
"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:332
+#: apt_preferences.5.xml:334
msgid "100 &lt;= P &lt; 500"
msgstr "100 &lt;= P &lt; 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:333
+#: apt_preferences.5.xml:335
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"
@@ -5794,29 +5887,29 @@ msgstr ""
"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:338
+#: apt_preferences.5.xml:340
msgid "0 &lt; P &lt; 100"
msgstr "0 &lt; P &lt; 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:339
+#: apt_preferences.5.xml:341
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:343
+#: apt_preferences.5.xml:345
msgid "P &lt; 0"
msgstr "P &lt; 0"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:344
+#: apt_preferences.5.xml:346
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:349
+#: apt_preferences.5.xml:351
msgid ""
"If any specific-form records match an available package version then the "
"first such record determines the priority of the package version. Failing "
@@ -5830,7 +5923,7 @@ msgstr ""
"trouvée détermine la priorité."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:355
+#: apt_preferences.5.xml:357
msgid ""
"For example, suppose the APT preferences file contains the three records "
"presented earlier:"
@@ -5839,7 +5932,7 @@ msgstr ""
"entrées décrites ci-dessous :"
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:359
+#: apt_preferences.5.xml:361
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5867,12 +5960,12 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:372
+#: apt_preferences.5.xml:374
msgid "Then:"
msgstr "Alors :"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:374
+#: apt_preferences.5.xml:376
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 "
@@ -5887,7 +5980,7 @@ msgstr ""
"arrière."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:379
+#: apt_preferences.5.xml:381
msgid ""
"A version of any package other than <literal>perl</literal> that is "
"available from the local system has priority over other versions, even "
@@ -5898,7 +5991,7 @@ msgstr ""
"appartenant à la distribution par défaut."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:383
+#: apt_preferences.5.xml:385
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</"
@@ -5911,13 +6004,13 @@ msgstr ""
"paquet n'est déjà installée."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:393
+#: apt_preferences.5.xml:395
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:395
+#: apt_preferences.5.xml:397
msgid ""
"The locations listed in the &sources-list; file should provide "
"<filename>Packages</filename> and <filename>Release</filename> files to "
@@ -5928,7 +6021,7 @@ msgstr ""
"décrivent les paquets disponibles à cet endroit."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:399
+#: apt_preferences.5.xml:401
msgid ""
"The <filename>Packages</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable>/"
@@ -5947,27 +6040,27 @@ msgstr ""
"sont pertinentes pour la détermination des priorités :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:407
+#: apt_preferences.5.xml:409
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:408
+#: apt_preferences.5.xml:410
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:411 apt_preferences.5.xml:461
+#: apt_preferences.5.xml:413 apt_preferences.5.xml:463
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:412
+#: apt_preferences.5.xml:414
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:417
+#: apt_preferences.5.xml:419
msgid ""
"The <filename>Release</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
@@ -5989,12 +6082,12 @@ msgstr ""
"pertinentes pour déterminer les priorités :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:428
+#: apt_preferences.5.xml:430
msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
msgstr "La ligne <literal>Archive:</literal> ou <literal>Suite:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:429
+#: apt_preferences.5.xml:431
msgid ""
"names the archive to which all the packages in the directory tree belong. "
"For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@ -6011,18 +6104,18 @@ msgstr ""
"préférences demanderait cette ligne :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:439
+#: apt_preferences.5.xml:441
#, 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:445
+#: apt_preferences.5.xml:447
msgid "the <literal>Codename:</literal> line"
msgstr "la ligne <literal>Codename:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:446
+#: apt_preferences.5.xml:448
msgid ""
"names the codename to which all the packages in the directory tree belong. "
"For example, the line \"Codename: &testing-codename;\" specifies that all of "
@@ -6040,13 +6133,13 @@ msgstr ""
"ligne :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:455
+#: apt_preferences.5.xml:457
#, no-wrap
msgid "Pin: release n=&testing-codename;\n"
msgstr "Pin: release n=&testing-codename;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:462
+#: apt_preferences.5.xml:464
msgid ""
"names the release version. For example, the packages in the tree might "
"belong to Debian release version &stable-version;. Note that there is "
@@ -6063,7 +6156,7 @@ msgstr ""
"préférences demanderait ces lignes :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:471
+#: apt_preferences.5.xml:473
#, no-wrap
msgid ""
"Pin: release v=&stable-version;\n"
@@ -6075,12 +6168,12 @@ msgstr ""
"Pin: release &stable-version;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:480
+#: apt_preferences.5.xml:482
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:481
+#: apt_preferences.5.xml:483
msgid ""
"names the licensing component associated with the packages in the directory "
"tree of the <filename>Release</filename> file. For example, the line "
@@ -6098,18 +6191,18 @@ msgstr ""
"fichier des préférences demanderait cette ligne :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:490
+#: apt_preferences.5.xml:492
#, 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:496
+#: apt_preferences.5.xml:498
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:497
+#: apt_preferences.5.xml:499
msgid ""
"names the originator of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -6122,18 +6215,18 @@ msgstr ""
"ligne :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:503
+#: apt_preferences.5.xml:505
#, 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:509
+#: apt_preferences.5.xml:511
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:510
+#: apt_preferences.5.xml:512
msgid ""
"names the label of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -6146,13 +6239,13 @@ msgstr ""
"préférences demanderait cette ligne :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:516
+#: apt_preferences.5.xml:518
#, 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:523
+#: apt_preferences.5.xml:525
msgid ""
"All of the <filename>Packages</filename> and <filename>Release</filename> "
"files retrieved from locations listed in the &sources-list; file are stored "
@@ -6177,12 +6270,12 @@ msgstr ""
"<literal>unstable</literal>."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:536
+#: apt_preferences.5.xml:538
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:538
+#: apt_preferences.5.xml:540
msgid ""
"Each record in the APT preferences file can optionally begin with one or "
"more lines beginning with the word <literal>Explanation:</literal>. This "
@@ -6193,12 +6286,12 @@ msgstr ""
"commentaires."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:547
+#: apt_preferences.5.xml:549
msgid "Tracking Stable"
msgstr "Méthode pour suivre Stable"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:555
+#: apt_preferences.5.xml:557
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated\n"
@@ -6222,7 +6315,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:549
+#: apt_preferences.5.xml:551
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 "
@@ -6237,8 +6330,8 @@ msgstr ""
"literal>. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:572 apt_preferences.5.xml:618
-#: apt_preferences.5.xml:676
+#: apt_preferences.5.xml:574 apt_preferences.5.xml:620
+#: apt_preferences.5.xml:678
#, no-wrap
msgid ""
"apt-get install <replaceable>package-name</replaceable>\n"
@@ -6250,7 +6343,7 @@ msgstr ""
"apt-get dist-upgrade\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:567
+#: apt_preferences.5.xml:569
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 "
@@ -6263,13 +6356,13 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:584
+#: apt_preferences.5.xml:586
#, 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:578
+#: apt_preferences.5.xml:580
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>testing</literal> distribution; the package "
@@ -6282,12 +6375,12 @@ msgstr ""
"de relancer la commande. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:590
+#: apt_preferences.5.xml:592
msgid "Tracking Testing or Unstable"
msgstr "Méthode pour suivre Testing ou Unstable"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:599
+#: apt_preferences.5.xml:601
#, no-wrap
msgid ""
"Package: *\n"
@@ -6315,7 +6408,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:592
+#: apt_preferences.5.xml:594
msgid ""
"The following APT preferences file will cause APT to assign a high priority "
"to package versions from the <literal>testing</literal> distribution, a "
@@ -6332,7 +6425,7 @@ msgstr ""
"<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:613
+#: apt_preferences.5.xml:615
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 "
@@ -6345,13 +6438,13 @@ msgstr ""
"type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:633
+#: apt_preferences.5.xml:635
#, 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:624
+#: apt_preferences.5.xml:626
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>unstable</literal> distribution. "
@@ -6370,12 +6463,12 @@ msgstr ""
"installée. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:640
+#: apt_preferences.5.xml:642
msgid "Tracking the evolution of a codename release"
msgstr "Suivre l'évolution d'une version par son nom de code"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:654
+#: apt_preferences.5.xml:656
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@ -6409,7 +6502,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:642
+#: apt_preferences.5.xml:644
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 "
@@ -6433,7 +6526,7 @@ msgstr ""
"exemples précédents. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:671
+#: apt_preferences.5.xml:673
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 "
@@ -6446,13 +6539,13 @@ msgstr ""
"<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:691
+#: apt_preferences.5.xml:693
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/sid\n"
msgstr "apt-get install <replaceable>paquet</replaceable>/sid\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:682
+#: apt_preferences.5.xml:684
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>sid</literal> distribution. Thereafter, "
@@ -6471,17 +6564,17 @@ msgstr ""
"<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:706
+#: apt_preferences.5.xml:708
msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: sources.list.5.xml:33
+#: sources.list.5.xml:35
msgid "List of configured APT data sources"
msgstr "Liste des sources de données APT configurées"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:38
+#: sources.list.5.xml:40
msgid ""
"The source list <filename>/etc/apt/sources.list</filename> is designed to "
"support any number of active sources and a variety of source media. The file "
@@ -6498,7 +6591,7 @@ msgstr ""
"commande équivalent avec une autre interface à APT)."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:45
+#: sources.list.5.xml:47
msgid ""
"Each line specifying a source starts with type (e.g. <literal>deb-src</"
"literal>) followed by options and arguments for this type. Individual "
@@ -6513,12 +6606,12 @@ msgstr ""
"reste de la ligne est un commentaire."
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:53
+#: sources.list.5.xml:55
msgid "sources.list.d"
msgstr "sources.list.d"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:54
+#: sources.list.5.xml:56
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 "
@@ -6542,12 +6635,12 @@ msgstr ""
"ignorés silencieusemennt)."
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:65
+#: sources.list.5.xml:67
msgid "The deb and deb-src types"
msgstr "Les types deb et deb-src."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:66
+#: sources.list.5.xml:68
msgid ""
"The <literal>deb</literal> type references a typical two-level Debian "
"archive, <filename>distribution/component</filename>. The "
@@ -6573,7 +6666,7 @@ msgstr ""
"pour récupérer les index des sources."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:78
+#: sources.list.5.xml:80
msgid ""
"The format for a <filename>sources.list</filename> entry using the "
"<literal>deb</literal> and <literal>deb-src</literal> types is:"
@@ -6582,13 +6675,13 @@ msgstr ""
"types <literal>deb</literal> et <literal>deb-src</literal> est :"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:81
+#: sources.list.5.xml:83
#, no-wrap
msgid "deb [ options ] uri distribution [component1] [component2] [...]"
msgstr "deb [ options ] uri distribution [composant1] [composant2] [...]"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:83
+#: sources.list.5.xml:85
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. "
@@ -6610,7 +6703,7 @@ msgstr ""
"être présent."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:92
+#: sources.list.5.xml:94
msgid ""
"<literal>distribution</literal> may also contain a variable, <literal>"
"$(ARCH)</literal> which expands to the Debian architecture (such as "
@@ -6629,7 +6722,7 @@ msgstr ""
"literal> crée automatiquement un URI en fonction de l'architecture effective."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:100
+#: sources.list.5.xml:102
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 "
@@ -6655,7 +6748,7 @@ msgstr ""
"tirer plus efficacement parti des sites à faible bande passante."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:112
+#: sources.list.5.xml:114
msgid ""
"<literal>options</literal> is always optional and needs to be surrounded by "
"square brackets. It can consist of multiple settings in the form "
@@ -6672,7 +6765,7 @@ msgstr ""
"ignorés silencieusement) :"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:117
+#: sources.list.5.xml:120
msgid ""
"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
"replaceable>,…</literal> can be used to specify for which architectures "
@@ -6687,7 +6780,28 @@ msgstr ""
"Architectures</literal> sera téléchargée."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:121
+#: sources.list.5.xml:124
+#, fuzzy
+#| msgid ""
+#| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+#| "replaceable>,…</literal> can be used to specify for which architectures "
+#| "information should be downloaded. If this option is not set all "
+#| "architectures defined by the <literal>APT::Architectures</literal> option "
+#| "will be downloaded."
+msgid ""
+"<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>,"
+"<replaceable>arch2</replaceable>,…</literal> which can be used to add/remove "
+"architectures from the set which will be downloaded."
+msgstr ""
+"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> peut être utilisé pour indiquer les architectures "
+"pour lesquelles l'information doit être téléchargée. Si cette option n'est "
+"pas utilisée, toutes les architectures définies par l'option <literal>APT::"
+"Architectures</literal> sera téléchargée."
+
+#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
+#: sources.list.5.xml:127
msgid ""
"<literal>trusted=yes</literal> can be set to indicate that packages from "
"this source are always authenticated even if the <filename>Release</"
@@ -6705,7 +6819,7 @@ msgstr ""
"authentifiées comme non authentifiées."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:128
+#: sources.list.5.xml:134
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 "
@@ -6718,12 +6832,12 @@ msgstr ""
"les hôtes distants."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:133
+#: sources.list.5.xml:139
msgid "Some examples:"
msgstr "Exemples :"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:135
+#: sources.list.5.xml:141
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@ -6735,17 +6849,17 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:141
+#: sources.list.5.xml:147
msgid "URI specification"
msgstr "Spécification des URI"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:143
+#: sources.list.5.xml:149
msgid "The currently recognized URI types are:"
msgstr "Les types d'URI actuellement reconnues sont :"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:147
+#: sources.list.5.xml:153
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 "
@@ -6756,7 +6870,7 @@ msgstr ""
"avec les montages NFS, les miroirs et les archives locaux."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:154
+#: sources.list.5.xml:160
msgid ""
"The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. "
"Use the &apt-cdrom; program to create cdrom entries in the source list."
@@ -6766,7 +6880,7 @@ msgstr ""
"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:161
+#: sources.list.5.xml:167
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:"
@@ -6783,7 +6897,7 @@ msgstr ""
"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:172
+#: sources.list.5.xml:178
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. "
@@ -6805,7 +6919,7 @@ msgstr ""
"configuration seront ignorés."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:184
+#: sources.list.5.xml:190
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. "
@@ -6819,7 +6933,7 @@ msgstr ""
"des fichiers avec APT."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:191
+#: sources.list.5.xml:197
msgid ""
"The rsh/ssh method invokes RSH/SSH to connect to a remote host and access "
"the files as a given user. Prior configuration of rhosts or RSA keys is "
@@ -6833,12 +6947,12 @@ msgstr ""
"sont utilisées pour l'accès aux fichiers de la machine distante."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
-#: sources.list.5.xml:198
+#: sources.list.5.xml:204
msgid "adding more recognizable URI types"
msgstr "ajout de types d'URI supplémentaires reconnues"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:200
+#: sources.list.5.xml:206
msgid ""
"APT can be extended with more methods shipped in other optional packages, "
"which should follow the naming scheme <package>apt-transport-"
@@ -6857,7 +6971,7 @@ msgstr ""
"disponibles (voir &apt-transport-debtorrent;)."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:212
+#: sources.list.5.xml:218
msgid ""
"Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
"stable/main, stable/contrib, and stable/non-free."
@@ -6866,37 +6980,37 @@ msgstr ""
"debian pour stable/main, stable/contrib et stable/non-free."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:214
+#: sources.list.5.xml:220
#, 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:216
+#: sources.list.5.xml:222
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:217
+#: sources.list.5.xml:223
#, 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:219
+#: sources.list.5.xml:225
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:220
+#: sources.list.5.xml:226
#, 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:222
+#: sources.list.5.xml:228
msgid ""
"The first line gets package information for the architectures in "
"<literal>APT::Architectures</literal> while the second always retrieves "
@@ -6907,7 +7021,7 @@ msgstr ""
"<literal>amd64</literal> et <literal>armel</literal>."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:224
+#: sources.list.5.xml:230
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main\n"
@@ -6917,7 +7031,7 @@ msgstr ""
"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:227
+#: sources.list.5.xml:233
msgid ""
"Uses HTTP to access the archive at archive.debian.org, and uses only the "
"hamm/main area."
@@ -6926,13 +7040,13 @@ msgstr ""
"n'utiliser que la section hamm/main."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:229
+#: sources.list.5.xml:235
#, 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:231
+#: sources.list.5.xml:237
msgid ""
"Uses FTP to access the archive at ftp.debian.org, under the debian "
"directory, and uses only the &stable-codename;/contrib area."
@@ -6941,13 +7055,13 @@ msgstr ""
"répertoire debian, et n'utiliser que la section &stable-codename;/contrib."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:233
+#: sources.list.5.xml:239
#, no-wrap
msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:235
+#: sources.list.5.xml:241
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 "
@@ -6960,19 +7074,19 @@ msgstr ""
"apparaissent, une seule session FTP sera utilisée pour les deux lignes."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:239
+#: sources.list.5.xml:245
#, 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><literallayout>
-#: sources.list.5.xml:248
+#: sources.list.5.xml:254
#, no-wrap
msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:241
+#: sources.list.5.xml:247
msgid ""
"Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
"directory, and uses only files found under <filename>unstable/binary-i386</"
@@ -6992,17 +7106,17 @@ msgstr ""
"type=\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:253
+#: sources.list.5.xml:259
msgid "&apt-cache; &apt-conf;"
msgstr "&apt-cache; &apt-conf;"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-extracttemplates.1.xml:26 apt-sortpkgs.1.xml:26 apt-ftparchive.1.xml:26
+#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28
msgid "1"
msgstr "1"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-extracttemplates.1.xml:33
+#: apt-extracttemplates.1.xml:35
msgid ""
"Utility to extract <command>debconf</command> config and templates from "
"Debian packages"
@@ -7011,7 +7125,7 @@ msgstr ""
"<command>debconf</command> contenu dans un paquet Debian"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:39
+#: apt-extracttemplates.1.xml:41
msgid ""
"<command>apt-extracttemplates</command> will take one or more Debian package "
"files as input and write out (to a temporary directory) all associated "
@@ -7026,12 +7140,12 @@ msgstr ""
"suivant :"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:44
+#: apt-extracttemplates.1.xml:46
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:45
+#: apt-extracttemplates.1.xml:47
msgid ""
"template-file and config-script are written to the temporary directory "
"specified by the <option>-t</option> or <option>--tempdir</option> "
@@ -7046,7 +7160,7 @@ msgstr ""
"<filename>package.config.XXXX</filename>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-extracttemplates.1.xml:58
+#: apt-extracttemplates.1.xml:60
msgid ""
"Temporary directory in which to write extracted <command>debconf</command> "
"template files and config scripts. Configuration Item: <literal>APT::"
@@ -7057,7 +7171,7 @@ msgstr ""
"<literal>APT::ExtractTemplates::TempDir</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:75
+#: apt-extracttemplates.1.xml:77
msgid ""
"<command>apt-extracttemplates</command> returns zero on normal operation, "
"decimal 100 on error."
@@ -7066,12 +7180,12 @@ msgstr ""
"le nombre 100 en cas d'erreur."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-sortpkgs.1.xml:33
+#: apt-sortpkgs.1.xml:35
msgid "Utility to sort package index files"
msgstr "Outil de tri des index de paquets."
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:39
+#: apt-sortpkgs.1.xml:41
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 "
@@ -7084,7 +7198,7 @@ msgstr ""
"internes."
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:45
+#: apt-sortpkgs.1.xml:47
msgid ""
"All output is sent to standard output; the input must be a seekable file."
msgstr ""
@@ -7092,7 +7206,7 @@ msgstr ""
"fichier analysable."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-sortpkgs.1.xml:54
+#: apt-sortpkgs.1.xml:56
msgid ""
"Use source index field ordering. Configuration Item: <literal>APT::"
"SortPkgs::Source</literal>."
@@ -7101,7 +7215,7 @@ msgstr ""
"configuration : <literal>APT::SortPkgs::Source</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:68
+#: apt-sortpkgs.1.xml:70
msgid ""
"<command>apt-sortpkgs</command> returns zero on normal operation, decimal "
"100 on error."
@@ -7110,12 +7224,12 @@ msgstr ""
"en cas d'erreur."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-ftparchive.1.xml:33
+#: apt-ftparchive.1.xml:35
msgid "Utility to generate index files"
msgstr "Outil de création de fichiers d'index"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:39
+#: apt-ftparchive.1.xml:41
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 "
@@ -7127,7 +7241,7 @@ msgstr ""
"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:43
+#: apt-ftparchive.1.xml:45
msgid ""
"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; "
"program, incorporating its entire functionality via the <literal>packages</"
@@ -7142,7 +7256,7 @@ msgstr ""
"élaborée pour automatiser le processus de création d'une archive complète."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:49
+#: apt-ftparchive.1.xml:51
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 "
@@ -7157,7 +7271,7 @@ msgstr ""
"voulus."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:60
+#: apt-ftparchive.1.xml:62
msgid ""
"The packages command generates a package file from a directory tree. It "
"takes the given directory and recursively searches it for .deb files, "
@@ -7171,7 +7285,7 @@ msgstr ""
"équivalente à &dpkg-scanpackages;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:65 apt-ftparchive.1.xml:89
+#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91
msgid ""
"The option <option>--db</option> can be used to specify a binary caching DB."
msgstr ""
@@ -7179,7 +7293,7 @@ msgstr ""
"binaire."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:70
+#: apt-ftparchive.1.xml:72
msgid ""
"The <literal>sources</literal> command generates a source index file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -7193,7 +7307,7 @@ msgstr ""
"équivalente à &dpkg-scansources;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:75
+#: apt-ftparchive.1.xml:77
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 "
@@ -7204,7 +7318,7 @@ msgstr ""
"override pour changer de fichier source d'« override »."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:82
+#: apt-ftparchive.1.xml:84
msgid ""
"The <literal>contents</literal> command generates a contents file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -7222,7 +7336,7 @@ msgstr ""
"virgule sépare les paquets."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:94
+#: apt-ftparchive.1.xml:96
msgid ""
"The <literal>release</literal> command generates a Release file from a "
"directory tree. It recursively searches the given directory for uncompressed "
@@ -7248,7 +7362,7 @@ msgstr ""
"sommes de contrôle MD5, SHA1 et SHA256 pour chaque fichier."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:104
+#: apt-ftparchive.1.xml:106
msgid ""
"Values for the additional metadata fields in the Release file are taken from "
"the corresponding variables under <literal>APT::FTPArchive::Release</"
@@ -7269,7 +7383,7 @@ msgstr ""
"<literal>Description</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:117
+#: apt-ftparchive.1.xml:119
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 "
@@ -7283,7 +7397,7 @@ msgstr ""
"préciser index et répertoires aussi bien que les paramètres requis."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:126
+#: apt-ftparchive.1.xml:128
msgid ""
"The <literal>clean</literal> command tidies the databases used by the given "
"configuration file by removing any records that are no longer necessary."
@@ -7293,12 +7407,12 @@ msgstr ""
"sont plus nécessaires."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:132
+#: apt-ftparchive.1.xml:134
msgid "The Generate Configuration"
msgstr "Configuration de la commande generate"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:134
+#: apt-ftparchive.1.xml:136
msgid ""
"The <literal>generate</literal> command uses a configuration file to "
"describe the archives that are going to be generated. It follows the typical "
@@ -7315,19 +7429,19 @@ msgstr ""
"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:142
+#: apt-ftparchive.1.xml:144
msgid ""
"The generate configuration has four 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:144
+#: apt-ftparchive.1.xml:146
msgid "<literal>Dir</literal> Section"
msgstr "La section <literal>Dir</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:146
+#: apt-ftparchive.1.xml:148
msgid ""
"The <literal>Dir</literal> section defines the standard directories needed "
"to locate the files required during the generation process. These "
@@ -7340,7 +7454,7 @@ msgstr ""
"manière à produire un chemin absolu et complet."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:153
+#: apt-ftparchive.1.xml:155
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 "
@@ -7351,17 +7465,17 @@ msgstr ""
"filename> et les noeuds des distributions."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:160
+#: apt-ftparchive.1.xml:162
msgid "Specifies the location of the override files."
msgstr "Indique l'emplacement des fichiers d'« override »."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:165
+#: apt-ftparchive.1.xml:167
msgid "Specifies the location of the cache files."
msgstr "Indique l'emplacement des fichiers de cache."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:170
+#: apt-ftparchive.1.xml:172
msgid ""
"Specifies the location of the file list files, if the <literal>FileList</"
"literal> setting is used below."
@@ -7370,12 +7484,12 @@ msgstr ""
"sert de la valeur <literal>FileList</literal> définie plus bas)."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:176
+#: apt-ftparchive.1.xml:178
msgid "<literal>Default</literal> Section"
msgstr "La section <literal>Default</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:178
+#: apt-ftparchive.1.xml:180
msgid ""
"The <literal>Default</literal> section specifies default values, and "
"settings that control the operation of the generator. Other sections may "
@@ -7386,7 +7500,7 @@ msgstr ""
"annulées dans d'autres sections (paramètrage par section)."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:184
+#: apt-ftparchive.1.xml:186
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 "
@@ -7399,7 +7513,7 @@ msgstr ""
"Par défaut, c'est la chaîne « . gzip »."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:192
+#: apt-ftparchive.1.xml:194
msgid ""
"Sets the default list of file extensions that are package files. This "
"defaults to '.deb'."
@@ -7408,7 +7522,7 @@ msgstr ""
"paquets. Par défaut, c'est « .deb »."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:198
+#: apt-ftparchive.1.xml:200
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Sources files."
@@ -7417,7 +7531,7 @@ msgstr ""
"compressés les fichiers sources."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:204
+#: apt-ftparchive.1.xml:206
msgid ""
"Sets the default list of file extensions that are source files. This "
"defaults to '.dsc'."
@@ -7426,7 +7540,7 @@ msgstr ""
"fichiers sources. Par défaut, c'est « .dsc »."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:210
+#: apt-ftparchive.1.xml:212
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Contents files."
@@ -7435,7 +7549,7 @@ msgstr ""
"compressés les fichiers « Contents »."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:216
+#: apt-ftparchive.1.xml:218
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Translation-en master file."
@@ -7444,7 +7558,7 @@ msgstr ""
"compressé le fichier maître Translations-en."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:222
+#: apt-ftparchive.1.xml:224
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-"
@@ -7455,7 +7569,7 @@ msgstr ""
"paramètre <literal>External-Links</literal>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:229
+#: apt-ftparchive.1.xml:231
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."
@@ -7465,7 +7579,7 @@ msgstr ""
"utilisateur (umasq) est ignoré."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:236 apt-ftparchive.1.xml:382
+#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384
msgid ""
"Specifies whether long descriptions should be included in the "
"<filename>Packages</filename> file or split out into a master "
@@ -7476,12 +7590,12 @@ msgstr ""
"<filename>Translation-en</filename>."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:242
+#: apt-ftparchive.1.xml:244
msgid "<literal>TreeDefault</literal> Section"
msgstr "La section <literal>TreeDefault</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:244
+#: apt-ftparchive.1.xml:246
msgid ""
"Sets defaults specific to <literal>Tree</literal> sections. All of these "
"variables are substitution variables and have the strings $(DIST), "
@@ -7493,7 +7607,7 @@ msgstr ""
"respective."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:251
+#: apt-ftparchive.1.xml:253
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 "
@@ -7504,7 +7618,7 @@ msgstr ""
"robin » de manière que, sur plusieurs jours, tous soient reconstruits."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:258
+#: apt-ftparchive.1.xml:260
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. "
@@ -7522,7 +7636,7 @@ msgstr ""
"défaut ce nombre vaut 10, l'unité étant le jour."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:269
+#: apt-ftparchive.1.xml:271
msgid ""
"Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/"
"$(SECTION)/binary-$(ARCH)/</filename>"
@@ -7531,7 +7645,7 @@ msgstr ""
"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:275
+#: apt-ftparchive.1.xml:277
msgid ""
"Sets the top of the source package directory tree. Defaults to <filename>"
"$(DIST)/$(SECTION)/source/</filename>"
@@ -7540,7 +7654,7 @@ msgstr ""
"<filename>$(DIST)/$(SECTION)/source/</filename>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:281
+#: apt-ftparchive.1.xml:283
msgid ""
"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/"
"binary-$(ARCH)/Packages</filename>"
@@ -7549,7 +7663,7 @@ msgstr ""
"$(SECTION)/binary-$(ARCH)/Packages</filename>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:287
+#: apt-ftparchive.1.xml:289
msgid ""
"Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/"
"source/Sources</filename>"
@@ -7558,7 +7672,7 @@ msgstr ""
"$(SECTION)/source/Sources</filename>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:293
+#: apt-ftparchive.1.xml:295
msgid ""
"Sets the output Translation-en master file with the long descriptions if "
"they should be not included in the Packages file. Defaults to <filename>"
@@ -7569,7 +7683,7 @@ msgstr ""
"défaut : <filename>$(DIST)/$(SECTION)/i18n/Translation-en</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:300
+#: apt-ftparchive.1.xml:302
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)/</"
@@ -7580,7 +7694,7 @@ msgstr ""
"défaut, c'est <filename>$(DIST)/$(SECTION)/</filename>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:307
+#: apt-ftparchive.1.xml:309
msgid ""
"Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/"
"Contents-$(ARCH)</filename>. If this setting causes multiple Packages files "
@@ -7594,12 +7708,12 @@ msgstr ""
"<command>apt-ftparchive</command> les intègre automatiquement."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:316
+#: apt-ftparchive.1.xml:318
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><listitem><para>
-#: apt-ftparchive.1.xml:321
+#: apt-ftparchive.1.xml:323
msgid ""
"Sets the binary cache database to use for this section. Multiple sections "
"can share the same database."
@@ -7608,7 +7722,7 @@ msgstr ""
"Différentes sections peuvent partager cette base de données."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:327
+#: apt-ftparchive.1.xml:329
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -7619,7 +7733,7 @@ msgstr ""
"relatifs sont préfixés par le répertoire de l'archive."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:334
+#: apt-ftparchive.1.xml:336
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -7632,12 +7746,12 @@ msgstr ""
"traiter les index de sources."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:342
+#: apt-ftparchive.1.xml:344
msgid "<literal>Tree</literal> Section"
msgstr "La section <literal>Tree</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:344
+#: apt-ftparchive.1.xml:346
msgid ""
"The <literal>Tree</literal> section defines a standard Debian file tree "
"which consists of a base directory, then multiple sections in that base "
@@ -7651,7 +7765,7 @@ msgstr ""
"par la variable de substitution <literal>Directory</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:349
+#: apt-ftparchive.1.xml:351
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 "
@@ -7664,7 +7778,7 @@ msgstr ""
"C'est par exemple : <filename>dists/&stable-codename;</filename>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:354
+#: apt-ftparchive.1.xml:356
msgid ""
"All of the settings defined in the <literal>TreeDefault</literal> section "
"can be used in a <literal>Tree</literal> section as well as three new "
@@ -7675,7 +7789,7 @@ msgstr ""
"trois nouvelles variables suivantes."
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt-ftparchive.1.xml:360
+#: apt-ftparchive.1.xml:362
#, no-wrap
msgid ""
"for i in Sections do \n"
@@ -7689,7 +7803,7 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:357
+#: apt-ftparchive.1.xml:359
msgid ""
"When processing a <literal>Tree</literal> section <command>apt-ftparchive</"
"command> performs an operation similar to: <placeholder type=\"programlisting"
@@ -7700,7 +7814,7 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:368
+#: apt-ftparchive.1.xml:370
msgid ""
"This is a space separated list of sections which appear under the "
"distribution; typically this is something like <literal>main contrib non-"
@@ -7711,7 +7825,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:375
+#: apt-ftparchive.1.xml:377
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 "
@@ -7722,7 +7836,7 @@ msgstr ""
"que l'arborescence est une arborescence de sources."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:388
+#: apt-ftparchive.1.xml:390
msgid ""
"Sets the binary override file. The override file contains section, priority "
"and maintainer address information."
@@ -7731,7 +7845,7 @@ msgstr ""
"informations sur la section, la priorité et le responsable du paquet."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:394
+#: apt-ftparchive.1.xml:396
msgid ""
"Sets the source override file. The override file contains section "
"information."
@@ -7740,22 +7854,22 @@ msgstr ""
"informations sur la section."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:400 apt-ftparchive.1.xml:446
+#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448
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><listitem><para>
-#: apt-ftparchive.1.xml:405 apt-ftparchive.1.xml:451
+#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453
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:410
+#: apt-ftparchive.1.xml:412
msgid "<literal>BinDirectory</literal> Section"
msgstr "La section <literal>BinDirectory</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:412
+#: apt-ftparchive.1.xml:414
msgid ""
"The <literal>bindirectory</literal> section defines a binary directory tree "
"with no special structure. The scope tag specifies the location of the "
@@ -7770,12 +7884,12 @@ msgstr ""
"paramètrage de <literal>Section</literal><literal>Architecture</literal>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:420
+#: apt-ftparchive.1.xml:422
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:425
+#: apt-ftparchive.1.xml:427
msgid ""
"Sets the Sources file output. At least one of <literal>Packages</literal> or "
"<literal>Sources</literal> is required."
@@ -7784,42 +7898,42 @@ msgstr ""
"<literal>Packages</literal> ou <literal>Sources</literal> est nécessaire."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:431
+#: apt-ftparchive.1.xml:433
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:436
+#: apt-ftparchive.1.xml:438
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:441
+#: apt-ftparchive.1.xml:443
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:456
+#: apt-ftparchive.1.xml:458
msgid "Sets the cache DB."
msgstr "Définit la base de données cache."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:461
+#: apt-ftparchive.1.xml:463
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><listitem><para>
-#: apt-ftparchive.1.xml:466
+#: apt-ftparchive.1.xml:468
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:473
+#: apt-ftparchive.1.xml:475
msgid "The Binary Override File"
msgstr "Le fichier d'« Override » pour les binaires."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:474
+#: apt-ftparchive.1.xml:476
msgid ""
"The binary override file is fully compatible with &dpkg-scanpackages;. It "
"contains four fields separated by spaces. The first field is the package "
@@ -7834,19 +7948,19 @@ msgstr ""
"nom du responsable de paquet."
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:480
+#: apt-ftparchive.1.xml:482
#, no-wrap
msgid "old [// oldn]* => new"
msgstr "old [// oldn]* => new"
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:482
+#: apt-ftparchive.1.xml:484
#, no-wrap
msgid "new"
msgstr "new"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:479
+#: apt-ftparchive.1.xml:481
msgid ""
"The general form of the maintainer field is: <placeholder type="
"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" "
@@ -7863,12 +7977,12 @@ msgstr ""
"deuxième forme remplace inconditionnellement le champ."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:490
+#: apt-ftparchive.1.xml:492
msgid "The Source Override File"
msgstr "Le fichier d'« Override » pour les sources"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:492
+#: apt-ftparchive.1.xml:494
msgid ""
"The source override file is fully compatible with &dpkg-scansources;. It "
"contains two fields separated by spaces. The first field is the source "
@@ -7879,12 +7993,12 @@ msgstr ""
"sa section."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:497
+#: apt-ftparchive.1.xml:499
msgid "The Extra Override File"
msgstr "Le fichier supplémentaire d'« Override »"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:499
+#: apt-ftparchive.1.xml:501
msgid ""
"The extra override file allows any arbitrary tag to be added or replaced in "
"the output. It has three columns, the first is the package, the second is "
@@ -7896,7 +8010,7 @@ msgstr ""
"ligne est la nouvelle valeur."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:510
+#: apt-ftparchive.1.xml:512
msgid ""
"Generate the given checksum. These options default to on, when turned off "
"the generated index files will not have the checksum fields where possible. "
@@ -7920,7 +8034,7 @@ msgstr ""
"<literal>MD5</literal>, <literal>SHA1</literal> ou <literal>SHA256</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:521
+#: apt-ftparchive.1.xml:523
msgid ""
"Use a binary caching DB. This has no effect on the generate command. "
"Configuration Item: <literal>APT::FTPArchive::DB</literal>."
@@ -7930,7 +8044,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:527
+#: apt-ftparchive.1.xml:529
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 "
@@ -7946,7 +8060,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:535
+#: apt-ftparchive.1.xml:537
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 "
@@ -7960,7 +8074,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:543
+#: apt-ftparchive.1.xml:545
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 "
@@ -7976,7 +8090,7 @@ msgstr ""
"de configuration : <literal>APT::FTPArchive::Contents</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:553
+#: apt-ftparchive.1.xml:555
msgid ""
"Select the source override file to use with the <literal>sources</literal> "
"command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
@@ -7987,7 +8101,7 @@ msgstr ""
"FTPArchive::SourceOverride</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:559
+#: apt-ftparchive.1.xml:561
msgid ""
"Make the caching databases read only. Configuration Item: <literal>APT::"
"FTPArchive::ReadOnlyDB</literal>."
@@ -7996,7 +8110,7 @@ msgstr ""
"configuration : <literal>APT::FTPArchive::ReadOnlyDB</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:564
+#: apt-ftparchive.1.xml:566
msgid ""
"Accept in the <literal>packages</literal> and <literal>contents</literal> "
"commands only package files matching <literal>*_arch.deb</literal> or "
@@ -8010,7 +8124,7 @@ msgstr ""
"<literal>APT::FTPArchive::Architecture</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:572
+#: apt-ftparchive.1.xml:574
msgid ""
"&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
"packages are recompiled and/or republished with the same version again, this "
@@ -8033,7 +8147,7 @@ msgstr ""
"survenir et l'ensemble de ces contrôles devient inutile."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:584
+#: apt-ftparchive.1.xml:586
msgid ""
"This configuration option defaults to \"<literal>true</literal>\" and should "
"only be set to <literal>\"false\"</literal> if the Archive generated with "
@@ -8049,13 +8163,13 @@ msgstr ""
"generate."
#. type: Content of: <refentry><refsect1><para><programlisting>
-#: apt-ftparchive.1.xml:602
+#: apt-ftparchive.1.xml:604
#, 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:598
+#: apt-ftparchive.1.xml:600
msgid ""
"To create a compressed Packages file for a directory containing binary "
"packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@ -8064,7 +8178,7 @@ msgstr ""
"des paquets binaires (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:612
+#: apt-ftparchive.1.xml:614
msgid ""
"<command>apt-ftparchive</command> returns zero on normal operation, decimal "
"100 on error."
diff --git a/doc/po/it.po b/doc/po/it.po
index 9f614a468..21a90972f 100644
--- a/doc/po/it.po
+++ b/doc/po/it.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-06-13 13:46+0300\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-12-23 18:04+0200\n"
"Last-Translator: Beatrice Torracca <beatricet@libero.it>\n"
"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
@@ -663,35 +663,35 @@ msgstr ""
"473041FA --> <!ENTITY synopsis-keyid \"IDchiave\">"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-get.8.xml:26 apt-cache.8.xml:26 apt-key.8.xml:25 apt-mark.8.xml:26
-#: apt-secure.8.xml:25 apt-cdrom.8.xml:25 apt-config.8.xml:26
+#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28
+#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28
msgid "8"
msgstr "8"
#. type: Content of: <refentry><refmeta><refmiscinfo>
-#: apt-get.8.xml:27 apt-cache.8.xml:27 apt-key.8.xml:26 apt-mark.8.xml:27
-#: apt-secure.8.xml:26 apt-cdrom.8.xml:26 apt-config.8.xml:27
-#: apt.conf.5.xml:32 apt_preferences.5.xml:26 sources.list.5.xml:27
-#: apt-extracttemplates.1.xml:27 apt-sortpkgs.1.xml:27 apt-ftparchive.1.xml:27
+#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29
+#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29
+#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29
+#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29
msgid "APT"
msgstr "APT"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-get.8.xml:33
+#: apt-get.8.xml:35
msgid "APT package handling utility -- command-line interface"
msgstr ""
"strumento APT per la gestione dei pacchetti, interfaccia a riga di comando"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:38 apt-cache.8.xml:38 apt-key.8.xml:37 apt-mark.8.xml:38
-#: apt-secure.8.xml:50 apt-cdrom.8.xml:37 apt-config.8.xml:38
-#: apt.conf.5.xml:41 apt_preferences.5.xml:36 sources.list.5.xml:36
-#: apt-extracttemplates.1.xml:38 apt-sortpkgs.1.xml:38 apt-ftparchive.1.xml:38
+#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40
+#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40
+#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38
+#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40
msgid "Description"
msgstr "Descrizione"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:39
+#: apt-get.8.xml:41
msgid ""
"<command>apt-get</command> is the command-line tool for handling packages, "
"and may be considered the user's \"back-end\" to other tools using the APT "
@@ -704,8 +704,8 @@ msgstr ""
"interfaccia, come &dselect;, &aptitude;, &synaptic; e &wajig;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:44 apt-cache.8.xml:44 apt-cdrom.8.xml:51 apt-config.8.xml:44
-#: apt-ftparchive.1.xml:54
+#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46
+#: apt-ftparchive.1.xml:56
msgid ""
"Unless the <option>-h</option>, or <option>--help</option> option is given, "
"one of the commands below must be present."
@@ -714,7 +714,7 @@ msgstr ""
"option>, deve essere presente uno dei comandi seguenti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:49
+#: apt-get.8.xml:51
msgid ""
"<literal>update</literal> is used to resynchronize the package index files "
"from their sources. The indexes of available packages are fetched from the "
@@ -738,7 +738,7 @@ msgstr ""
"conoscere in anticipo la dimensione dei file degli indici dei pacchetti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:61
+#: apt-get.8.xml:63
msgid ""
"<literal>upgrade</literal> is used to install the newest versions of all "
"packages currently installed on the system from the sources enumerated in "
@@ -764,7 +764,7 @@ msgstr ""
"command> sappia se sono disponibili nuove versioni dei pacchetti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:74
+#: apt-get.8.xml:76
msgid ""
"<literal>dist-upgrade</literal> in addition to performing the function of "
"<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@ -789,7 +789,7 @@ msgstr ""
"scavalcare le impostazioni generali per singoli pacchetti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:87
+#: apt-get.8.xml:89
msgid ""
"<literal>dselect-upgrade</literal> is used in conjunction with the "
"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@ -806,7 +806,7 @@ msgstr ""
"l'installazione di nuovi)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:98
+#: apt-get.8.xml:100
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 "
@@ -836,7 +836,7 @@ msgstr ""
"conflitti di apt-get."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:116
+#: apt-get.8.xml:118
msgid ""
"A specific version of a package can be selected for installation by "
"following the package name with an equals and the version of the package to "
@@ -854,7 +854,7 @@ msgstr ""
"(stable, testing, unstable)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:123
+#: apt-get.8.xml:125
msgid ""
"Both of the version selection mechanisms can downgrade packages and must be "
"used with care."
@@ -863,7 +863,7 @@ msgstr ""
"pacchetti e devono essere usati con cautela."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:126
+#: apt-get.8.xml:128
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. "
@@ -883,7 +883,7 @@ msgstr ""
"installata."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:137
+#: apt-get.8.xml:139
msgid ""
"Finally, the &apt-preferences; mechanism allows you to create an alternative "
"installation policy for individual packages."
@@ -892,7 +892,7 @@ msgstr ""
"di installazione alternativa per i singoli pacchetti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:141
+#: apt-get.8.xml:143
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 "
@@ -912,7 +912,7 @@ msgstr ""
"o «$», oppure creare un'espressione regolare più specifica."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:151
+#: apt-get.8.xml:153
msgid ""
"<literal>remove</literal> is identical to <literal>install</literal> except "
"that packages are removed instead of installed. Note that removing a package "
@@ -927,7 +927,7 @@ msgstr ""
"in mezzo), il pacchetto specificato viene installato invece che rimosso."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:159
+#: apt-get.8.xml:161
msgid ""
"<literal>purge</literal> is identical to <literal>remove</literal> except "
"that packages are removed and purged (any configuration files are deleted "
@@ -938,7 +938,7 @@ msgstr ""
"eliminato anche ogni file di configurazione)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:164
+#: apt-get.8.xml:166
msgid ""
"<literal>source</literal> causes <command>apt-get</command> to fetch source "
"packages. APT will examine the available packages to decide which source "
@@ -957,7 +957,7 @@ msgstr ""
"i singoli pacchetti con la sintassi <literal>pacch/rilascio</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:172
+#: apt-get.8.xml:174
msgid ""
"Source packages are tracked separately from binary packages via <literal>deb-"
"src</literal> lines in the &sources-list; file. This means that you will "
@@ -973,7 +973,7 @@ msgstr ""
"(troppo vecchia o troppo nuova) oppure nessuna versione."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:178
+#: apt-get.8.xml:180
msgid ""
"If the <option>--compile</option> option is specified then the package will "
"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
@@ -988,7 +988,7 @@ msgstr ""
"download-only</option>, allora il pacchetto sorgente non verrà spacchettato."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:185
+#: apt-get.8.xml:187
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 "
@@ -1003,7 +1003,7 @@ msgstr ""
"abilitando implicitamente l'opzione <literal>APT::Get::Only-Source</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:191
+#: apt-get.8.xml:193
msgid ""
"Note that source packages are not installed and tracked in the "
"<command>dpkg</command> database like binary packages; they are simply "
@@ -1015,7 +1015,7 @@ msgstr ""
"tar dei sorgenti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:197
+#: apt-get.8.xml:199
msgid ""
"<literal>build-dep</literal> causes apt-get to install/remove packages in an "
"attempt to satisfy the build dependencies for a source package. By default "
@@ -1031,7 +1031,7 @@ msgstr ""
"architecture</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:204
+#: apt-get.8.xml:206
msgid ""
"<literal>check</literal> is a diagnostic tool; it updates the package cache "
"and checks for broken dependencies."
@@ -1040,7 +1040,7 @@ msgstr ""
"pacchetti e controlla la presenza di dipendenze non soddisfatte."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:209
+#: apt-get.8.xml:211
msgid ""
"<literal>download</literal> will download the given binary package into the "
"current directory."
@@ -1049,7 +1049,7 @@ msgstr ""
"directory corrente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:215
+#: apt-get.8.xml:217
msgid ""
"<literal>clean</literal> clears out the local repository of retrieved "
"package files. It removes everything but the lock file from "
@@ -1068,7 +1068,7 @@ msgstr ""
"quando per liberare spazio su disco."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:225
+#: apt-get.8.xml:227
msgid ""
"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
"local repository of retrieved package files. The difference is that it only "
@@ -1087,7 +1087,7 @@ msgstr ""
"impedisce che vengano eliminati i pacchetti installati."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:235
+#: apt-get.8.xml:237
msgid ""
"<literal>autoremove</literal> is used to remove packages that were "
"automatically installed to satisfy dependencies for other packages and are "
@@ -1098,7 +1098,7 @@ msgstr ""
"pacchetti e che non sono più necessari."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:240
+#: apt-get.8.xml:242
msgid ""
"<literal>changelog</literal> downloads a package changelog and displays it "
"through <command>sensible-pager</command>. The server name and base "
@@ -1121,14 +1121,14 @@ msgstr ""
"opzioni del comando <option>install</option>."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:258 apt-cache.8.xml:248 apt-mark.8.xml:108
-#: apt-config.8.xml:84 apt-extracttemplates.1.xml:52 apt-sortpkgs.1.xml:48
-#: apt-ftparchive.1.xml:504
+#: apt-get.8.xml:260 apt-cache.8.xml:250 apt-mark.8.xml:110
+#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50
+#: apt-ftparchive.1.xml:506
msgid "options"
msgstr "opzioni"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:263
+#: apt-get.8.xml:265
msgid ""
"Do not consider recommended packages as a dependency for installing. "
"Configuration Item: <literal>APT::Install-Recommends</literal>."
@@ -1138,7 +1138,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:268
+#: apt-get.8.xml:270
msgid ""
"Consider suggested packages as a dependency for installing. Configuration "
"Item: <literal>APT::Install-Suggests</literal>."
@@ -1147,7 +1147,7 @@ msgstr ""
"Voce di configurazione:<literal>APT::Install-Suggests</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:273
+#: apt-get.8.xml:275
msgid ""
"Download only; package files are only retrieved, not unpacked or installed. "
"Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@ -1157,7 +1157,7 @@ msgstr ""
"Download-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:278
+#: apt-get.8.xml:280
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 "
@@ -1185,7 +1185,7 @@ msgstr ""
"Voce di configurazione: <literal>APT::Get::Fix-Broken</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:293
+#: apt-get.8.xml:295
msgid ""
"Ignore missing packages; if packages cannot be retrieved or fail the "
"integrity check after retrieval (corrupted package files), hold back those "
@@ -1205,7 +1205,7 @@ msgstr ""
"configurazione: <literal>APT::Get::Fix-Missing</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:304
+#: apt-get.8.xml:306
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 "
@@ -1216,7 +1216,7 @@ msgstr ""
"scaricato. Voce di configurazione: <literal>APT::Get::Download</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:311
+#: apt-get.8.xml:313
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 "
@@ -1236,7 +1236,7 @@ msgstr ""
"qualcosa di inatteso. Voce di configurazione: <literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:326
+#: apt-get.8.xml:328
msgid ""
"No action; perform a simulation of events that would occur but do not "
"actually change the system. Configuration Item: <literal>APT::Get::"
@@ -1247,7 +1247,7 @@ msgstr ""
"configurazione: <literal>APT::Get::Simulate</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:330
+#: apt-get.8.xml:332
msgid ""
"Simulated runs performed as a user will automatically deactivate locking "
"(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::"
@@ -1266,7 +1266,7 @@ msgstr ""
"bisogno di ulteriori avvertimenti da <literal>apt-get</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:338
+#: apt-get.8.xml:340
msgid ""
"Simulated runs print out a series of lines, each representing a "
"<command>dpkg</command> operation: configure (<literal>Conf</literal>), "
@@ -1282,7 +1282,7 @@ msgstr ""
"hanno conseguenze (rari)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:346
+#: apt-get.8.xml:348
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 "
@@ -1299,7 +1299,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:354
+#: apt-get.8.xml:356
msgid ""
"Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::"
"Assume-No</literal>."
@@ -1308,7 +1308,7 @@ msgstr ""
"<literal>APT::Get::Assume-No</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:359
+#: apt-get.8.xml:361
msgid ""
"Show upgraded packages; print out a list of all packages that are to be "
"upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@ -1318,7 +1318,7 @@ msgstr ""
"Upgraded</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:365
+#: apt-get.8.xml:367
msgid ""
"Show full versions for upgraded and installed packages. Configuration Item: "
"<literal>APT::Get::Show-Versions</literal>."
@@ -1327,7 +1327,7 @@ msgstr ""
"configurazione: <literal>APT::Get::Show-Versions</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:371
+#: apt-get.8.xml:373
msgid ""
"This option controls the architecture packages are built for by <command>apt-"
"get source --compile</command> and how cross-builddependencies are "
@@ -1344,7 +1344,7 @@ msgstr ""
"di configurazione: <literal>APT::Get::Host-Architecture</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:381
+#: apt-get.8.xml:383
msgid ""
"Compile source packages after downloading them. Configuration Item: "
"<literal>APT::Get::Compile</literal>."
@@ -1353,7 +1353,7 @@ msgstr ""
"<literal>APT::Get::Compile</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:386
+#: apt-get.8.xml:388
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 "
@@ -1366,7 +1366,19 @@ msgstr ""
"non desiderati. Voce di configurazione: <literal>APT::Ignore-Hold</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:393
+#: apt-get.8.xml:395
+msgid ""
+"Allow installing new packages when used in conjunction with "
+"<literal>upgrade</literal>. This is useful if the update of a installed "
+"package requires new dependencies to be installed. Instead of holding the "
+"package back <literal>upgrade</literal> will upgrade the package and install "
+"the new dependencies. Note that <literal>upgrade</literal> with this option "
+"will never remove packages, only allow adding new ones. Configuration Item: "
+"<literal>APT::Get::Upgrade-Allow-New</literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:407
msgid ""
"Do not upgrade packages; when used in conjunction with <literal>install</"
"literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@ -1379,7 +1391,7 @@ msgstr ""
"configurazione: <literal>APT::Get::Upgrade</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:400
+#: apt-get.8.xml:414
msgid ""
"Do not install new packages; when used in conjunction with <literal>install</"
"literal>, <literal>only-upgrade</literal> will install upgrades for already "
@@ -1393,7 +1405,7 @@ msgstr ""
"Upgrade</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:408
+#: apt-get.8.xml:422
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 "
@@ -1409,7 +1421,7 @@ msgstr ""
"yes</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:416
+#: apt-get.8.xml:430
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 "
@@ -1430,7 +1442,7 @@ msgstr ""
"configurazione: <literal>APT::Get::Print-URIs</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:427
+#: apt-get.8.xml:441
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. "
@@ -1443,7 +1455,7 @@ msgstr ""
"option>. Voce di configurazione: <literal>APT::Get::Purge</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:435
+#: apt-get.8.xml:449
msgid ""
"Re-install packages that are already installed and at the newest version. "
"Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@ -1452,7 +1464,7 @@ msgstr ""
"configurazione: <literal>APT::Get::ReInstall</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:440
+#: apt-get.8.xml:454
msgid ""
"This option is on by default; use <literal>--no-list-cleanup</literal> to "
"turn it off. When it is on, <command>apt-get</command> will automatically "
@@ -1469,7 +1481,7 @@ msgstr ""
"fonti. Voce di configurazione: <literal>APT::Get::List-Cleanup</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:450
+#: apt-get.8.xml:464
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 "
@@ -1493,7 +1505,7 @@ msgstr ""
"pagina di manuale di &apt-preferences;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:465
+#: apt-get.8.xml:479
msgid ""
"Only perform operations that are 'trivial'. Logically this can be considered "
"related to <option>--assume-yes</option>; where <option>--assume-yes</"
@@ -1507,7 +1519,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:472
+#: apt-get.8.xml:486
msgid ""
"If any packages are to be removed apt-get immediately aborts without "
"prompting. Configuration Item: <literal>APT::Get::Remove</literal>."
@@ -1517,7 +1529,7 @@ msgstr ""
"Get::Remove</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:478
+#: apt-get.8.xml:492
msgid ""
"If the command is either <literal>install</literal> or <literal>remove</"
"literal>, then this option acts like running the <literal>autoremove</"
@@ -1531,7 +1543,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:485
+#: apt-get.8.xml:499
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 "
@@ -1550,7 +1562,7 @@ msgstr ""
"configurazione: <literal>APT::Get::Only-Source</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:496
+#: apt-get.8.xml:510
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</"
@@ -1561,7 +1573,7 @@ msgstr ""
"Dsc-Only</literal> e <literal>APT::Get::Tar-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:502
+#: apt-get.8.xml:516
msgid ""
"Only process architecture-dependent build-dependencies. Configuration Item: "
"<literal>APT::Get::Arch-Only</literal>."
@@ -1570,7 +1582,7 @@ msgstr ""
"Voce di configurazione: <literal>APT::Get::Arch-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:507
+#: apt-get.8.xml:521
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::"
@@ -1580,23 +1592,33 @@ msgstr ""
"all'utente cosa fare. È utile per strumenti come pbuilder. Voce di "
"configurazione: <literal>APT::Get::AllowUnauthenticated</literal>."
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:527
+msgid ""
+"Show user friendly progress information in the terminal window when packages "
+"are installed, upgraded or removed. For a machine parsable version of this "
+"data see README.progress-reporting in the apt doc directory. Configuration "
+"Item: <literal>DpkgPM::Progress</literal> and <literal>Dpkg::Progress-Fancy</"
+"literal>."
+msgstr ""
+
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125
-#: apt.conf.5.xml:1167 apt_preferences.5.xml:698
+#: apt-get.8.xml:540 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127
+#: apt.conf.5.xml:1200 apt_preferences.5.xml:700
msgid "Files"
msgstr "File"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131
-#: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109
-#: apt.conf.5.xml:1173 apt_preferences.5.xml:705 sources.list.5.xml:252
-#: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63
-#: apt-ftparchive.1.xml:607
+#: apt-get.8.xml:550 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133
+#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111
+#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:258
+#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65
+#: apt-ftparchive.1.xml:609
msgid "See Also"
msgstr "Vedere anche"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:529
+#: apt-get.8.xml:551
msgid ""
"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@ -1607,14 +1629,14 @@ msgstr ""
"preferences;, l'APT Howto."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:534 apt-cache.8.xml:355 apt-mark.8.xml:135
-#: apt-cdrom.8.xml:149 apt-config.8.xml:114 apt-extracttemplates.1.xml:74
-#: apt-sortpkgs.1.xml:67 apt-ftparchive.1.xml:611
+#: apt-get.8.xml:556 apt-cache.8.xml:357 apt-mark.8.xml:137
+#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76
+#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613
msgid "Diagnostics"
msgstr "Diagnostica"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:535
+#: apt-get.8.xml:557
msgid ""
"<command>apt-get</command> returns zero on normal operation, decimal 100 on "
"error."
@@ -1623,12 +1645,12 @@ msgstr ""
"e il valore decimale 100 in caso di errore."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cache.8.xml:33
+#: apt-cache.8.xml:35
msgid "query the APT cache"
msgstr "interroga la cache di APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:39
+#: apt-cache.8.xml:41
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 "
@@ -1641,7 +1663,7 @@ msgstr ""
"interessanti partendo dai metadati dei pacchetti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:49
+#: apt-cache.8.xml:51
msgid ""
"<literal>gencaches</literal> creates APT's package cache. This is done "
"implicitly by all commands needing this cache if it is missing or outdated."
@@ -1651,14 +1673,14 @@ msgstr ""
"essa manca o non è aggiornata."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:53 apt-cache.8.xml:142 apt-cache.8.xml:163
-#: apt-cache.8.xml:185 apt-cache.8.xml:190 apt-cache.8.xml:206
-#: apt-cache.8.xml:224 apt-cache.8.xml:236
+#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165
+#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208
+#: apt-cache.8.xml:226 apt-cache.8.xml:238
msgid "&synopsis-pkg;"
msgstr "&synopsis-pkg;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:54
+#: apt-cache.8.xml:56
msgid ""
"<literal>showpkg</literal> displays information about the packages listed on "
"the command line. Remaining arguments are package names. The available "
@@ -1681,7 +1703,7 @@ msgstr ""
"showpkg libreadline2</command> produce un risultato simile al seguente:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-cache.8.xml:66
+#: apt-cache.8.xml:68
#, no-wrap
msgid ""
"Package: libreadline2\n"
@@ -1707,7 +1729,7 @@ msgstr ""
"Reverse Provides: \n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:78
+#: apt-cache.8.xml:80
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, "
@@ -1726,7 +1748,7 @@ msgstr ""
"consultare il codice sorgente di apt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:87
+#: apt-cache.8.xml:89
msgid ""
"<literal>stats</literal> displays some statistics about the cache. No "
"further arguments are expected. Statistics reported are:"
@@ -1735,7 +1757,7 @@ msgstr ""
"previsti ulteriori argomenti. Le statistiche riportate sono:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:90
+#: apt-cache.8.xml:92
msgid ""
"<literal>Total package names</literal> is the number of package names found "
"in the cache."
@@ -1744,7 +1766,7 @@ msgstr ""
"pacchetto trovati nella cache."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:94
+#: apt-cache.8.xml:96
msgid ""
"<literal>Normal packages</literal> is the number of regular, ordinary "
"package names; these are packages that bear a one-to-one correspondence "
@@ -1757,7 +1779,7 @@ msgstr ""
"dipendenze. La maggioranza dei pacchetti ricade in questa categoria."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:100
+#: apt-cache.8.xml:102
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 "
@@ -1774,7 +1796,7 @@ msgstr ""
"agent», ma non c'è alcun pacchetto chiamato «mail-transport-agent»."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:108
+#: apt-cache.8.xml:110
msgid ""
"<literal>Single virtual packages</literal> is the number of packages with "
"only one package providing a particular virtual package. For example, in the "
@@ -1787,7 +1809,7 @@ msgstr ""
"pacchetto, xless, fornisce «X11-text-viewer»."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:114
+#: apt-cache.8.xml:116
msgid ""
"<literal>Mixed virtual packages</literal> is the number of packages that "
"either provide a particular virtual package or have the virtual package name "
@@ -1800,7 +1822,7 @@ msgstr ""
"sia un pacchetto vero e proprio, sia è fornito dal pacchetto debconf-tiny."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:121
+#: apt-cache.8.xml:123
msgid ""
"<literal>Missing</literal> is the number of package names that were "
"referenced in a dependency but were not provided by any package. Missing "
@@ -1816,7 +1838,7 @@ msgstr ""
"Conflicts o Breaks."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:128
+#: apt-cache.8.xml:130
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 "
@@ -1831,7 +1853,7 @@ msgstr ""
"essere decisamente più grande del numero dei nomi totali di pacchetto."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:135
+#: apt-cache.8.xml:137
msgid ""
"<literal>Total dependencies</literal> is the number of dependency "
"relationships claimed by all of the packages in the cache."
@@ -1840,7 +1862,7 @@ msgstr ""
"dichiarate da tutti i pacchetti nella cache."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:143
+#: apt-cache.8.xml:145
msgid ""
"<literal>showsrc</literal> displays all the source package records that "
"match the given package names. All versions are shown, as well as all "
@@ -1852,7 +1874,7 @@ msgstr ""
"pacchetto binario."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:149
+#: apt-cache.8.xml:151
msgid ""
"<literal>dump</literal> shows a short listing of every package in the cache. "
"It is primarily for debugging."
@@ -1861,7 +1883,7 @@ msgstr ""
"cache. Serve soprattutto a scopo di debug."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:154
+#: apt-cache.8.xml:156
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."
@@ -1870,7 +1892,7 @@ msgstr ""
"stdout. Questa è adatta all'uso con &dpkg; ed è usata dal metodo &dselect;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:159
+#: apt-cache.8.xml:161
msgid ""
"<literal>unmet</literal> displays a summary of all unmet dependencies in the "
"package cache."
@@ -1879,7 +1901,7 @@ msgstr ""
"soddisfatte nella cache dei pacchetti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:164
+#: apt-cache.8.xml:166
msgid ""
"<literal>show</literal> performs a function similar to <command>dpkg --print-"
"avail</command>; it displays the package records for the named packages."
@@ -1888,12 +1910,12 @@ msgstr ""
"avail</command>; mostra i record dei pacchetti per i pacchetti specificati."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:169
+#: apt-cache.8.xml:171
msgid "&synopsis-regex;"
msgstr "&synopsis-regex;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:170
+#: apt-cache.8.xml:172
msgid ""
"<literal>search</literal> performs a full text search on all available "
"package lists for the POSIX regex pattern given, see &regex;. It searches "
@@ -1916,7 +1938,7 @@ msgstr ""
"descrizione lunga."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:181
+#: apt-cache.8.xml:183
msgid ""
"Separate arguments can be used to specify multiple search patterns that are "
"and'ed together."
@@ -1925,7 +1947,7 @@ msgstr ""
"che vengono combinati con un AND."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:186
+#: apt-cache.8.xml:188
msgid ""
"<literal>depends</literal> shows a listing of each dependency a package has "
"and all the possible other packages that can fulfill that dependency."
@@ -1935,7 +1957,7 @@ msgstr ""
"dipendenza."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:191
+#: apt-cache.8.xml:193
msgid ""
"<literal>rdepends</literal> shows a listing of each reverse dependency a "
"package has."
@@ -1944,12 +1966,12 @@ msgstr ""
"di un pacchetto."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:195
+#: apt-cache.8.xml:197
msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:196
+#: apt-cache.8.xml:198
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 "
@@ -1964,7 +1986,7 @@ msgstr ""
"viene usato al meglio con l'opzione <option>--generate</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:201
+#: apt-cache.8.xml:203
msgid ""
"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 "
@@ -1975,7 +1997,7 @@ msgstr ""
"virtuali sono anch'essi compresi nell'elenco generato."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:207
+#: apt-cache.8.xml:209
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."
@@ -1997,7 +2019,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:216
+#: apt-cache.8.xml:218
msgid ""
"The resulting nodes will have several shapes; normal packages are boxes, "
"pure virtual packages are triangles, mixed virtual packages are diamonds, "
@@ -2011,14 +2033,14 @@ msgstr ""
"blu sono pre-dipendenze, le linee verdi sono conflitti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:221
+#: apt-cache.8.xml:223
msgid "Caution, dotty cannot graph larger sets of packages."
msgstr ""
"Attenzione: dotty non può creare i grafi degli insiemi più grandi di "
"pacchetti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:225
+#: apt-cache.8.xml:227
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>."
@@ -2028,12 +2050,12 @@ msgstr ""
"ulink>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:229
+#: apt-cache.8.xml:231
msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:230
+#: apt-cache.8.xml:232
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 "
@@ -2046,7 +2068,7 @@ msgstr ""
"di priorità del pacchetto indicato."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:237
+#: apt-cache.8.xml:239
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 "
@@ -2065,7 +2087,7 @@ msgstr ""
"elenchi dei pacchetti (<literal>APT::Architecture</literal>)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:253
+#: apt-cache.8.xml:255
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::"
@@ -2076,7 +2098,7 @@ msgstr ""
"<literal>Dir::Cache::pkgcache</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:259
+#: apt-cache.8.xml:261
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 "
@@ -2092,7 +2114,7 @@ msgstr ""
"configurazione: <literal>Dir::Cache::srcpkgcache</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:267
+#: apt-cache.8.xml:269
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 "
@@ -2106,7 +2128,7 @@ msgstr ""
"configurazione. Voce di configurazione: <literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:274
+#: apt-cache.8.xml:276
msgid ""
"Print only important dependencies; for use with <literal>unmet</literal> and "
"<literal>depends</literal>. Causes only Depends and Pre-Depends relations to "
@@ -2118,7 +2140,7 @@ msgstr ""
"Important</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:288
+#: apt-cache.8.xml:290
msgid ""
"Per default the <literal>depends</literal> and <literal>rdepends</literal> "
"print all dependencies. This can be tweaked with these flags which will omit "
@@ -2133,7 +2155,7 @@ msgstr ""
"literal>, ad es. <literal>APT::Cache::ShowRecommends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:295
+#: apt-cache.8.xml:297
msgid ""
"Print full package records when searching. Configuration Item: "
"<literal>APT::Cache::ShowFull</literal>."
@@ -2142,7 +2164,7 @@ msgstr ""
"configurazione: <literal>APT::Cache::ShowFull</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:300
+#: apt-cache.8.xml:302
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-"
@@ -2160,7 +2182,7 @@ msgstr ""
"AllVersions</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:309
+#: apt-cache.8.xml:311
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</"
@@ -2172,7 +2194,7 @@ msgstr ""
"<literal>APT::Cache::Generate</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:315
+#: apt-cache.8.xml:317
msgid ""
"Only search on the package names, not the long descriptions. Configuration "
"Item: <literal>APT::Cache::NamesOnly</literal>."
@@ -2181,7 +2203,7 @@ msgstr ""
"configurazione: <literal>APT::Cache::NamesOnly</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:320
+#: apt-cache.8.xml:322
msgid ""
"Make <literal>pkgnames</literal> print all names, including virtual packages "
"and missing dependencies. Configuration Item: <literal>APT::Cache::"
@@ -2192,7 +2214,7 @@ msgstr ""
"<literal>APT::Cache::AllNames</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:326
+#: apt-cache.8.xml:328
msgid ""
"Make <literal>depends</literal> and <literal>rdepends</literal> recursive so "
"that all packages mentioned are printed once. Configuration Item: "
@@ -2203,7 +2225,7 @@ msgstr ""
"configurazione: <literal>APT::Cache::RecurseDepends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:333
+#: apt-cache.8.xml:335
msgid ""
"Limit the output of <literal>depends</literal> and <literal>rdepends</"
"literal> to packages which are currently installed. Configuration Item: "
@@ -2214,12 +2236,12 @@ msgstr ""
"Cache::Installed</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:351
+#: apt-cache.8.xml:353
msgid "&apt-conf;, &sources-list;, &apt-get;"
msgstr "&apt-conf;, &sources-list;, &apt-get;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:356
+#: apt-cache.8.xml:358
msgid ""
"<command>apt-cache</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -2228,12 +2250,12 @@ msgstr ""
"normale e il valore decimale 100 in caso di errore."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-key.8.xml:32
+#: apt-key.8.xml:34
msgid "APT key management utility"
msgstr "strumento APT per la gestione delle chiavi"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:39
+#: apt-key.8.xml:41
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 "
@@ -2244,12 +2266,12 @@ msgstr ""
"autenticati usando queste chiavi verranno considerati fidati."
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:45
+#: apt-key.8.xml:47
msgid "Commands"
msgstr "Comandi"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:50
+#: apt-key.8.xml:52
msgid ""
"Add a new key to the list of trusted keys. The key is read from the "
"filename given with the parameter &synopsis-param-filename; or if the "
@@ -2260,33 +2282,33 @@ msgstr ""
"il nome file è <literal>-</literal>, dallo standard input."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:63
+#: apt-key.8.xml:65
msgid "Remove a key from the list of trusted keys."
msgstr "Rimuove una chiave dall'elenco delle chiavi fidate."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:74
+#: apt-key.8.xml:76
msgid "Output the key &synopsis-param-keyid; to standard output."
msgstr ""
"Visualizza sullo standard output l'&synopsis-param-keyid; della chiave."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:85
+#: apt-key.8.xml:87
msgid "Output all trusted keys to standard output."
msgstr "Visualizza sullo standard output tutte le chiavi fidate."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:96
+#: apt-key.8.xml:98
msgid "List trusted keys."
msgstr "Elenca le chiavi fidate."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:107
+#: apt-key.8.xml:109
msgid "List fingerprints of trusted keys."
msgstr "Elenca le impronte digitali delle chiavi fidate."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:118
+#: apt-key.8.xml:120
msgid ""
"Pass advanced options to gpg. With adv --recv-key you can download the "
"public key."
@@ -2295,22 +2317,21 @@ msgstr ""
"chiave pubblica."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:130
+#: apt-key.8.xml:132
msgid ""
"Update the local keyring with the archive keyring and remove from the local "
"keyring the archive keys which are no longer valid. The archive keyring is "
"shipped in the <literal>archive-keyring</literal> package of your "
-"distribution, e.g. the &keyring-package; package in "
-"&keyring-distro;."
+"distribution, e.g. the &keyring-package; package in &keyring-distro;."
msgstr ""
"Aggiorna il portachiavi locale con il portachiavi dell'archivio e rimuove "
"dal portachiavi locale le chiavi di archivio che non sono più valide. Il "
"portachiavi degli archivi è fornito nel pacchetto <literal>archive-keyring</"
-"literal> delle diverse distribuzioni, ad esempio il pacchetto "
-"&keyring-package; in &keyring-distro;."
+"literal> delle diverse distribuzioni, ad esempio il pacchetto &keyring-"
+"package; in &keyring-distro;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:144
+#: apt-key.8.xml:146
msgid ""
"Perform an update working similarly to the <command>update</command> command "
"above, but get the archive keyring from a URI instead and validate it "
@@ -2328,12 +2349,12 @@ msgstr ""
"<command>update</command>; APT in Ubuntu invece lo fa."
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:160 apt-cdrom.8.xml:80
+#: apt-key.8.xml:162 apt-cdrom.8.xml:82
msgid "Options"
msgstr "Opzioni"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:161
+#: apt-key.8.xml:163
msgid ""
"Note that options need to be defined before the commands described in the "
"previous section."
@@ -2342,7 +2363,7 @@ msgstr ""
"nella sezione precedente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:164
+#: apt-key.8.xml:166
msgid ""
"With this option it is possible to specify a particular keyring file the "
"command should operate on. The default is that a command is executed on the "
@@ -2359,50 +2380,49 @@ msgstr ""
"che le nuove chiavi sono aggiunte ad esso."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:179
+#: apt-key.8.xml:181
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:180
+#: apt-key.8.xml:182
msgid "Local trust database of archive keys."
msgstr "Database locale di fiducia delle chiavi archiviate."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:183
+#: apt-key.8.xml:185
msgid "&keyring-filename;"
msgstr "&keyring-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:184
+#: apt-key.8.xml:186
msgid "Keyring of &keyring-distro; archive trusted keys."
msgstr "Portachiavi delle chiavi fidate degli archivi &keyring-distro;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:187
-msgid ""
-"&keyring-removed-filename;"
-msgstr ""
-"&keyring-removed-filename;"
+#: apt-key.8.xml:189
+msgid "&keyring-removed-filename;"
+msgstr "&keyring-removed-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:188
+#: apt-key.8.xml:190
msgid "Keyring of &keyring-distro; archive removed trusted keys."
-msgstr "Portachiavi delle chiavi fidate rimosse degli archivi &keyring-distro;."
+msgstr ""
+"Portachiavi delle chiavi fidate rimosse degli archivi &keyring-distro;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:197
+#: apt-key.8.xml:199
msgid "&apt-get;, &apt-secure;"
msgstr "&apt-get;, &apt-secure;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-mark.8.xml:33
+#: apt-mark.8.xml:35
msgid "mark/unmark a package as being automatically-installed"
msgstr ""
"mette/toglie il contrassegno di automaticamente installato ai pacchetti"
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:39
+#: apt-mark.8.xml:41
msgid ""
"<command>apt-mark</command> will change whether a package has been marked as "
"being automatically installed."
@@ -2411,7 +2431,7 @@ msgstr ""
"indica se è stato installato automaticamente."
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:43
+#: apt-mark.8.xml:45
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 "
@@ -2427,7 +2447,7 @@ msgstr ""
"get</command> o <command>aptitude</command>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:52
+#: apt-mark.8.xml:54
msgid ""
"<literal>auto</literal> is used to mark a package as being automatically "
"installed, which will cause the package to be removed when no more manually "
@@ -2439,7 +2459,7 @@ msgstr ""
"esso."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:60
+#: apt-mark.8.xml:62
msgid ""
"<literal>manual</literal> is used to mark a package as being manually "
"installed, which will prevent the package from being automatically removed "
@@ -2450,7 +2470,7 @@ msgstr ""
"automaticamente se nessun altro dipende da esso."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:68
+#: apt-mark.8.xml:70
msgid ""
"<literal>hold</literal> is used to mark a package as held back, which will "
"prevent the package from being automatically installed, upgraded or "
@@ -2465,7 +2485,7 @@ msgstr ""
"&dpkg; e non è influenzato dall'opzione <option>--file</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:78
+#: apt-mark.8.xml:80
msgid ""
"<literal>unhold</literal> is used to cancel a previously set hold on a "
"package to allow all actions again."
@@ -2474,7 +2494,7 @@ msgstr ""
"precedenza, per permettere nuovamente tutte le azioni."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:84
+#: apt-mark.8.xml:86
msgid ""
"<literal>showauto</literal> is used to print a list of automatically "
"installed packages with each package on a new line. All automatically "
@@ -2488,7 +2508,7 @@ msgstr ""
"solo quelli automaticamente installati."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:92
+#: apt-mark.8.xml:94
msgid ""
"<literal>showmanual</literal> can be used in the same way as "
"<literal>showauto</literal> except that it will print a list of manually "
@@ -2499,7 +2519,7 @@ msgstr ""
"dei pacchetti installati manualmente"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:99
+#: apt-mark.8.xml:101
msgid ""
"<literal>showhold</literal> is used to print a list of packages on hold in "
"the same way as for the other show commands."
@@ -2508,7 +2528,7 @@ msgstr ""
"bloccati in modo uguale a ciò che fanno gli altri comandi «show»."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:115
+#: apt-mark.8.xml:117
msgid ""
"Read/Write package stats from the filename given with the parameter "
"&synopsis-param-filename; instead of from the default location, which is "
@@ -2521,7 +2541,7 @@ msgstr ""
"voce di configurazione <literal>Dir::State</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:136
+#: apt-mark.8.xml:138
msgid ""
"<command>apt-mark</command> returns zero on normal operation, non-zero on "
"error."
@@ -2530,12 +2550,12 @@ msgstr ""
"normale e un valore diverso da zero in caso di errore."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-secure.8.xml:47
+#: apt-secure.8.xml:49
msgid "Archive authentication support for APT"
msgstr "supporto per l'autenticazione degli archivi per APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:52
+#: apt-secure.8.xml:54
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 "
@@ -2548,7 +2568,7 @@ msgstr ""
"non hanno accesso alla chiave di firma dei file Release."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:60
+#: apt-secure.8.xml:62
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 "
@@ -2564,7 +2584,7 @@ msgstr ""
"scaricare pacchetti da esse."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:69
+#: apt-secure.8.xml:71
msgid ""
"The package frontends &apt-get;, &aptitude; and &synaptic; support this new "
"authentication feature."
@@ -2573,12 +2593,12 @@ msgstr ""
"questa nuova funzionalità di autenticazione."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:74
+#: apt-secure.8.xml:76
msgid "Trusted archives"
msgstr "Archivi fidati"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:77
+#: apt-secure.8.xml:79
msgid ""
"The chain of trust from an apt archive to the end user is made up of several "
"steps. <command>apt-secure</command> is the last step in this chain; "
@@ -2596,7 +2616,7 @@ msgstr ""
"dell'archivio."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:85
+#: apt-secure.8.xml:87
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 "
@@ -2609,7 +2629,7 @@ msgstr ""
"verify e devscripts)."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:92
+#: apt-secure.8.xml:94
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. In order to become "
@@ -2627,28 +2647,29 @@ msgstr ""
"del proprietario della chiave."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:102
+#: apt-secure.8.xml:104
msgid ""
"Once the uploaded package is verified and included in the archive, the "
"maintainer signature is stripped off, and checksums of the package are "
"computed and put in the Packages file. The checksums 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 for this &keyring-distro; release, and distributed "
-"alongside the packages and the Packages files on &keyring-distro; mirrors. The keys "
-"are in the &keyring-distro; archive keyring available in the &keyring-package; "
-"package."
+"then signed by the archive key for this &keyring-distro; release, and "
+"distributed alongside the packages and the Packages files on &keyring-"
+"distro; mirrors. The keys are in the &keyring-distro; archive keyring "
+"available in the &keyring-package; package."
msgstr ""
"Una volta che il pacchetto caricato è verificato e incluso nell'archivio, la "
"firma del manutentore viene rimossa e i codici di controllo del pacchetto "
"vengono calcolati e messi nel file Packages. Vengono quindi calcolati i "
"codici di controllo di tutti i file Packages e vengono messi nel file "
"Release. Il file Release viene poi firmato con la chiave dell'archivio per "
-"questo rilascio di &keyring-distro; e viene distribuito insieme ai pacchetti e ai file "
-"Packages nei mirror &keyring-distro;. Le chiavi sono nel portachiavi degli archivi "
-"&keyring-distro;, disponibile nel pacchetto &keyring-package;."
+"questo rilascio di &keyring-distro; e viene distribuito insieme ai pacchetti "
+"e ai file Packages nei mirror &keyring-distro;. Le chiavi sono nel "
+"portachiavi degli archivi &keyring-distro;, disponibile nel pacchetto "
+"&keyring-package;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:113
+#: apt-secure.8.xml:115
msgid ""
"End users can check the signature of the Release file, extract a checksum of "
"a package from it and compare it with the checksum of the package they "
@@ -2660,7 +2681,7 @@ msgstr ""
"ad APT che lo fa automaticamente."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:118
+#: apt-secure.8.xml:120
msgid ""
"Notice that this is distinct from checking signatures on a per package "
"basis. It is designed to prevent two possible attacks:"
@@ -2669,7 +2690,7 @@ msgstr ""
"È progettato per prevenire due possibili attacchi:"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:123
+#: apt-secure.8.xml:125
msgid ""
"<literal>Network \"man in the middle\" attacks</literal>. Without signature "
"checking, malicious agents can introduce themselves into the package "
@@ -2684,7 +2705,7 @@ msgstr ""
"server cattivo (attraverso attacchi di falsificazione di DNS e ARP)."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:131
+#: apt-secure.8.xml:133
msgid ""
"<literal>Mirror network compromise</literal>. Without signature checking, a "
"malicious agent can compromise a mirror host and modify the files in it to "
@@ -2697,7 +2718,7 @@ msgstr ""
"gli utenti che scaricano i pacchetti da quell'host."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:138
+#: apt-secure.8.xml:140
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 "
@@ -2710,12 +2731,12 @@ msgstr ""
"firme a livello di singolo pacchetto."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:144
+#: apt-secure.8.xml:146
msgid "User configuration"
msgstr "Configurazione utente"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:146
+#: apt-secure.8.xml:148
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 "
@@ -2729,7 +2750,7 @@ msgstr ""
"pacchetti Debian."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:153
+#: apt-secure.8.xml:155
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 "
@@ -2746,12 +2767,12 @@ msgstr ""
"filename> dagli archivi che sono configurati."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:162
+#: apt-secure.8.xml:164
msgid "Archive configuration"
msgstr "Configurazione dell'archivio"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:164
+#: apt-secure.8.xml:166
msgid ""
"If you want to provide archive signatures in an archive under your "
"maintenance you have to:"
@@ -2760,7 +2781,7 @@ msgstr ""
"si deve:"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:169
+#: apt-secure.8.xml:171
msgid ""
"<emphasis>Create a toplevel Release file</emphasis>, if it does not exist "
"already. You can do this by running <command>apt-ftparchive release</"
@@ -2771,7 +2792,7 @@ msgstr ""
"command> (fornito in apt-utils)."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:174
+#: apt-secure.8.xml:176
msgid ""
"<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --"
"clearsign -o InRelease Release</command> and <command>gpg -abs -o Release."
@@ -2782,7 +2803,7 @@ msgstr ""
"Release</command>."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:178
+#: apt-secure.8.xml:180
msgid ""
"<emphasis>Publish the key fingerprint</emphasis>, that way your users will "
"know what key they need to import in order to authenticate the files in the "
@@ -2793,7 +2814,7 @@ msgstr ""
"i file nell'archivio."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:185
+#: apt-secure.8.xml:187
msgid ""
"Whenever the contents of the archive change (new packages are added or "
"removed) the archive maintainer has to follow the first two steps outlined "
@@ -2804,7 +2825,7 @@ msgstr ""
"primi due passi descritti sopra."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:193
+#: apt-secure.8.xml:195
msgid ""
"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, "
"&debsign; &debsig-verify;, &gpg;"
@@ -2813,7 +2834,7 @@ msgstr ""
"&debsign; &debsig-verify;, &gpg;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:197
+#: apt-secure.8.xml:199
msgid ""
"For more background information you might want to review the <ulink url="
"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian "
@@ -2830,12 +2851,12 @@ msgstr ""
"Distribution HOWTO</ulink> di V. Alex Brennen."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:210
+#: apt-secure.8.xml:212
msgid "Manpage Authors"
msgstr "Autori della pagina di manuale"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:212
+#: apt-secure.8.xml:214
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."
@@ -2844,12 +2865,12 @@ msgstr ""
"Peña, Isaac Jones, Colin Walters, Florian Weimer e Michael Vogt."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cdrom.8.xml:32
+#: apt-cdrom.8.xml:34
msgid "APT CD-ROM management utility"
msgstr "strumento APT per la gestione dei CD-ROM"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:38
+#: apt-cdrom.8.xml:40
msgid ""
"<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of "
"available sources. <command>apt-cdrom</command> takes care of determining "
@@ -2862,7 +2883,7 @@ msgstr ""
"possibili errori di masterizzazione e di verificare i file indice."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:45
+#: apt-cdrom.8.xml:47
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 disc in a multi-CD set "
@@ -2874,7 +2895,7 @@ msgstr ""
"tenere conto di possibili errori di masterizzazione."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:56
+#: apt-cdrom.8.xml:58
msgid ""
"<literal>add</literal> is used to add a new disc to the source list. It will "
"unmount the CD-ROM device, prompt for a disc to be inserted and then proceed "
@@ -2889,7 +2910,7 @@ msgstr ""
"descrittivo."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:64
+#: apt-cdrom.8.xml:66
msgid ""
"APT uses a CD-ROM ID to track which disc is currently in the drive and "
"maintains a database of these IDs in <filename>&statedir;/cdroms.list</"
@@ -2900,7 +2921,7 @@ msgstr ""
"file <filename>&statedir;/cdroms.list</filename>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:72
+#: apt-cdrom.8.xml:74
msgid ""
"A debugging tool to report the identity of the current disc as well as the "
"stored file name"
@@ -2909,7 +2930,24 @@ msgstr ""
"il nome dei file memorizzato."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:85
+#: apt-cdrom.8.xml:87
+#, fuzzy
+#| msgid ""
+#| "Mount point; specify the location to mount the CD-ROM. This mount point "
+#| "must be listed in <filename>/etc/fstab</filename> and properly "
+#| "configured. Configuration Item: <literal>Acquire::cdrom::mount</literal>."
+msgid ""
+"Do not try to auto-detect the CD-ROM path. Usually combined with the "
+"<option>--cdrom</option> option. Configuration Item: <literal>Acquire::"
+"cdrom::AutoDetect</literal>."
+msgstr ""
+"Punto di mount; specifica la posizione in cui montare il CD-ROM. Questo "
+"punto di mount deve essere elencato nel file <filename>/etc/fstab</filename> "
+"e configurato correttamente. Voce di configurazione: <literal>Acquire::"
+"cdrom::mount</literal>."
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-cdrom.8.xml:95
msgid ""
"Mount point; specify the location to mount the CD-ROM. This mount point must "
"be listed in <filename>/etc/fstab</filename> and properly configured. "
@@ -2921,7 +2959,7 @@ msgstr ""
"cdrom::mount</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:94
+#: apt-cdrom.8.xml:104
msgid ""
"Rename a disc; change the label of a disc or override the disc's given "
"label. This option will cause <command>apt-cdrom</command> to prompt for a "
@@ -2933,7 +2971,7 @@ msgstr ""
"Rename</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:103
+#: 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::"
@@ -2944,7 +2982,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:111
+#: 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 "
@@ -2957,7 +2995,7 @@ msgstr ""
"errore. Voce di configurazione: <literal>APT::CDROM::Fast</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:121
+#: 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 "
@@ -2969,7 +3007,7 @@ msgstr ""
"più tempo, ma troverà tutti i file."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:132
+#: 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: "
@@ -2980,12 +3018,12 @@ msgstr ""
"<literal>APT::CDROM::NoAct</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:145
+#: 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:150
+#: apt-cdrom.8.xml:160
msgid ""
"<command>apt-cdrom</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -2994,12 +3032,12 @@ msgstr ""
"normale e il valore decimale 100 in caso di errore."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-config.8.xml:33
+#: apt-config.8.xml:35
msgid "APT Configuration Query program"
msgstr "programma di interrogazione della configurazione di APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:39
+#: apt-config.8.xml:41
msgid ""
"<command>apt-config</command> is an internal program used by various "
"portions of the APT suite to provide consistent configurability. It accesses "
@@ -3012,7 +3050,7 @@ msgstr ""
"modo facile da usare da parte di applicazioni che usano script."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:51
+#: apt-config.8.xml:53
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 "
@@ -3028,7 +3066,7 @@ msgstr ""
"modo simile a:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-config.8.xml:59
+#: apt-config.8.xml:61
#, no-wrap
msgid ""
"OPTS=\"-f\"\n"
@@ -3040,7 +3078,7 @@ msgstr ""
"eval $RES\n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:64
+#: apt-config.8.xml:66
msgid ""
"This will set the shell environment variable $OPTS to the value of MyApp::"
"options with a default of <option>-f</option>."
@@ -3050,7 +3088,7 @@ msgstr ""
"option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:68
+#: apt-config.8.xml:70
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 "
@@ -3061,12 +3099,12 @@ msgstr ""
"un intero. Ogni valore restituito è normalizzato e verificato internamente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:77
+#: apt-config.8.xml:79
msgid "Just show the contents of the configuration space."
msgstr "Mostra soltanto i contenuti dello spazio di configurazione."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:90
+#: apt-config.8.xml:92
msgid ""
"Include options which have an empty value. This is the default, so use --no-"
"empty to remove them from the output."
@@ -3075,12 +3113,12 @@ msgstr ""
"predefinito, perciò usare --no-empty per rimuoverle dall'output."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-config.8.xml:95
+#: apt-config.8.xml:97
msgid "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
msgstr "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:96
+#: apt-config.8.xml:98
msgid ""
"Defines the output of each config option. &percnt;t will be replaced with "
"its individual name, &percnt;f with its full hierarchical name and &percnt;v "
@@ -3099,13 +3137,13 @@ msgstr ""
"&percnt;. "
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:110 apt-extracttemplates.1.xml:71 apt-sortpkgs.1.xml:64
-#: apt-ftparchive.1.xml:608
+#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66
+#: apt-ftparchive.1.xml:610
msgid "&apt-conf;"
msgstr "&apt-conf;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:115
+#: apt-config.8.xml:117
msgid ""
"<command>apt-config</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -3114,27 +3152,27 @@ msgstr ""
"normale e il valore decimale 100 in caso di errore."
#. type: Content of: <refentry><refentryinfo><author><contrib>
-#: apt.conf.5.xml:20
+#: apt.conf.5.xml:22
msgid "Initial documentation of Debug::*."
msgstr "Documentazione iniziale di Debug::*."
#. type: Content of: <refentry><refentryinfo><author><email>
-#: apt.conf.5.xml:21
+#: apt.conf.5.xml:23
msgid "dburrows@debian.org"
msgstr "dburrows@debian.org"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt.conf.5.xml:31 apt_preferences.5.xml:25 sources.list.5.xml:26
+#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28
msgid "5"
msgstr "5"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt.conf.5.xml:38
+#: apt.conf.5.xml:40
msgid "Configuration file for APT"
msgstr "file di configurazione di APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:42
+#: apt.conf.5.xml:44
msgid ""
"<filename>/etc/apt/apt.conf</filename> is the main configuration file shared "
"by all the tools in the APT suite of tools, though it is by no means the "
@@ -3148,7 +3186,7 @@ msgstr ""
"ambiente uniforme."
#. type: Content of: <refentry><refsect1><orderedlist><para>
-#: apt.conf.5.xml:48
+#: apt.conf.5.xml:50
msgid ""
"When an APT tool starts up it will read the configuration files in the "
"following order:"
@@ -3157,7 +3195,7 @@ msgstr ""
"seguente ordine:"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:50
+#: apt.conf.5.xml:52
msgid ""
"the file specified by the <envar>APT_CONFIG</envar> environment variable (if "
"any)"
@@ -3166,7 +3204,7 @@ msgstr ""
"presente)"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:52
+#: apt.conf.5.xml:54
msgid ""
"all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
"order which have either no or \"<literal>conf</literal>\" as filename "
@@ -3186,7 +3224,7 @@ msgstr ""
"silenziosamente."
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:59
+#: apt.conf.5.xml:61
msgid ""
"the main configuration file specified by <literal>Dir::Etc::main</literal>"
msgstr ""
@@ -3194,7 +3232,7 @@ msgstr ""
"literal>"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:61
+#: apt.conf.5.xml:63
msgid ""
"the command line options are applied to override the configuration "
"directives or to load even more configuration files."
@@ -3203,12 +3241,12 @@ msgstr ""
"di configurazione o per caricare ulteriori file di configurazione."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:65
+#: apt.conf.5.xml:67
msgid "Syntax"
msgstr "Sintassi"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:66
+#: apt.conf.5.xml:68
msgid ""
"The configuration file is organized in a tree with options organized into "
"functional groups. Option specification is given with a double colon "
@@ -3223,7 +3261,7 @@ msgstr ""
"Le opzioni non ereditano dai gruppi genitori."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:72
+#: apt.conf.5.xml:74
msgid ""
"Syntactically the configuration language is modeled after what the ISC tools "
"such as bind and dhcp use. Lines starting with <literal>//</literal> are "
@@ -3248,7 +3286,7 @@ msgstr ""
"parentesi graffe come in:"
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:85
+#: apt.conf.5.xml:87
#, no-wrap
msgid ""
"APT {\n"
@@ -3266,7 +3304,7 @@ msgstr ""
"};\n"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:93
+#: apt.conf.5.xml:95
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 "
@@ -3278,13 +3316,13 @@ msgstr ""
"voci, separate da un punto e virgola."
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:98
+#: apt.conf.5.xml:100
#, 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:101
+#: apt.conf.5.xml:103
msgid ""
"In general the sample configuration file &configureindex; is a good guide "
"for how it should look."
@@ -3293,7 +3331,7 @@ msgstr ""
"buona guida su come debba essere un file di configurazione."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:104
+#: apt.conf.5.xml:106
msgid ""
"Case is not significant in names of configuration items, so in the previous "
"example you could use <literal>dpkg::pre-install-pkgs</literal>."
@@ -3303,7 +3341,7 @@ msgstr ""
"<literal>dpkg::pre-install-pkgs</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:107
+#: apt.conf.5.xml:109
msgid ""
"Names for the configuration items are optional if a list is defined as can "
"be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If "
@@ -3318,7 +3356,7 @@ msgstr ""
"sovrascrivere l'opzione come per ogni altra, assegnandole un nuovo valore."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:112
+#: apt.conf.5.xml:114
msgid ""
"Two special commands are defined: <literal>#include</literal> (which is "
"deprecated and not supported by alternative implementations) and "
@@ -3338,7 +3376,7 @@ msgstr ""
"queste righe devono terminare con un punto e virgola.)"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:122
+#: apt.conf.5.xml:124
msgid ""
"The <literal>#clear</literal> command is the only way to delete a list or a "
"complete scope. Reopening a scope (or using the syntax described below with "
@@ -3354,7 +3392,7 @@ msgstr ""
"ambiti non possono essere sovrascritti, solo cancellati."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:130
+#: apt.conf.5.xml:132
msgid ""
"All of the APT tools take an -o option which allows an arbitrary "
"configuration directive to be specified on the command line. The syntax is a "
@@ -3374,7 +3412,7 @@ msgstr ""
"di comando.)"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:138
+#: apt.conf.5.xml:140
msgid ""
"Note that appending items to a list using <literal>::</literal> only works "
"for one item per line, and that you should not use it in combination with "
@@ -3404,12 +3442,12 @@ msgstr ""
"ora, quando APT ancora non si lamenta esplicitamente."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:153
+#: apt.conf.5.xml:155
msgid "The APT Group"
msgstr "Il gruppo APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:154
+#: apt.conf.5.xml:156
msgid ""
"This group of options controls general APT behavior as well as holding the "
"options for all of the tools."
@@ -3418,7 +3456,7 @@ msgstr ""
"contenere le opzioni per tutti gli strumenti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:159
+#: apt.conf.5.xml:161
msgid ""
"System Architecture; sets the architecture to use when fetching files and "
"parsing package lists. The internal default is the architecture apt was "
@@ -3429,7 +3467,7 @@ msgstr ""
"predefinito interno è l'architettura per la quale apt è stato compilato."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:166
+#: apt.conf.5.xml:168
msgid ""
"All Architectures the system supports. For instance, CPUs implementing the "
"<literal>amd64</literal> (also called <literal>x86-64</literal>) "
@@ -3451,7 +3489,7 @@ msgstr ""
"quando sono registrate con <command>dpkg --add-architecture</command>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:179
+#: apt.conf.5.xml:181
msgid ""
"Default release to install packages from if more than one version is "
"available. Contains release name, codename or release version. Examples: "
@@ -3465,7 +3503,7 @@ msgstr ""
"preferences;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:185
+#: apt.conf.5.xml:187
msgid ""
"Ignore held packages; this global option causes the problem resolver to "
"ignore held packages in its decision making."
@@ -3474,7 +3512,7 @@ msgstr ""
"di problemi ignori i pacchetti bloccati nel suo processo decisionale."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:190
+#: apt.conf.5.xml:192
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 "
@@ -3488,7 +3526,7 @@ msgstr ""
"reinstallarli."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:198
+#: apt.conf.5.xml:200
msgid ""
"Defaults to on, which will cause APT to install essential and important "
"packages as soon as possible in an install/upgrade operation, in order to "
@@ -3515,7 +3553,7 @@ msgstr ""
"che dipende da A, dato che la dipendenza da A non è più soddisfatta."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:210
+#: apt.conf.5.xml:212
msgid ""
"The immediate configuration marker is also applied in the potentially "
"problematic case of circular dependencies, since a dependency with the "
@@ -3545,7 +3583,7 @@ msgstr ""
"l'unico problema che può aiutare a prevenire."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:223
+#: apt.conf.5.xml:225
msgid ""
"Before a big operation like <literal>dist-upgrade</literal> is run with this "
"option disabled you should try to explicitly <literal>install</literal> the "
@@ -3563,7 +3601,7 @@ msgstr ""
"il processo di aggiornamento."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:234
+#: apt.conf.5.xml:236
msgid ""
"Never enable this option unless you <emphasis>really</emphasis> know what "
"you are doing. It permits APT to temporarily remove an essential package to "
@@ -3584,7 +3622,7 @@ msgstr ""
"<command>dash</command> o qualsiasi altro da cui dipendono tali pacchetti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:246
+#: apt.conf.5.xml:248
msgid ""
"APT uses since version 0.7.26 a resizable memory mapped cache file to store "
"the available information. <literal>Cache-Start</literal> acts as a hint of "
@@ -3622,14 +3660,14 @@ msgstr ""
"della cache è disabilitata."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:262
+#: apt.conf.5.xml:264
msgid "Defines which packages are considered essential build dependencies."
msgstr ""
"Definisce quali pacchetti sono considerati dipendenze di compilazione "
"essenziali."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:266
+#: apt.conf.5.xml:268
msgid ""
"The Get subsection controls the &apt-get; tool; please see its documentation "
"for more information about the options here."
@@ -3638,7 +3676,7 @@ msgstr ""
"documentazione per maggiori informazioni su queste opzioni."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:271
+#: apt.conf.5.xml:273
msgid ""
"The Cache subsection controls the &apt-cache; tool; please see its "
"documentation for more information about the options here."
@@ -3647,7 +3685,7 @@ msgstr ""
"documentazione per maggiori informazioni su queste opzioni."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:276
+#: apt.conf.5.xml:278
msgid ""
"The CDROM subsection controls the &apt-cdrom; tool; please see its "
"documentation for more information about the options here."
@@ -3656,12 +3694,12 @@ msgstr ""
"documentazione per maggiori informazioni su queste opzioni."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:282
+#: apt.conf.5.xml:284
msgid "The Acquire Group"
msgstr "Il gruppo Acquire"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:283
+#: apt.conf.5.xml:285
msgid ""
"The <literal>Acquire</literal> group of options controls the download of "
"packages as well as the various \"acquire methods\" responsible for the "
@@ -3672,7 +3710,7 @@ msgstr ""
"scaricamento stesso (vedere anche &sources-list;)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:290
+#: apt.conf.5.xml:292
msgid ""
"Security related option defaulting to true, as giving a Release file's "
"validation an expiration date prevents replay attacks over a long timescale, "
@@ -3694,7 +3732,7 @@ msgstr ""
"ValidTime</literal> seguente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:303
+#: apt.conf.5.xml:305
msgid ""
"Maximum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3714,7 +3752,7 @@ msgstr ""
"dell'archivio in fondo al nome dell'opzione."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:315
+#: apt.conf.5.xml:317
msgid ""
"Minimum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3734,7 +3772,7 @@ msgstr ""
"archivio aggiungendo l'etichetta dell'archivio in fondo al nome dell'opzione."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:327
+#: apt.conf.5.xml:329
msgid ""
"Try to download deltas called <literal>PDiffs</literal> for indexes (like "
"<filename>Packages</filename> files) instead of downloading whole ones. True "
@@ -3745,7 +3783,7 @@ msgstr ""
"interamente i nuovi. Attiva in modo predefinito."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:330
+#: apt.conf.5.xml:332
msgid ""
"Two sub-options to limit the use of PDiffs are also available: "
"<literal>FileLimit</literal> can be used to specify a maximum number of "
@@ -3763,7 +3801,7 @@ msgstr ""
"completo invece delle patch."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:340
+#: apt.conf.5.xml:342
msgid ""
"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
"literal> or <literal>access</literal> which determines how APT parallelizes "
@@ -3778,7 +3816,7 @@ msgstr ""
"literal> significa che viene aperta una connessione per ogni tipo di URI."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:348
+#: apt.conf.5.xml:350
msgid ""
"Number of retries to perform. If this is non-zero APT will retry failed "
"files the given number of times."
@@ -3788,7 +3826,7 @@ msgstr ""
"ha avuto successo."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:353
+#: apt.conf.5.xml:355
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."
@@ -3799,7 +3837,7 @@ msgstr ""
"vero."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:358
+#: apt.conf.5.xml:360
msgid ""
"<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. "
"It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</"
@@ -3818,7 +3856,7 @@ msgstr ""
"la variabile d'ambiente <envar>http_proxy</envar>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:366
+#: apt.conf.5.xml:368
msgid ""
"Three settings are provided for cache control with HTTP/1.1 compliant proxy "
"caches. <literal>No-Cache</literal> tells the proxy not to use its cached "
@@ -3838,7 +3876,7 @@ msgstr ""
"file .deb."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:376 apt.conf.5.xml:448
+#: apt.conf.5.xml:378 apt.conf.5.xml:466
msgid ""
"The option <literal>timeout</literal> sets the timeout timer used by the "
"method; this value applies to the connection as well as the data timeout."
@@ -3848,7 +3886,7 @@ msgstr ""
"quello per i dati."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:379
+#: apt.conf.5.xml:381
msgid ""
"The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to "
"enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e."
@@ -3868,7 +3906,7 @@ msgstr ""
"con la specifica HTTP/1.1."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:386
+#: apt.conf.5.xml:388
msgid ""
"<literal>Acquire::http::AllowRedirect</literal> controls whether APT will "
"follow redirects, which is enabled by default."
@@ -3877,13 +3915,20 @@ msgstr ""
"meno le ridirezioni che sono abilitate in modo predefinito."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:389
+#: apt.conf.5.xml:391
+#, fuzzy
+#| msgid ""
+#| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
+#| "literal> which accepts integer values in kilobytes. The default value is "
+#| "0 which deactivates the limit and tries to use all available bandwidth "
+#| "(note that this option implicitly disables downloading from multiple "
+#| "servers at the same time.)"
msgid ""
"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
-"literal> which accepts integer values in kilobytes. The default value is 0 "
-"which deactivates the limit and tries to use all available bandwidth (note "
-"that this option implicitly disables downloading from multiple servers at "
-"the same time.)"
+"literal> which accepts integer values in kilobytes per second. The default "
+"value is 0 which deactivates the limit and tries to use all available "
+"bandwidth. Note that this option implicitly disables downloading from "
+"multiple servers at the same time."
msgstr ""
"La quantità di banda utilizzata può essere limitata con <literal>Acquire::"
"http::Dl-Limit</literal> che accetta valori interi in kilobyte. Il valore "
@@ -3892,7 +3937,7 @@ msgstr ""
"scaricamento da più server contemporaneamente)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:394
+#: apt.conf.5.xml:398
msgid ""
"<literal>Acquire::http::User-Agent</literal> can be used to set a different "
"User-Agent for the http download method as some proxies allow access for "
@@ -3906,6 +3951,20 @@ msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
#: apt.conf.5.xml:402
msgid ""
+"<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify "
+"an external command to discover the http proxy to use. Apt expects the "
+"command to output the proxy on stdout in the style <literal>http://proxy:"
+"port/</literal>. This will override the generic <literal>Acquire::http::"
+"Proxy</literal> but not any specific host proxy configuration set via "
+"<literal>Acquire::http::Proxy::$HOST</literal>. See the &squid-deb-proxy-"
+"client; package for an example implementation that uses avahi. This option "
+"takes precedence over the legacy option name <literal>ProxyAutoDetect</"
+"literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:420
+msgid ""
"The <literal>Cache-control</literal>, <literal>Timeout</literal>, "
"<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and "
"<literal>proxy</literal> options work for HTTPS URIs in the same way as for "
@@ -3921,7 +3980,7 @@ msgstr ""
"<literal>Pipeline-Depth</literal> non è ancora supportata."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:410
+#: apt.conf.5.xml:428
msgid ""
"<literal>CaInfo</literal> suboption specifies place of file that holds info "
"about trusted certificates. <literal>&lt;host&gt;::CaInfo</literal> is the "
@@ -3962,7 +4021,7 @@ msgstr ""
"literal> è la corrispondente opzione specifica per ciascun host."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:431
+#: apt.conf.5.xml:449
msgid ""
"<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. "
"It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</"
@@ -3996,7 +4055,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:451
+#: apt.conf.5.xml:469
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, "
@@ -4012,7 +4071,7 @@ msgstr ""
"uno specifico host (vedere il file di configurazione d'esempio)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:458
+#: apt.conf.5.xml:476
msgid ""
"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
"envar> environment variable to an HTTP URL - see the discussion of the http "
@@ -4026,7 +4085,7 @@ msgstr ""
"a causa della sua bassa efficienza."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:463
+#: apt.conf.5.xml:481
msgid ""
"The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@ -4042,13 +4101,13 @@ msgstr ""
"parte dei server FTP non supporta la RFC 2428."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:477
+#: apt.conf.5.xml:495
#, no-wrap
msgid "/cdrom/::Mount \"foo\";"
msgstr "/cdrom/::Mount \"pippo\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:472
+#: apt.conf.5.xml:490
msgid ""
"For URIs using the <literal>cdrom</literal> method, the only configurable "
"option is the mount point, <literal>cdrom::Mount</literal>, which must be "
@@ -4070,7 +4129,7 @@ msgstr ""
"comandi per lo smontaggio possono essere specificati usando UMount."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:485
+#: apt.conf.5.xml:503
msgid ""
"For GPGV URIs the only configurable option is <literal>gpgv::Options</"
"literal>, which passes additional parameters to gpgv."
@@ -4079,13 +4138,13 @@ msgstr ""
"literal>, che passa parametri aggiuntivi a gpgv."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:496
+#: apt.conf.5.xml:514
#, no-wrap
msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
msgstr "Acquire::CompressionTypes::<replaceable>EstensioneFile</replaceable> \"<replaceable>NomeMetodo</replaceable>\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:491
+#: apt.conf.5.xml:509
msgid ""
"List of compression types which are understood by the acquire methods. "
"Files like <filename>Packages</filename> can be available in various "
@@ -4104,19 +4163,19 @@ msgstr ""
"metodo usato. La sintassi è: <placeholder type=\"synopsis\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:501
+#: apt.conf.5.xml:519
#, no-wrap
msgid "Acquire::CompressionTypes::Order:: \"gz\";"
msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:504
+#: apt.conf.5.xml:522
#, no-wrap
msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:497
+#: apt.conf.5.xml:515
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 "
@@ -4147,13 +4206,13 @@ msgstr ""
"all'elenco, dato che verrà aggiunto automaticamente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:511
+#: apt.conf.5.xml:529
#, no-wrap
msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:506
+#: apt.conf.5.xml:524
msgid ""
"Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></"
"literal> will be checked at run time. If this option has been set, the "
@@ -4179,7 +4238,7 @@ msgstr ""
"definito; aggiunge solamente il tipo indicato all'inizio dell'elenco."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:516
+#: apt.conf.5.xml:534
msgid ""
"The special type <literal>uncompressed</literal> can be used to give "
"uncompressed files a preference, but note that most archives don't provide "
@@ -4191,7 +4250,7 @@ msgstr ""
"soprattutto per i mirror locali."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:523
+#: apt.conf.5.xml:541
msgid ""
"When downloading <literal>gzip</literal> compressed indexes (Packages, "
"Sources, or Translations), keep them gzip compressed locally instead of "
@@ -4205,7 +4264,7 @@ msgstr ""
"modo predefinito è disabilitato."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:531
+#: apt.conf.5.xml:549
msgid ""
"The Languages subsection controls which <filename>Translation</filename> "
"files are downloaded and in which order APT tries to display the description-"
@@ -4224,13 +4283,13 @@ msgstr ""
"codici di lingua lunghi sono particolarmente rari."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting>
-#: apt.conf.5.xml:548
+#: apt.conf.5.xml:566
#, no-wrap
msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
msgstr "Acquire::Languages { \"environment\"; \"it\"; \"en\"; \"none\"; \"fr\"; };"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:536
+#: apt.conf.5.xml:554
msgid ""
"The default list includes \"environment\" and \"en\". "
"\"<literal>environment</literal>\" has a special meaning here: it will be "
@@ -4269,7 +4328,7 @@ msgstr ""
"<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:549
+#: apt.conf.5.xml:567
msgid ""
"Note: To prevent problems resulting from APT being executed in different "
"environments (e.g. by different users or by other programs) all Translation "
@@ -4283,22 +4342,22 @@ msgstr ""
"implicito)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:558
+#: apt.conf.5.xml:576
msgid "When downloading, force to use only the IPv4 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:564
+#: apt.conf.5.xml:582
msgid "When downloading, force to use only the IPv6 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:571
+#: apt.conf.5.xml:589
msgid "Directories"
msgstr "Directory"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:573
+#: apt.conf.5.xml:591
msgid ""
"The <literal>Dir::State</literal> section has directories that pertain to "
"local state information. <literal>lists</literal> is the directory to place "
@@ -4318,7 +4377,7 @@ msgstr ""
"<filename>/</filename> o <filename>./</filename>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:580
+#: apt.conf.5.xml:598
msgid ""
"<literal>Dir::Cache</literal> contains locations pertaining to local cache "
"information, such as the two package caches <literal>srcpkgcache</literal> "
@@ -4340,7 +4399,7 @@ msgstr ""
"la directory predefinita è contenuta in <literal>Dir::Cache</literal>"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:589
+#: apt.conf.5.xml:607
msgid ""
"<literal>Dir::Etc</literal> contains the location of configuration files, "
"<literal>sourcelist</literal> gives the location of the sourcelist and "
@@ -4355,7 +4414,7 @@ msgstr ""
"configurazione specificato da <envar>APT_CONFIG</envar>)."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:595
+#: apt.conf.5.xml:613
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 "
@@ -4366,7 +4425,7 @@ msgstr ""
"termine viene caricato il file di configurazione principale."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:599
+#: apt.conf.5.xml:617
msgid ""
"Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
"Bin::Methods</literal> specifies the location of the method handlers and "
@@ -4383,7 +4442,7 @@ msgstr ""
"specificano la posizione dei rispettivi programmi."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:607
+#: apt.conf.5.xml:625
msgid ""
"The configuration item <literal>RootDir</literal> has a special meaning. If "
"set, all paths in <literal>Dir::</literal> will be relative to "
@@ -4404,7 +4463,7 @@ msgstr ""
"staging/var/lib/dpkg/status</filename>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:620
+#: apt.conf.5.xml:638
msgid ""
"The <literal>Ignore-Files-Silently</literal> list can be used to specify "
"which files APT should silently ignore while parsing the files in the "
@@ -4422,12 +4481,12 @@ msgstr ""
"questi modelli possono usare una sintassi con espressioni regolari."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:629
+#: apt.conf.5.xml:647
msgid "APT in DSelect"
msgstr "APT in DSelect"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:631
+#: apt.conf.5.xml:649
msgid ""
"When APT is used as a &dselect; method several configuration directives "
"control the default behavior. These are in the <literal>DSelect</literal> "
@@ -4438,7 +4497,7 @@ msgstr ""
"sezione <literal>DSelect</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:636
+#: apt.conf.5.xml:654
msgid ""
"Cache Clean mode; this value may be one of <literal>always</literal>, "
"<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</"
@@ -4460,7 +4519,7 @@ msgstr ""
"scaricare i nuovi pacchetti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:650
+#: apt.conf.5.xml:668
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the install phase."
@@ -4470,7 +4529,7 @@ msgstr ""
"installazione."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:655
+#: apt.conf.5.xml:673
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the update phase."
@@ -4480,7 +4539,7 @@ msgstr ""
"aggiornamento."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:660
+#: apt.conf.5.xml:678
msgid ""
"If true the [U]pdate operation in &dselect; will always prompt to continue. "
"The default is to prompt only on error."
@@ -4490,12 +4549,12 @@ msgstr ""
"solo in caso di errore."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:666
+#: apt.conf.5.xml:684
msgid "How APT calls &dpkg;"
msgstr "Come APT invoca &dpkg;"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:667
+#: apt.conf.5.xml:685
msgid ""
"Several configuration directives control how APT invokes &dpkg;. These are "
"in the <literal>DPkg</literal> section."
@@ -4504,7 +4563,7 @@ msgstr ""
"&dpkg;; sono nella sezione <literal>DPkg</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:672
+#: apt.conf.5.xml:690
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 "
@@ -4515,7 +4574,7 @@ msgstr ""
"passata a &dpkg; come un singolo argomento."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:678
+#: apt.conf.5.xml:696
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 "
@@ -4528,13 +4587,21 @@ msgstr ""
"bin/sh</filename>; se qualcuno dei comandi fallisce APT terminerà annullando."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:685
+#: apt.conf.5.xml:703
+#, fuzzy
+#| msgid ""
+#| "This is a list of shell commands to run before invoking &dpkg;. Like "
+#| "<literal>options</literal> this must be specified in list notation. The "
+#| "commands are invoked in order using <filename>/bin/sh</filename>; should "
+#| "any fail APT will abort. APT will pass the filenames of all .deb files it "
+#| "is going to install to the commands, one per line on standard input."
msgid ""
"This is a list of shell commands to run before invoking &dpkg;. Like "
"<literal>options</literal> this must be specified in list notation. The "
"commands are invoked in order using <filename>/bin/sh</filename>; should any "
"fail APT will abort. APT will pass the filenames of all .deb files it is "
-"going to install to the commands, one per line on standard input."
+"going to install to the commands, one per line on the requested file "
+"descriptor, defaulting to standard input."
msgstr ""
"Questa è una lista di comandi di shell da eseguire prima di invocare &dpkg;. "
"Come <literal>options</literal> deve essere specificata con la notazione per "
@@ -4544,13 +4611,19 @@ msgstr ""
"uno per riga, sullo standard input."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:691
+#: apt.conf.5.xml:710
+#, fuzzy
+#| msgid ""
+#| "Version 2 of this protocol dumps more information, including the protocol "
+#| "version, the APT configuration space and the packages, files and versions "
+#| "being changed. Version 2 is enabled by setting <literal>DPkg::Tools::"
+#| "options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command "
+#| "given to <literal>Pre-Install-Pkgs</literal>."
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 3 adds the architecture and <literal>MultiArch</"
+"literal> flag to each version being dumped."
msgstr ""
"La versione 2 di questo protocollo fa il dump di più informazioni, inclusi "
"la versione del protocollo, lo spazio di configurazione di APT, e i "
@@ -4560,7 +4633,29 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:699
+#: apt.conf.5.xml:715
+msgid ""
+"The version of the protocol to be used for the command "
+"<literal><replaceable>cmd</replaceable></literal> can be chosen by setting "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::Version</"
+"literal> accordingly, the default being version 1. If APT isn't supporting "
+"the requested version it will send the information in the highest version it "
+"has support for instead."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:722
+msgid ""
+"The file descriptor to be used to send the information can be requested with "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</"
+"literal> which defaults to <literal>0</literal> for standard input and is "
+"available since version 0.9.11. Support for the option can be detected by "
+"looking for the environment variable <envar>APT_HOOK_INFO_FD</envar> which "
+"contains the number of the used file descriptor as a confirmation."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:732
msgid ""
"APT chdirs to this directory before invoking &dpkg;, the default is "
"<filename>/</filename>."
@@ -4569,7 +4664,7 @@ msgstr ""
"valore predefinito è <filename>/</filename>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:704
+#: apt.conf.5.xml:737
msgid ""
"These options are passed to &dpkg-buildpackage; when compiling packages; the "
"default is to disable signing and produce all binaries."
@@ -4579,12 +4674,12 @@ msgstr ""
"binari."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt.conf.5.xml:709
+#: apt.conf.5.xml:742
msgid "dpkg trigger usage (and related options)"
msgstr "Uso dei trigger di dpkg (e relative opzioni)"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:710
+#: apt.conf.5.xml:743
msgid ""
"APT can call &dpkg; in such a way as to let it make aggressive use of "
"triggers over multiple calls of &dpkg;. Without further options &dpkg; will "
@@ -4612,7 +4707,7 @@ msgstr ""
"pacchetti."
#. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
-#: apt.conf.5.xml:725
+#: apt.conf.5.xml:758
#, no-wrap
msgid ""
"DPkg::NoTriggers \"true\";\n"
@@ -4626,7 +4721,7 @@ msgstr ""
"DPkg::TriggersPending \"true\";"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:719
+#: apt.conf.5.xml:752
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 "
@@ -4650,7 +4745,7 @@ msgstr ""
"\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:732
+#: apt.conf.5.xml:765
msgid ""
"Add the no triggers flag to all &dpkg; calls (except the ConfigurePending "
"call). See &dpkg; if you are interested in what this actually means. In "
@@ -4672,7 +4767,7 @@ msgstr ""
"questa opzione anche alle chiamate per lo spacchettamento e la rimozione."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:740
+#: apt.conf.5.xml:773
msgid ""
"Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
"and \"<literal>no</literal>\". The default value is \"<literal>all</literal>"
@@ -4702,7 +4797,7 @@ msgstr ""
"potrebbe finire in uno stato non configurato e potenzialmente non avviabile."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:755
+#: apt.conf.5.xml:788
msgid ""
"If this option is set APT will call <command>dpkg --configure --pending</"
"command> to let &dpkg; handle all required configurations and triggers. This "
@@ -4720,7 +4815,7 @@ msgstr ""
"si può disattivare questa opzione in tutte le esecuzioni tranne l'ultima."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:762
+#: apt.conf.5.xml:795
msgid ""
"Useful for the <literal>smart</literal> configuration as a package which has "
"pending triggers is not considered as <literal>installed</literal>, and "
@@ -4736,7 +4831,7 @@ msgstr ""
"necessari per configurare il pacchetto in questione."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:775
+#: apt.conf.5.xml:808
#, no-wrap
msgid ""
"OrderList::Score {\n"
@@ -4754,7 +4849,7 @@ msgstr ""
"};"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:768
+#: apt.conf.5.xml:801
msgid ""
"Essential packages (and their dependencies) should be configured immediately "
"after unpacking. It is a good idea to do this quite early in the upgrade "
@@ -4779,12 +4874,12 @@ msgstr ""
"con i loro valori predefiniti. <placeholder type=\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:788
+#: apt.conf.5.xml:821
msgid "Periodic and Archives options"
msgstr "Opzioni Periodic e Archives"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:789
+#: apt.conf.5.xml:822
msgid ""
"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
"of options configure behavior of apt periodic updates, which is done by the "
@@ -4798,12 +4893,12 @@ msgstr ""
"all'inizio dello script."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:797
+#: apt.conf.5.xml:830
msgid "Debug options"
msgstr "Opzioni di debug"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:799
+#: apt.conf.5.xml:832
msgid ""
"Enabling options in the <literal>Debug::</literal> section will cause "
"debugging information to be sent to the standard error stream of the program "
@@ -4821,7 +4916,7 @@ msgstr ""
"esserlo:"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:810
+#: apt.conf.5.xml:843
msgid ""
"<literal>Debug::pkgProblemResolver</literal> enables output about the "
"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@ -4832,7 +4927,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:818
+#: apt.conf.5.xml:851
msgid ""
"<literal>Debug::NoLocking</literal> disables all file locking. This can be "
"used to run some operations (for instance, <literal>apt-get -s install</"
@@ -4843,7 +4938,7 @@ msgstr ""
"install</literal>) come utente non root."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:827
+#: apt.conf.5.xml:860
msgid ""
"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
"time that <literal>apt</literal> invokes &dpkg;."
@@ -4855,7 +4950,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:835
+#: apt.conf.5.xml:868
msgid ""
"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
"in CD-ROM IDs."
@@ -4864,37 +4959,37 @@ msgstr ""
"negli ID dei CD-ROM."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:845
+#: apt.conf.5.xml:878
msgid "A full list of debugging options to apt follows."
msgstr "Segue un elenco completo delle opzioni di debug per apt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:854
+#: apt.conf.5.xml:887
msgid ""
"Print information related to accessing <literal>cdrom://</literal> sources."
msgstr ""
"Stampa informazioni relative all'accesso a fonti <literal>cdrom://</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:865
+#: apt.conf.5.xml:898
msgid "Print information related to downloading packages using FTP."
msgstr ""
"Stampa informazioni relative allo scaricamento dei pacchetti usando FTP."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:876
+#: apt.conf.5.xml:909
msgid "Print information related to downloading packages using HTTP."
msgstr ""
"Stampa informazioni relative allo scaricamento dei pacchetti usando HTTP."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:887
+#: apt.conf.5.xml:920
msgid "Print information related to downloading packages using HTTPS."
msgstr ""
"Stampa informazioni relative allo scaricamento dei pacchetti usando HTTPS."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:898
+#: apt.conf.5.xml:931
msgid ""
"Print information related to verifying cryptographic signatures using "
"<literal>gpg</literal>."
@@ -4903,7 +4998,7 @@ msgstr ""
"usando <literal>gpg</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:909
+#: apt.conf.5.xml:942
msgid ""
"Output information about the process of accessing collections of packages "
"stored on CD-ROMs."
@@ -4912,14 +5007,14 @@ msgstr ""
"pacchetti memorizzati su CD-ROM."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:919
+#: apt.conf.5.xml:952
msgid "Describes the process of resolving build-dependencies in &apt-get;."
msgstr ""
"Descrive il processo di risoluzione delle dipendenze di compilazione in &apt-"
"get;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:929
+#: apt.conf.5.xml:962
msgid ""
"Output each cryptographic hash that is generated by the <literal>apt</"
"literal> libraries."
@@ -4928,7 +5023,7 @@ msgstr ""
"<literal>apt</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:939
+#: apt.conf.5.xml:972
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 "
@@ -4939,7 +5034,7 @@ msgstr ""
"system del CD-ROM."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:950
+#: apt.conf.5.xml:983
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."
@@ -4949,14 +5044,14 @@ msgstr ""
"contemporaneamente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:962
+#: apt.conf.5.xml:995
msgid "Log when items are added to or removed from the global download queue."
msgstr ""
"Registra nel log quando vengono aggiunte o rimosse voci dalla coda globale "
"degli scaricamenti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:972
+#: apt.conf.5.xml:1005
msgid ""
"Output status messages and errors related to verifying checksums and "
"cryptographic signatures of downloaded files."
@@ -4965,7 +5060,7 @@ msgstr ""
"codici di controllo e delle firme di cifratura dei file scaricati."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:982
+#: apt.conf.5.xml:1015
msgid ""
"Output information about downloading and applying package index list diffs, "
"and errors relating to package index list diffs."
@@ -4975,7 +5070,7 @@ msgstr ""
"diff."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:994
+#: apt.conf.5.xml:1027
msgid ""
"Output information related to patching apt package lists when downloading "
"index diffs instead of full indices."
@@ -4985,7 +5080,7 @@ msgstr ""
"invece degli indici completi."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1005
+#: apt.conf.5.xml:1038
msgid ""
"Log all interactions with the sub-processes that actually perform downloads."
msgstr ""
@@ -4993,7 +5088,7 @@ msgstr ""
"realmente gli scaricamenti."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1016
+#: apt.conf.5.xml:1049
msgid ""
"Log events related to the automatically-installed status of packages and to "
"the removal of unused packages."
@@ -5002,7 +5097,7 @@ msgstr ""
"installato dei pacchetti e alla rimozione dei pacchetti non utilizzati."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1026
+#: apt.conf.5.xml:1059
msgid ""
"Generate debug messages describing which packages are being automatically "
"installed to resolve dependencies. This corresponds to the initial auto-"
@@ -5018,7 +5113,7 @@ msgstr ""
"pkgProblemResolver</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1040
+#: apt.conf.5.xml:1073
msgid ""
"Generate debug messages describing which packages are marked as keep/install/"
"remove while the ProblemResolver does his work. Each addition or deletion "
@@ -5050,7 +5145,7 @@ msgstr ""
"sezione in cui compare il pacchetto."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1061
+#: apt.conf.5.xml:1094
msgid ""
"When invoking &dpkg;, output the precise command line with which it is being "
"invoked, with arguments separated by a single space character."
@@ -5059,7 +5154,7 @@ msgstr ""
"gli argomenti separati da un singolo carattere di spazio."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1072
+#: apt.conf.5.xml:1105
msgid ""
"Output all the data received from &dpkg; on the status file descriptor and "
"any errors encountered while parsing it."
@@ -5068,7 +5163,7 @@ msgstr ""
"di stato ed ogni errore incontrato durante la sua analisi."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1083
+#: apt.conf.5.xml:1116
msgid ""
"Generate a trace of the algorithm that decides the order in which "
"<literal>apt</literal> should pass packages to &dpkg;."
@@ -5077,7 +5172,7 @@ msgstr ""
"literal> deve passare i pacchetti a &dpkg;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1095
+#: apt.conf.5.xml:1128
msgid ""
"Output status messages tracing the steps performed when invoking &dpkg;."
msgstr ""
@@ -5085,12 +5180,12 @@ msgstr ""
"nell'invocazione di &dpkg;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1106
+#: apt.conf.5.xml:1139
msgid "Output the priority of each package list on startup."
msgstr "Produce in output la priorità di ogni elenco di pacchetti all'avvio."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1116
+#: apt.conf.5.xml:1149
msgid ""
"Trace the execution of the dependency resolver (this applies only to what "
"happens when a complex dependency problem is encountered)."
@@ -5100,7 +5195,7 @@ msgstr ""
"dipendenze)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1127
+#: apt.conf.5.xml:1160
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 "
@@ -5111,7 +5206,7 @@ msgstr ""
"la stessa descritta in <literal>Debug::pkgDepCache::Marker</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1139
+#: apt.conf.5.xml:1172
msgid ""
"Print information about the vendors read from <filename>/etc/apt/vendors."
"list</filename>."
@@ -5120,13 +5215,13 @@ msgstr ""
"filename>."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:1161 apt_preferences.5.xml:545 sources.list.5.xml:211
-#: apt-ftparchive.1.xml:596
+#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:217
+#: apt-ftparchive.1.xml:598
msgid "Examples"
msgstr "Esempi"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1162
+#: apt.conf.5.xml:1195
msgid ""
"&configureindex; is a configuration file showing example values for all "
"possible options."
@@ -5136,17 +5231,17 @@ msgstr ""
#. ? reading apt.conf
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1174
+#: apt.conf.5.xml:1207
msgid "&apt-cache;, &apt-config;, &apt-preferences;."
msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt_preferences.5.xml:32
+#: apt_preferences.5.xml:34
msgid "Preference control file for APT"
msgstr "file di controllo delle preferenze per APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:37
+#: apt_preferences.5.xml:39
msgid ""
"The APT preferences file <filename>/etc/apt/preferences</filename> and the "
"fragment files in the <filename>/etc/apt/preferences.d/</filename> folder "
@@ -5159,7 +5254,7 @@ msgstr ""
"selezionata per l'installazione."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:42
+#: apt_preferences.5.xml:44
msgid ""
"Several versions of a package may be available for installation when the "
"&sources-list; file contains references to more than one distribution (for "
@@ -5182,7 +5277,7 @@ msgstr ""
"l'installazione."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:52
+#: apt_preferences.5.xml:54
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 "
@@ -5197,7 +5292,7 @@ msgstr ""
"effetto sulla scelta dell'istanza, ma solo sulla scelta della versione."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:59
+#: apt_preferences.5.xml:61
msgid ""
"Preferences are a strong power in the hands of a system administrator but "
"they can become also their biggest nightmare if used without care! APT will "
@@ -5222,7 +5317,7 @@ msgstr ""
"avvertiti."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:70
+#: apt_preferences.5.xml:72
msgid ""
"Note that the files in the <filename>/etc/apt/preferences.d</filename> "
"directory are parsed in alphanumeric ascending order and need to obey the "
@@ -5244,24 +5339,24 @@ msgstr ""
"viene ignorato in modo silenzioso."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:79
+#: apt_preferences.5.xml:81
msgid "APT's Default Priority Assignments"
msgstr "Assegnazioni della priorità predefinite di APT"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:94
+#: apt_preferences.5.xml:96
#, no-wrap
msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n"
msgstr "<command>apt-get install -t testing <replaceable>un-pacchetto</replaceable></command>\n"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:97
+#: apt_preferences.5.xml:99
#, 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:81
+#: apt_preferences.5.xml:83
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 "
@@ -5289,7 +5384,7 @@ msgstr ""
"\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:101
+#: apt_preferences.5.xml:103
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:"
@@ -5298,12 +5393,12 @@ msgstr ""
"algoritmo per impostare le priorità delle versioni di un pacchetto. Assegna:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:106
+#: apt_preferences.5.xml:108
msgid "priority 1"
msgstr "priorità 1"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:107
+#: apt_preferences.5.xml:109
msgid ""
"to the versions coming from archives which in their <filename>Release</"
"filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</"
@@ -5316,12 +5411,12 @@ msgstr ""
"<literal>experimental</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:113
+#: apt_preferences.5.xml:115
msgid "priority 100"
msgstr "priorità 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:114
+#: apt_preferences.5.xml:116
msgid ""
"to the version that is already installed (if any) and to the versions coming "
"from archives which in their <filename>Release</filename> files are marked "
@@ -5335,12 +5430,12 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:121
+#: apt_preferences.5.xml:123
msgid "priority 500"
msgstr "priorità 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:122
+#: apt_preferences.5.xml:124
msgid ""
"to the versions that are not installed and do not belong to the target "
"release."
@@ -5349,19 +5444,19 @@ msgstr ""
"obiettivo."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:126
+#: apt_preferences.5.xml:128
msgid "priority 990"
msgstr "priorità 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:127
+#: apt_preferences.5.xml:129
msgid ""
"to the versions that are not installed and belong to the target release."
msgstr ""
"alle versioni che non sono installate e appartengono al rilascio obiettivo."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:132
+#: apt_preferences.5.xml:134
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 "
@@ -5379,7 +5474,7 @@ msgstr ""
"contrassegnate come «ButAutomaticUpgrades: yes»."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:139
+#: apt_preferences.5.xml:141
msgid ""
"APT then applies the following rules, listed in order of precedence, to "
"determine which version of a package to install."
@@ -5388,7 +5483,7 @@ msgstr ""
"seguenti regole, elencate in ordine di precedenza."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:142
+#: apt_preferences.5.xml:144
msgid ""
"Never downgrade unless the priority of an available version exceeds 1000. "
"(\"Downgrading\" is installing a less recent version of a package in place "
@@ -5405,12 +5500,12 @@ msgstr ""
"rischioso.)"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:148
+#: apt_preferences.5.xml:150
msgid "Install the highest priority version."
msgstr "Installa la versione con la priorità più alta."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:149
+#: apt_preferences.5.xml:151
msgid ""
"If two or more versions have the same priority, install the most recent one "
"(that is, the one with the higher version number)."
@@ -5419,7 +5514,7 @@ msgstr ""
"recente (cioè quella con il numero di versione più alto)."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:152
+#: apt_preferences.5.xml:154
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</"
@@ -5431,7 +5526,7 @@ msgstr ""
"non installata."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:158
+#: apt_preferences.5.xml:160
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 "
@@ -5447,7 +5542,7 @@ msgstr ""
"upgrade</command>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:165
+#: apt_preferences.5.xml:167
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 "
@@ -5461,7 +5556,7 @@ msgstr ""
"upgrade</command>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:170
+#: apt_preferences.5.xml:172
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 "
@@ -5480,12 +5575,12 @@ msgstr ""
"priorità più alta di quella installata."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:179
+#: apt_preferences.5.xml:181
msgid "The Effect of APT Preferences"
msgstr "L'effetto delle preferenze di APT"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:181
+#: apt_preferences.5.xml:183
msgid ""
"The APT preferences file allows the system administrator to control the "
"assignment of priorities. The file consists of one or more multi-line "
@@ -5498,7 +5593,7 @@ msgstr ""
"due forme: una forma specifica e una forma generica."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:187
+#: apt_preferences.5.xml:189
msgid ""
"The specific form assigns a priority (a \"Pin-Priority\") to one or more "
"specified packages with a specified version or version range. For example, "
@@ -5515,7 +5610,7 @@ msgstr ""
"spazi."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:194
+#: apt_preferences.5.xml:196
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5527,7 +5622,7 @@ msgstr ""
"Pin-Priority: 1001\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:200
+#: apt_preferences.5.xml:202
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 "
@@ -5542,7 +5637,7 @@ msgstr ""
"identificato in base al suo nome di dominio pienamente qualificato."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:206
+#: apt_preferences.5.xml:208
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 "
@@ -5553,7 +5648,7 @@ msgstr ""
"priorità alta a tutte le versioni di pacchetto disponibili dal sito locale."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:211
+#: apt_preferences.5.xml:213
#, no-wrap
msgid ""
"Package: *\n"
@@ -5565,7 +5660,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:216
+#: apt_preferences.5.xml:218
msgid ""
"A note of caution: the keyword used here is \"<literal>origin</literal>\" "
"which can be used to match a hostname. The following record will assign a "
@@ -5578,7 +5673,7 @@ msgstr ""
"identificato dal nome host «ftp.de.debian.org»"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:220
+#: apt_preferences.5.xml:222
#, no-wrap
msgid ""
"Package: *\n"
@@ -5590,7 +5685,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:224
+#: apt_preferences.5.xml:226
msgid ""
"This should <emphasis>not</emphasis> be confused with the Origin of a "
"distribution as specified in a <filename>Release</filename> file. What "
@@ -5605,7 +5700,7 @@ msgstr ""
"«Ximian»."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:229
+#: apt_preferences.5.xml:231
msgid ""
"The following record assigns a low priority to all package versions "
"belonging to any distribution whose Archive name is \"<literal>unstable</"
@@ -5616,7 +5711,7 @@ msgstr ""
"archivio è «<literal>unstable</literal>»."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:233
+#: apt_preferences.5.xml:235
#, no-wrap
msgid ""
"Package: *\n"
@@ -5628,7 +5723,7 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:238
+#: apt_preferences.5.xml:240
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any distribution whose Codename is \"<literal>&testing-codename;"
@@ -5639,7 +5734,7 @@ msgstr ""
"codice è «<literal>&testing-codename;</literal>»."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:242
+#: apt_preferences.5.xml:244
#, no-wrap
msgid ""
"Package: *\n"
@@ -5651,7 +5746,7 @@ msgstr ""
"Pin-Priority: 900\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:247
+#: apt_preferences.5.xml:249
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any release whose Archive name is \"<literal>stable</literal>\" "
@@ -5663,7 +5758,7 @@ msgstr ""
"«<literal>&stable-version;</literal>»."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:252
+#: apt_preferences.5.xml:254
#, no-wrap
msgid ""
"Package: *\n"
@@ -5676,12 +5771,12 @@ msgstr ""
# &glob; è rimpiazzato da "glob(7)"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:262
+#: apt_preferences.5.xml:264
msgid "Regular expressions and &glob; syntax"
msgstr "Sintassi per le espressioni regolari e &glob;"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:264
+#: apt_preferences.5.xml:266
msgid ""
"APT also supports pinning by &glob; expressions, and regular expressions "
"surrounded by slashes. For example, the following example assigns the "
@@ -5697,7 +5792,7 @@ msgstr ""
"POSIX racchiusa tra sbarre)."
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:273
+#: apt_preferences.5.xml:275
#, no-wrap
msgid ""
"Package: gnome* /kde/\n"
@@ -5709,7 +5804,7 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:279
+#: apt_preferences.5.xml:281
msgid ""
"The rule for those expressions is that they can occur anywhere where a "
"string can occur. Thus, the following pin assigns the priority 990 to all "
@@ -5720,7 +5815,7 @@ msgstr ""
"provenienti da un rilascio il cui nome inizia con &ubuntu-codename;."
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:285
+#: apt_preferences.5.xml:287
#, no-wrap
msgid ""
"Package: *\n"
@@ -5732,7 +5827,7 @@ msgstr ""
"Pin-Priority: 990\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:291
+#: apt_preferences.5.xml:293
msgid ""
"If a regular expression occurs in a <literal>Package</literal> field, the "
"behavior is the same as if this regular expression were replaced with a list "
@@ -5751,12 +5846,12 @@ msgstr ""
"non viene considerato come un'espressione &glob;."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:307
+#: apt_preferences.5.xml:309
msgid "How APT Interprets Priorities"
msgstr "Come APT interpreta le priorità"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:310
+#: apt_preferences.5.xml:312
msgid ""
"Priorities (P) assigned in the APT preferences file must be positive or "
"negative integers. They are interpreted as follows (roughly speaking):"
@@ -5766,12 +5861,12 @@ msgstr ""
"seguente (semplificando le cose):"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:315
+#: apt_preferences.5.xml:317
msgid "P &gt;= 1000"
msgstr "P &gt;= 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:316
+#: apt_preferences.5.xml:318
msgid ""
"causes a version to be installed even if this constitutes a downgrade of the "
"package"
@@ -5780,12 +5875,12 @@ msgstr ""
"retrocessione del pacchetto"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:320
+#: apt_preferences.5.xml:322
msgid "990 &lt;= P &lt; 1000"
msgstr "990 &lt;= P &lt; 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:321
+#: apt_preferences.5.xml:323
msgid ""
"causes a version to be installed even if it does not come from the target "
"release, unless the installed version is more recent"
@@ -5794,12 +5889,12 @@ msgstr ""
"obiettivo, a meno che la versione installata non sia più recente"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:326
+#: apt_preferences.5.xml:328
msgid "500 &lt;= P &lt; 990"
msgstr "500 &lt;= P &lt; 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:327
+#: apt_preferences.5.xml:329
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"
@@ -5809,12 +5904,12 @@ msgstr ""
"sia più recente"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:332
+#: apt_preferences.5.xml:334
msgid "100 &lt;= P &lt; 500"
msgstr "100 &lt;= P &lt; 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:333
+#: apt_preferences.5.xml:335
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"
@@ -5824,12 +5919,12 @@ msgstr ""
"installata non sia più recente"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:338
+#: apt_preferences.5.xml:340
msgid "0 &lt; P &lt; 100"
msgstr "0 &lt; P &lt; 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:339
+#: apt_preferences.5.xml:341
msgid ""
"causes a version to be installed only if there is no installed version of "
"the package"
@@ -5838,17 +5933,17 @@ msgstr ""
"è installata"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:343
+#: apt_preferences.5.xml:345
msgid "P &lt; 0"
msgstr "P &lt; 0"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:344
+#: apt_preferences.5.xml:346
msgid "prevents the version from being installed"
msgstr "impedisce l'installazione della versione"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:349
+#: apt_preferences.5.xml:351
msgid ""
"If any specific-form records match an available package version then the "
"first such record determines the priority of the package version. Failing "
@@ -5863,7 +5958,7 @@ msgstr ""
"versione del pacchetto."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:355
+#: apt_preferences.5.xml:357
msgid ""
"For example, suppose the APT preferences file contains the three records "
"presented earlier:"
@@ -5872,7 +5967,7 @@ msgstr ""
"record descritti in precedenza:"
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:359
+#: apt_preferences.5.xml:361
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5900,12 +5995,12 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:372
+#: apt_preferences.5.xml:374
msgid "Then:"
msgstr "Allora:"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:374
+#: apt_preferences.5.xml:376
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 "
@@ -5920,7 +6015,7 @@ msgstr ""
"installata è &bad-perl;*, allora <literal>perl</literal> verrà retrocesso."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:379
+#: apt_preferences.5.xml:381
msgid ""
"A version of any package other than <literal>perl</literal> that is "
"available from the local system has priority over other versions, even "
@@ -5931,7 +6026,7 @@ msgstr ""
"versioni, incluse quelle che appartengono al rilascio obiettivo."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:383
+#: apt_preferences.5.xml:385
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</"
@@ -5945,13 +6040,13 @@ msgstr ""
"installata."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:393
+#: apt_preferences.5.xml:395
msgid "Determination of Package Version and Distribution Properties"
msgstr ""
"Determinazione delle proprietà di versione del pacchetto e di distribuzione"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:395
+#: apt_preferences.5.xml:397
msgid ""
"The locations listed in the &sources-list; file should provide "
"<filename>Packages</filename> and <filename>Release</filename> files to "
@@ -5962,7 +6057,7 @@ msgstr ""
"i pacchetti disponibili in quelle posizioni."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:399
+#: apt_preferences.5.xml:401
msgid ""
"The <filename>Packages</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable>/"
@@ -5981,27 +6076,27 @@ msgstr ""
"righe sono rilevanti per l'impostazione delle priorità di APT:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:407
+#: apt_preferences.5.xml:409
msgid "the <literal>Package:</literal> line"
msgstr "la riga <literal>Package:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:408
+#: apt_preferences.5.xml:410
msgid "gives the package name"
msgstr "indica il nome del pacchetto"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:411 apt_preferences.5.xml:461
+#: apt_preferences.5.xml:413 apt_preferences.5.xml:463
msgid "the <literal>Version:</literal> line"
msgstr "la riga <literal>Version:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:412
+#: apt_preferences.5.xml:414
msgid "gives the version number for the named package"
msgstr "indica il numero di versione per il pacchetto indicato"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:417
+#: apt_preferences.5.xml:419
msgid ""
"The <filename>Release</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
@@ -6023,12 +6118,12 @@ msgstr ""
"priorità di APT:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:428
+#: apt_preferences.5.xml:430
msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
msgstr "la riga <literal>Archive:</literal> o <literal>Suite:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:429
+#: apt_preferences.5.xml:431
msgid ""
"names the archive to which all the packages in the directory tree belong. "
"For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@ -6045,18 +6140,18 @@ msgstr ""
"preferenze di APT si deve usare la riga:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:439
+#: apt_preferences.5.xml:441
#, 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:445
+#: apt_preferences.5.xml:447
msgid "the <literal>Codename:</literal> line"
msgstr "la riga <literal>Codename:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:446
+#: apt_preferences.5.xml:448
msgid ""
"names the codename to which all the packages in the directory tree belong. "
"For example, the line \"Codename: &testing-codename;\" specifies that all of "
@@ -6073,13 +6168,13 @@ msgstr ""
"valore nelle preferenze di APT si deve usare la riga:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:455
+#: apt_preferences.5.xml:457
#, no-wrap
msgid "Pin: release n=&testing-codename;\n"
msgstr "Pin: release n=&testing-codename;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:462
+#: apt_preferences.5.xml:464
msgid ""
"names the release version. For example, the packages in the tree might "
"belong to Debian release version &stable-version;. Note that there is "
@@ -6096,7 +6191,7 @@ msgstr ""
"APT si deve usare una delle seguenti righe:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:471
+#: apt_preferences.5.xml:473
#, no-wrap
msgid ""
"Pin: release v=&stable-version;\n"
@@ -6108,12 +6203,12 @@ msgstr ""
"Pin: release &stable-version;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:480
+#: apt_preferences.5.xml:482
msgid "the <literal>Component:</literal> line"
msgstr "la riga<literal>Component:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:481
+#: apt_preferences.5.xml:483
msgid ""
"names the licensing component associated with the packages in the directory "
"tree of the <filename>Release</filename> file. For example, the line "
@@ -6131,18 +6226,18 @@ msgstr ""
"usare la riga:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:490
+#: apt_preferences.5.xml:492
#, 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:496
+#: apt_preferences.5.xml:498
msgid "the <literal>Origin:</literal> line"
msgstr "la riga <literal>Origin:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:497
+#: apt_preferences.5.xml:499
msgid ""
"names the originator of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -6154,18 +6249,18 @@ msgstr ""
"specificare questa origine nelle preferenze di APT si deve usare la riga:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:503
+#: apt_preferences.5.xml:505
#, 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:509
+#: apt_preferences.5.xml:511
msgid "the <literal>Label:</literal> line"
msgstr "la riga <literal>Label:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:510
+#: apt_preferences.5.xml:512
msgid ""
"names the label of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -6177,13 +6272,13 @@ msgstr ""
"specificare questa etichetta nelle preferenze di APT si deve usare la riga:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:516
+#: apt_preferences.5.xml:518
#, 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:523
+#: apt_preferences.5.xml:525
msgid ""
"All of the <filename>Packages</filename> and <filename>Release</filename> "
"files retrieved from locations listed in the &sources-list; file are stored "
@@ -6208,12 +6303,12 @@ msgstr ""
"<literal>unstable</literal>."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:536
+#: apt_preferences.5.xml:538
msgid "Optional Lines in an APT Preferences Record"
msgstr "Righe opzionali in un record delle preferenze di APT"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:538
+#: apt_preferences.5.xml:540
msgid ""
"Each record in the APT preferences file can optionally begin with one or "
"more lines beginning with the word <literal>Explanation:</literal>. This "
@@ -6224,12 +6319,12 @@ msgstr ""
"literal>. Ciò fornisce un posto dove mettere commenti."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:547
+#: apt_preferences.5.xml:549
msgid "Tracking Stable"
msgstr "Seguire Stable in modo continuativo"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:555
+#: apt_preferences.5.xml:557
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated\n"
@@ -6254,7 +6349,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:549
+#: apt_preferences.5.xml:551
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 "
@@ -6270,8 +6365,8 @@ msgstr ""
"\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:572 apt_preferences.5.xml:618
-#: apt_preferences.5.xml:676
+#: apt_preferences.5.xml:574 apt_preferences.5.xml:620
+#: apt_preferences.5.xml:678
#, no-wrap
msgid ""
"apt-get install <replaceable>package-name</replaceable>\n"
@@ -6283,7 +6378,7 @@ msgstr ""
"apt-get dist-upgrade\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:567
+#: apt_preferences.5.xml:569
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 "
@@ -6296,13 +6391,13 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:584
+#: apt_preferences.5.xml:586
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/testing\n"
msgstr "apt-get install <replaceable>pacchetto</replaceable>/testing\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:578
+#: apt_preferences.5.xml:580
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>testing</literal> distribution; the package "
@@ -6315,12 +6410,12 @@ msgstr ""
"nuovamente questo comando. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:590
+#: apt_preferences.5.xml:592
msgid "Tracking Testing or Unstable"
msgstr "Seguire Testing o Unstable in modo continuativo"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:599
+#: apt_preferences.5.xml:601
#, no-wrap
msgid ""
"Package: *\n"
@@ -6348,7 +6443,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:592
+#: apt_preferences.5.xml:594
msgid ""
"The following APT preferences file will cause APT to assign a high priority "
"to package versions from the <literal>testing</literal> distribution, a "
@@ -6365,7 +6460,7 @@ msgstr ""
"literal>. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:613
+#: apt_preferences.5.xml:615
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 "
@@ -6378,13 +6473,13 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:633
+#: apt_preferences.5.xml:635
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
msgstr "apt-get install <replaceable>pacchetto</replaceable>/unstable\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:624
+#: apt_preferences.5.xml:626
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>unstable</literal> distribution. "
@@ -6403,12 +6498,12 @@ msgstr ""
"<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:640
+#: apt_preferences.5.xml:642
msgid "Tracking the evolution of a codename release"
msgstr "Seguire l'evoluzione di un rilascio in base al nome in codice"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:654
+#: apt_preferences.5.xml:656
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@ -6443,7 +6538,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:642
+#: apt_preferences.5.xml:644
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 "
@@ -6470,7 +6565,7 @@ msgstr ""
"id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:671
+#: apt_preferences.5.xml:673
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 "
@@ -6483,13 +6578,13 @@ msgstr ""
"codename;</literal>. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:691
+#: apt_preferences.5.xml:693
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/sid\n"
msgstr "apt-get install <replaceable>pacchetto</replaceable>/sid\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:682
+#: apt_preferences.5.xml:684
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>sid</literal> distribution. Thereafter, "
@@ -6508,17 +6603,17 @@ msgstr ""
"type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:706
+#: apt_preferences.5.xml:708
msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: sources.list.5.xml:33
+#: sources.list.5.xml:35
msgid "List of configured APT data sources"
msgstr "elenco delle fonti di dati configurate per APT"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:38
+#: sources.list.5.xml:40
msgid ""
"The source list <filename>/etc/apt/sources.list</filename> is designed to "
"support any number of active sources and a variety of source media. The file "
@@ -6535,7 +6630,7 @@ msgstr ""
"interfaccia per APT)."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:45
+#: sources.list.5.xml:47
msgid ""
"Each line specifying a source starts with type (e.g. <literal>deb-src</"
"literal>) followed by options and arguments for this type. Individual "
@@ -6550,12 +6645,12 @@ msgstr ""
"punto di una riga contrassegna come commento la parte rimanente della riga."
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:53
+#: sources.list.5.xml:55
msgid "sources.list.d"
msgstr "sources.list.d"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:54
+#: sources.list.5.xml:56
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 "
@@ -6577,12 +6672,12 @@ msgstr ""
"caso viene ignorato in modo silenzioso."
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:65
+#: sources.list.5.xml:67
msgid "The deb and deb-src types"
msgstr "I tipi deb e deb-src"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:66
+#: sources.list.5.xml:68
msgid ""
"The <literal>deb</literal> type references a typical two-level Debian "
"archive, <filename>distribution/component</filename>. The "
@@ -6608,7 +6703,7 @@ msgstr ""
"riga <literal>deb-src</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:78
+#: sources.list.5.xml:80
msgid ""
"The format for a <filename>sources.list</filename> entry using the "
"<literal>deb</literal> and <literal>deb-src</literal> types is:"
@@ -6617,13 +6712,13 @@ msgstr ""
"<literal>deb</literal> o <literal>deb-src</literal> è:"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:81
+#: sources.list.5.xml:83
#, no-wrap
msgid "deb [ options ] uri distribution [component1] [component2] [...]"
msgstr "deb [ opzioni ] uri distribuzione [componente1] [componente2] [...]"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:83
+#: sources.list.5.xml:85
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. "
@@ -6645,7 +6740,7 @@ msgstr ""
"<literal>componente</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:92
+#: sources.list.5.xml:94
msgid ""
"<literal>distribution</literal> may also contain a variable, <literal>"
"$(ARCH)</literal> which expands to the Debian architecture (such as "
@@ -6664,7 +6759,7 @@ msgstr ""
"automaticamente un URI con l'architettura corrente."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:100
+#: sources.list.5.xml:102
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 "
@@ -6691,7 +6786,7 @@ msgstr ""
"larghezza di banda."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:112
+#: sources.list.5.xml:114
msgid ""
"<literal>options</literal> is always optional and needs to be surrounded by "
"square brackets. It can consist of multiple settings in the form "
@@ -6708,7 +6803,7 @@ msgstr ""
"supportate verranno ignorate in modo silenzioso):"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:117
+#: sources.list.5.xml:120
msgid ""
"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
"replaceable>,…</literal> can be used to specify for which architectures "
@@ -6723,7 +6818,28 @@ msgstr ""
"Architectures</literal>."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:121
+#: sources.list.5.xml:124
+#, fuzzy
+#| msgid ""
+#| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+#| "replaceable>,…</literal> can be used to specify for which architectures "
+#| "information should be downloaded. If this option is not set all "
+#| "architectures defined by the <literal>APT::Architectures</literal> option "
+#| "will be downloaded."
+msgid ""
+"<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>,"
+"<replaceable>arch2</replaceable>,…</literal> which can be used to add/remove "
+"architectures from the set which will be downloaded."
+msgstr ""
+"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> può essere usato per specificare le architetture "
+"per le quali scaricare le informazioni. Se questa opzione non è impostata "
+"verranno scaricate tutte le architetture definite dall'opzione <literal>APT::"
+"Architectures</literal>."
+
+#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
+#: sources.list.5.xml:127
msgid ""
"<literal>trusted=yes</literal> can be set to indicate that packages from "
"this source are always authenticated even if the <filename>Release</"
@@ -6740,7 +6856,7 @@ msgstr ""
"tratta anche le fonti correttamente autenticate come non autenticate."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:128
+#: sources.list.5.xml:134
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 "
@@ -6753,12 +6869,12 @@ msgstr ""
"in una rete locale, seguiti da host Internet distanti)."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:133
+#: sources.list.5.xml:139
msgid "Some examples:"
msgstr "Alcuni esempi:"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:135
+#: sources.list.5.xml:141
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@ -6770,17 +6886,17 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:141
+#: sources.list.5.xml:147
msgid "URI specification"
msgstr "Specificare URI"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:143
+#: sources.list.5.xml:149
msgid "The currently recognized URI types are:"
msgstr "I tipi di URI attualmente riconosciuti sono:"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:147
+#: sources.list.5.xml:153
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 "
@@ -6791,7 +6907,7 @@ msgstr ""
"archivi locali."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:154
+#: sources.list.5.xml:160
msgid ""
"The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. "
"Use the &apt-cdrom; program to create cdrom entries in the source list."
@@ -6801,7 +6917,7 @@ msgstr ""
"delle fonti."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:161
+#: sources.list.5.xml:167
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:"
@@ -6818,7 +6934,7 @@ msgstr ""
"è un metodo di autenticazione non sicuro."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:172
+#: sources.list.5.xml:178
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. "
@@ -6838,7 +6954,7 @@ msgstr ""
"HTTP specificati nel file di configurazione verranno ignorati."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:184
+#: sources.list.5.xml:190
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. "
@@ -6851,7 +6967,7 @@ msgstr ""
"rimovibili, per copiare i file nelle varie posizioni con APT."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:191
+#: sources.list.5.xml:197
msgid ""
"The rsh/ssh method invokes RSH/SSH to connect to a remote host and access "
"the files as a given user. Prior configuration of rhosts or RSA keys is "
@@ -6865,12 +6981,12 @@ msgstr ""
"command> e <command>dd</command>."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
-#: sources.list.5.xml:198
+#: sources.list.5.xml:204
msgid "adding more recognizable URI types"
msgstr "aggiungere ulteriori tipi di URI riconoscibili"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:200
+#: sources.list.5.xml:206
msgid ""
"APT can be extended with more methods shipped in other optional packages, "
"which should follow the naming scheme <package>apt-transport-"
@@ -6889,7 +7005,7 @@ msgstr ""
"debtorrrent; vedere &apt-transport-debtorrent;."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:212
+#: sources.list.5.xml:218
msgid ""
"Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
"stable/main, stable/contrib, and stable/non-free."
@@ -6898,37 +7014,37 @@ msgstr ""
"debian per stable/main, stable/contrib e stable/non-free."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:214
+#: sources.list.5.xml:220
#, no-wrap
msgid "deb file:/home/jason/debian stable main contrib non-free"
msgstr "deb file:/home/gianni/debian stable main contrib non-free"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:216
+#: sources.list.5.xml:222
msgid "As above, except this uses the unstable (development) distribution."
msgstr ""
"Come sopra, tranne per il fatto che usa la distribuzione unstable (di "
"sviluppo)"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:217
+#: sources.list.5.xml:223
#, no-wrap
msgid "deb file:/home/jason/debian unstable main contrib non-free"
msgstr "deb file:/home/gianni/debian unstable main contrib non-free"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:219
+#: sources.list.5.xml:225
msgid "Source line for the above"
msgstr "Riga per i sorgenti corrispondente alla precedente"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:220
+#: sources.list.5.xml:226
#, no-wrap
msgid "deb-src file:/home/jason/debian unstable main contrib non-free"
msgstr "deb-src file:/home/gianni/debian unstable main contrib non-free"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:222
+#: sources.list.5.xml:228
msgid ""
"The first line gets package information for the architectures in "
"<literal>APT::Architectures</literal> while the second always retrieves "
@@ -6939,7 +7055,7 @@ msgstr ""
"<literal>amd64</literal> e <literal>armel</literal>."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:224
+#: sources.list.5.xml:230
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main\n"
@@ -6949,7 +7065,7 @@ msgstr ""
"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:227
+#: sources.list.5.xml:233
msgid ""
"Uses HTTP to access the archive at archive.debian.org, and uses only the "
"hamm/main area."
@@ -6958,13 +7074,13 @@ msgstr ""
"hamm/main."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:229
+#: sources.list.5.xml:235
#, 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:231
+#: sources.list.5.xml:237
msgid ""
"Uses FTP to access the archive at ftp.debian.org, under the debian "
"directory, and uses only the &stable-codename;/contrib area."
@@ -6973,13 +7089,13 @@ msgstr ""
"e usa solo l'area &stable-codename;/contrib."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:233
+#: sources.list.5.xml:239
#, no-wrap
msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:235
+#: sources.list.5.xml:241
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 "
@@ -6992,19 +7108,19 @@ msgstr ""
"usata una sola sessione FTP per entrambe le righe."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:239
+#: sources.list.5.xml:245
#, 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><literallayout>
-#: sources.list.5.xml:248
+#: sources.list.5.xml:254
#, no-wrap
msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:241
+#: sources.list.5.xml:247
msgid ""
"Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
"directory, and uses only files found under <filename>unstable/binary-i386</"
@@ -7023,17 +7139,17 @@ msgstr ""
"modo.] <placeholder type=\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:253
+#: sources.list.5.xml:259
msgid "&apt-cache; &apt-conf;"
msgstr "&apt-cache; &apt-conf;"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-extracttemplates.1.xml:26 apt-sortpkgs.1.xml:26 apt-ftparchive.1.xml:26
+#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28
msgid "1"
msgstr "1"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-extracttemplates.1.xml:33
+#: apt-extracttemplates.1.xml:35
msgid ""
"Utility to extract <command>debconf</command> config and templates from "
"Debian packages"
@@ -7042,7 +7158,7 @@ msgstr ""
"pacchetti Debian"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:39
+#: apt-extracttemplates.1.xml:41
msgid ""
"<command>apt-extracttemplates</command> will take one or more Debian package "
"files as input and write out (to a temporary directory) all associated "
@@ -7057,12 +7173,12 @@ msgstr ""
"output nel formato:"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:44
+#: apt-extracttemplates.1.xml:46
msgid "package version template-file config-script"
msgstr "pacchetto versione file-template script-di-configurazione"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:45
+#: apt-extracttemplates.1.xml:47
msgid ""
"template-file and config-script are written to the temporary directory "
"specified by the <option>-t</option> or <option>--tempdir</option> "
@@ -7077,7 +7193,7 @@ msgstr ""
"<filename>pacchetto.config.XXXX</filename>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-extracttemplates.1.xml:58
+#: apt-extracttemplates.1.xml:60
msgid ""
"Temporary directory in which to write extracted <command>debconf</command> "
"template files and config scripts. Configuration Item: <literal>APT::"
@@ -7088,7 +7204,7 @@ msgstr ""
"<literal>APT::ExtractTemplates::TempDir</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:75
+#: apt-extracttemplates.1.xml:77
msgid ""
"<command>apt-extracttemplates</command> returns zero on normal operation, "
"decimal 100 on error."
@@ -7097,12 +7213,12 @@ msgstr ""
"funzionamento normale e il valore decimale 100 in caso di errore."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-sortpkgs.1.xml:33
+#: apt-sortpkgs.1.xml:35
msgid "Utility to sort package index files"
msgstr "utilità per ordinare i file indice dei pacchetti"
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:39
+#: apt-sortpkgs.1.xml:41
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 "
@@ -7114,7 +7230,7 @@ msgstr ""
"i campi interni ad ogni record in base alle regole di ordinamento interne."
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:45
+#: apt-sortpkgs.1.xml:47
msgid ""
"All output is sent to standard output; the input must be a seekable file."
msgstr ""
@@ -7122,7 +7238,7 @@ msgstr ""
"file leggibile con seek."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-sortpkgs.1.xml:54
+#: apt-sortpkgs.1.xml:56
msgid ""
"Use source index field ordering. Configuration Item: <literal>APT::"
"SortPkgs::Source</literal>."
@@ -7131,7 +7247,7 @@ msgstr ""
"configurazione: <literal>APT::SortPkgs::Source</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:68
+#: apt-sortpkgs.1.xml:70
msgid ""
"<command>apt-sortpkgs</command> returns zero on normal operation, decimal "
"100 on error."
@@ -7140,12 +7256,12 @@ msgstr ""
"normale e il valore decimale 100 in caso di errore."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-ftparchive.1.xml:33
+#: apt-ftparchive.1.xml:35
msgid "Utility to generate index files"
msgstr "strumento per generare file indice"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:39
+#: apt-ftparchive.1.xml:41
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 "
@@ -7158,7 +7274,7 @@ msgstr ""
"di tale sito."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:43
+#: apt-ftparchive.1.xml:45
msgid ""
"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; "
"program, incorporating its entire functionality via the <literal>packages</"
@@ -7173,7 +7289,7 @@ msgstr ""
"tramite script il processo di generazione per un archivio completo."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:49
+#: apt-ftparchive.1.xml:51
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 "
@@ -7188,7 +7304,7 @@ msgstr ""
"compressi desiderati in uscita."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:60
+#: apt-ftparchive.1.xml:62
msgid ""
"The packages command generates a package file from a directory tree. It "
"takes the given directory and recursively searches it for .deb files, "
@@ -7201,7 +7317,7 @@ msgstr ""
"equivalente a &dpkg-scanpackages;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:65 apt-ftparchive.1.xml:89
+#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91
msgid ""
"The option <option>--db</option> can be used to specify a binary caching DB."
msgstr ""
@@ -7209,7 +7325,7 @@ msgstr ""
"binario da usare come cache."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:70
+#: apt-ftparchive.1.xml:72
msgid ""
"The <literal>sources</literal> command generates a source index file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -7222,7 +7338,7 @@ msgstr ""
"comando è più o meno equivalente a &dpkg-scansources;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:75
+#: apt-ftparchive.1.xml:77
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 "
@@ -7233,7 +7349,7 @@ msgstr ""
"per cambiare il file override sorgente da usare."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:82
+#: apt-ftparchive.1.xml:84
msgid ""
"The <literal>contents</literal> command generates a contents file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -7250,7 +7366,7 @@ msgstr ""
"stesso file, ciascun pacchetto è separato da una virgola nell'output."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:94
+#: apt-ftparchive.1.xml:96
msgid ""
"The <literal>release</literal> command generates a Release file from a "
"directory tree. It recursively searches the given directory for uncompressed "
@@ -7275,7 +7391,7 @@ msgstr ""
"filename> contenente per ogni file un digest MD5, SHA1 e SHA256."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:104
+#: apt-ftparchive.1.xml:106
msgid ""
"Values for the additional metadata fields in the Release file are taken from "
"the corresponding variables under <literal>APT::FTPArchive::Release</"
@@ -7296,7 +7412,7 @@ msgstr ""
"<literal>Description</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:117
+#: apt-ftparchive.1.xml:119
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 "
@@ -7312,7 +7428,7 @@ msgstr ""
"impostazioni desiderate."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:126
+#: apt-ftparchive.1.xml:128
msgid ""
"The <literal>clean</literal> command tidies the databases used by the given "
"configuration file by removing any records that are no longer necessary."
@@ -7321,12 +7437,12 @@ msgstr ""
"configurazione dato, rimuovendo tutti i record non più necessari."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:132
+#: apt-ftparchive.1.xml:134
msgid "The Generate Configuration"
msgstr "La configurazione di generate"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:134
+#: apt-ftparchive.1.xml:136
msgid ""
"The <literal>generate</literal> command uses a configuration file to "
"describe the archives that are going to be generated. It follows the typical "
@@ -7343,7 +7459,7 @@ msgstr ""
"Ciò ha effetto soltanto sulla gestione del tag di ambito."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:142
+#: apt-ftparchive.1.xml:144
msgid ""
"The generate configuration has four separate sections, each described below."
msgstr ""
@@ -7351,12 +7467,12 @@ msgstr ""
"quali è descritta in seguito."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:144
+#: apt-ftparchive.1.xml:146
msgid "<literal>Dir</literal> Section"
msgstr "Sezione <literal>Dir</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:146
+#: apt-ftparchive.1.xml:148
msgid ""
"The <literal>Dir</literal> section defines the standard directories needed "
"to locate the files required during the generation process. These "
@@ -7369,7 +7485,7 @@ msgstr ""
"sezioni successive, per produrre un percorso assoluto completo."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:153
+#: apt-ftparchive.1.xml:155
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 "
@@ -7379,17 +7495,17 @@ msgstr ""
"questa è la directory che contiene i nodi <filename>ls-LR</filename> e dist."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:160
+#: apt-ftparchive.1.xml:162
msgid "Specifies the location of the override files."
msgstr "Specifica la posizione dei file override."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:165
+#: apt-ftparchive.1.xml:167
msgid "Specifies the location of the cache files."
msgstr "Specifica la posizione dei file cache."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:170
+#: apt-ftparchive.1.xml:172
msgid ""
"Specifies the location of the file list files, if the <literal>FileList</"
"literal> setting is used below."
@@ -7398,12 +7514,12 @@ msgstr ""
"l'impostazione <literal>FileList</literal> sotto."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:176
+#: apt-ftparchive.1.xml:178
msgid "<literal>Default</literal> Section"
msgstr "Sezione <literal>Default</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:178
+#: apt-ftparchive.1.xml:180
msgid ""
"The <literal>Default</literal> section specifies default values, and "
"settings that control the operation of the generator. Other sections may "
@@ -7414,7 +7530,7 @@ msgstr ""
"possono scavalcare questi valori tramite impostazioni definite per sezione."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:184
+#: apt-ftparchive.1.xml:186
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 "
@@ -7427,7 +7543,7 @@ msgstr ""
"predefinito per tutti gli schemi di compressione è «. gzip»."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:192
+#: apt-ftparchive.1.xml:194
msgid ""
"Sets the default list of file extensions that are package files. This "
"defaults to '.deb'."
@@ -7436,7 +7552,7 @@ msgstr ""
"file dei pacchetti. Il valore predefinito è «.deb»."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:198
+#: apt-ftparchive.1.xml:200
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Sources files."
@@ -7445,7 +7561,7 @@ msgstr ""
"controlla la compressione dei file Sources."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:204
+#: apt-ftparchive.1.xml:206
msgid ""
"Sets the default list of file extensions that are source files. This "
"defaults to '.dsc'."
@@ -7454,7 +7570,7 @@ msgstr ""
"sorgenti. Il valore predefinito è «.dsc»."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:210
+#: apt-ftparchive.1.xml:212
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Contents files."
@@ -7463,7 +7579,7 @@ msgstr ""
"controlla la compressione dei file Contents."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:216
+#: apt-ftparchive.1.xml:218
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Translation-en master file."
@@ -7472,7 +7588,7 @@ msgstr ""
"controlla la compressione del file principale Translation-en."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:222
+#: apt-ftparchive.1.xml:224
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-"
@@ -7483,7 +7599,7 @@ msgstr ""
"per sezione <literal>External-Links</literal>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:229
+#: apt-ftparchive.1.xml:231
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."
@@ -7493,7 +7609,7 @@ msgstr ""
"dall'umask."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:236 apt-ftparchive.1.xml:382
+#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384
msgid ""
"Specifies whether long descriptions should be included in the "
"<filename>Packages</filename> file or split out into a master "
@@ -7504,12 +7620,12 @@ msgstr ""
"en</filename> principale."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:242
+#: apt-ftparchive.1.xml:244
msgid "<literal>TreeDefault</literal> Section"
msgstr "Sezione <literal>TreeDefault</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:244
+#: apt-ftparchive.1.xml:246
msgid ""
"Sets defaults specific to <literal>Tree</literal> sections. All of these "
"variables are substitution variables and have the strings $(DIST), "
@@ -7520,7 +7636,7 @@ msgstr ""
"$(DIST), $(SECTION) e $(ARCH) verranno sostituite dai loro rispettivi valori."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:251
+#: apt-ftparchive.1.xml:253
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 "
@@ -7531,7 +7647,7 @@ msgstr ""
"tutti nel giro di alcuni giorni."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:258
+#: apt-ftparchive.1.xml:260
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. "
@@ -7550,7 +7666,7 @@ msgstr ""
"sono espressi in giorni."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:269
+#: apt-ftparchive.1.xml:271
msgid ""
"Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/"
"$(SECTION)/binary-$(ARCH)/</filename>"
@@ -7559,7 +7675,7 @@ msgstr ""
"predefinito è <filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:275
+#: apt-ftparchive.1.xml:277
msgid ""
"Sets the top of the source package directory tree. Defaults to <filename>"
"$(DIST)/$(SECTION)/source/</filename>"
@@ -7568,7 +7684,7 @@ msgstr ""
"valore predefinito è <filename>$(DIST)/$(SECTION)/source/</filename>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:281
+#: apt-ftparchive.1.xml:283
msgid ""
"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/"
"binary-$(ARCH)/Packages</filename>"
@@ -7577,7 +7693,7 @@ msgstr ""
"$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:287
+#: apt-ftparchive.1.xml:289
msgid ""
"Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/"
"source/Sources</filename>"
@@ -7586,7 +7702,7 @@ msgstr ""
"$(SECTION)/source/Sources</filename>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:293
+#: apt-ftparchive.1.xml:295
msgid ""
"Sets the output Translation-en master file with the long descriptions if "
"they should be not included in the Packages file. Defaults to <filename>"
@@ -7597,7 +7713,7 @@ msgstr ""
"predefinito è <filename>$(DIST)/$(SECTION)/i18n/Translation-en</filename>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:300
+#: apt-ftparchive.1.xml:302
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)/</"
@@ -7608,7 +7724,7 @@ msgstr ""
"predefinito è <filename>$(DIST)/$(SECTION)/</filename>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:307
+#: apt-ftparchive.1.xml:309
msgid ""
"Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/"
"Contents-$(ARCH)</filename>. If this setting causes multiple Packages files "
@@ -7623,12 +7739,12 @@ msgstr ""
"automaticamente insieme questi file dei pacchetti."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:316
+#: apt-ftparchive.1.xml:318
msgid "Sets header file to prepend to the contents output."
msgstr "Imposta il file di intestazione da anteporre all'output dei contenuti."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:321
+#: apt-ftparchive.1.xml:323
msgid ""
"Sets the binary cache database to use for this section. Multiple sections "
"can share the same database."
@@ -7637,7 +7753,7 @@ msgstr ""
"stesso database può essere condiviso da più sezioni."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:327
+#: apt-ftparchive.1.xml:329
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -7648,7 +7764,7 @@ msgstr ""
"relativi dei file vengono fatti precedere dalla directory archivio."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:334
+#: apt-ftparchive.1.xml:336
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -7661,12 +7777,12 @@ msgstr ""
"opzione viene usata quando si elaborano gli indici dei sorgenti."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:342
+#: apt-ftparchive.1.xml:344
msgid "<literal>Tree</literal> Section"
msgstr "Sezione <literal>Tree</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:344
+#: apt-ftparchive.1.xml:346
msgid ""
"The <literal>Tree</literal> section defines a standard Debian file tree "
"which consists of a base directory, then multiple sections in that base "
@@ -7681,7 +7797,7 @@ msgstr ""
"<literal>Directory</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:349
+#: apt-ftparchive.1.xml:351
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 "
@@ -7694,7 +7810,7 @@ msgstr ""
"è un'impostazione simile a <filename>dists/&stable-codename;</filename>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:354
+#: apt-ftparchive.1.xml:356
msgid ""
"All of the settings defined in the <literal>TreeDefault</literal> section "
"can be used in a <literal>Tree</literal> section as well as three new "
@@ -7705,7 +7821,7 @@ msgstr ""
"nuove variabili."
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt-ftparchive.1.xml:360
+#: apt-ftparchive.1.xml:362
#, no-wrap
msgid ""
"for i in Sections do \n"
@@ -7719,7 +7835,7 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:357
+#: apt-ftparchive.1.xml:359
msgid ""
"When processing a <literal>Tree</literal> section <command>apt-ftparchive</"
"command> performs an operation similar to: <placeholder type=\"programlisting"
@@ -7730,7 +7846,7 @@ msgstr ""
"id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:368
+#: apt-ftparchive.1.xml:370
msgid ""
"This is a space separated list of sections which appear under the "
"distribution; typically this is something like <literal>main contrib non-"
@@ -7740,7 +7856,7 @@ msgstr ""
"da spazi; tipicamente è simile a <literal>main contrib non-free</literal>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:375
+#: apt-ftparchive.1.xml:377
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 "
@@ -7751,7 +7867,7 @@ msgstr ""
"questo albero ha un archivio sorgente."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:388
+#: apt-ftparchive.1.xml:390
msgid ""
"Sets the binary override file. The override file contains section, priority "
"and maintainer address information."
@@ -7760,7 +7876,7 @@ msgstr ""
"sulla sezione, la priorità e l'indirizzo del manutentore."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:394
+#: apt-ftparchive.1.xml:396
msgid ""
"Sets the source override file. The override file contains section "
"information."
@@ -7769,22 +7885,22 @@ msgstr ""
"sulla sezione."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:400 apt-ftparchive.1.xml:446
+#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448
msgid "Sets the binary extra override file."
msgstr "Imposta il file override binario extra."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:405 apt-ftparchive.1.xml:451
+#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453
msgid "Sets the source extra override file."
msgstr "Imposta il file override sorgente extra."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:410
+#: apt-ftparchive.1.xml:412
msgid "<literal>BinDirectory</literal> Section"
msgstr "Sezione <literal>BinDirectory</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:412
+#: apt-ftparchive.1.xml:414
msgid ""
"The <literal>bindirectory</literal> section defines a binary directory tree "
"with no special structure. The scope tag specifies the location of the "
@@ -7799,12 +7915,12 @@ msgstr ""
"impostazioni <literal>Section</literal><literal>Architecture</literal>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:420
+#: apt-ftparchive.1.xml:422
msgid "Sets the Packages file output."
msgstr "Imposta l'output del file Packages."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:425
+#: apt-ftparchive.1.xml:427
msgid ""
"Sets the Sources file output. At least one of <literal>Packages</literal> or "
"<literal>Sources</literal> is required."
@@ -7813,42 +7929,42 @@ msgstr ""
"<literal>Packages</literal> e <literal>Sources</literal>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:431
+#: apt-ftparchive.1.xml:433
msgid "Sets the Contents file output (optional)."
msgstr "Imposta l'output del file Contents (opzionale)."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:436
+#: apt-ftparchive.1.xml:438
msgid "Sets the binary override file."
msgstr "Imposta il file override binario."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:441
+#: apt-ftparchive.1.xml:443
msgid "Sets the source override file."
msgstr "Imposta il file override sorgente."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:456
+#: apt-ftparchive.1.xml:458
msgid "Sets the cache DB."
msgstr "Imposta il DB della cache."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:461
+#: apt-ftparchive.1.xml:463
msgid "Appends a path to all the output paths."
msgstr "Aggiunge un percorso a tutti i percorsi di uscita."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:466
+#: apt-ftparchive.1.xml:468
msgid "Specifies the file list file."
msgstr "Specifica il file con l'elenco dei file."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:473
+#: apt-ftparchive.1.xml:475
msgid "The Binary Override File"
msgstr "Il file override binario"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:474
+#: apt-ftparchive.1.xml:476
msgid ""
"The binary override file is fully compatible with &dpkg-scanpackages;. It "
"contains four fields separated by spaces. The first field is the package "
@@ -7863,19 +7979,19 @@ msgstr ""
"campo di permutazione del manutentore."
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:480
+#: apt-ftparchive.1.xml:482
#, no-wrap
msgid "old [// oldn]* => new"
msgstr "vecchio [// vecchio...]* => nuovo"
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:482
+#: apt-ftparchive.1.xml:484
#, no-wrap
msgid "new"
msgstr "nuovo"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:479
+#: apt-ftparchive.1.xml:481
msgid ""
"The general form of the maintainer field is: <placeholder type="
"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" "
@@ -7892,12 +8008,12 @@ msgstr ""
"seconda forma sostituisce invariabilmente il campo manutentore."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:490
+#: apt-ftparchive.1.xml:492
msgid "The Source Override File"
msgstr "Il file override sorgente"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:492
+#: apt-ftparchive.1.xml:494
msgid ""
"The source override file is fully compatible with &dpkg-scansources;. It "
"contains two fields separated by spaces. The first field is the source "
@@ -7908,12 +8024,12 @@ msgstr ""
"del pacchetto sorgente, il secondo è la sezione a cui assegnarlo."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:497
+#: apt-ftparchive.1.xml:499
msgid "The Extra Override File"
msgstr "Il file override extra"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:499
+#: apt-ftparchive.1.xml:501
msgid ""
"The extra override file allows any arbitrary tag to be added or replaced in "
"the output. It has three columns, the first is the package, the second is "
@@ -7924,7 +8040,7 @@ msgstr ""
"tag e il resto della riga è il nuovo valore."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:510
+#: apt-ftparchive.1.xml:512
msgid ""
"Generate the given checksum. These options default to on, when turned off "
"the generated index files will not have the checksum fields where possible. "
@@ -7949,7 +8065,7 @@ msgstr ""
"<literal>SHA256</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:521
+#: apt-ftparchive.1.xml:523
msgid ""
"Use a binary caching DB. This has no effect on the generate command. "
"Configuration Item: <literal>APT::FTPArchive::DB</literal>."
@@ -7958,7 +8074,7 @@ msgstr ""
"Voce di configurazione: <literal>APT::FTPArchive::DB</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:527
+#: apt-ftparchive.1.xml:529
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 "
@@ -7972,7 +8088,7 @@ msgstr ""
"configurazione. Voce di configurazione: <literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:535
+#: apt-ftparchive.1.xml:537
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 "
@@ -7986,7 +8102,7 @@ msgstr ""
"FTPArchive::DeLinkAct</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:543
+#: apt-ftparchive.1.xml:545
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 "
@@ -8002,7 +8118,7 @@ msgstr ""
"configurazione: <literal>APT::FTPArchive::Contents</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:553
+#: apt-ftparchive.1.xml:555
msgid ""
"Select the source override file to use with the <literal>sources</literal> "
"command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
@@ -8013,7 +8129,7 @@ msgstr ""
"SourceOverride</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:559
+#: apt-ftparchive.1.xml:561
msgid ""
"Make the caching databases read only. Configuration Item: <literal>APT::"
"FTPArchive::ReadOnlyDB</literal>."
@@ -8022,7 +8138,7 @@ msgstr ""
"<literal>APT::FTPArchive::ReadOnlyDB</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:564
+#: apt-ftparchive.1.xml:566
msgid ""
"Accept in the <literal>packages</literal> and <literal>contents</literal> "
"commands only package files matching <literal>*_arch.deb</literal> or "
@@ -8036,7 +8152,7 @@ msgstr ""
"Architecture</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:572
+#: apt-ftparchive.1.xml:574
msgid ""
"&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
"packages are recompiled and/or republished with the same version again, this "
@@ -8059,7 +8175,7 @@ msgstr ""
"tutti questi controlli aggiuntivi sono inutili."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:584
+#: apt-ftparchive.1.xml:586
msgid ""
"This configuration option defaults to \"<literal>true</literal>\" and should "
"only be set to <literal>\"false\"</literal> if the Archive generated with "
@@ -8075,13 +8191,13 @@ msgstr ""
"comando generate."
#. type: Content of: <refentry><refsect1><para><programlisting>
-#: apt-ftparchive.1.xml:602
+#: apt-ftparchive.1.xml:604
#, 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>
-#: apt-ftparchive.1.xml:598
+#: apt-ftparchive.1.xml:600
msgid ""
"To create a compressed Packages file for a directory containing binary "
"packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@ -8090,7 +8206,7 @@ msgstr ""
"binari (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:612
+#: apt-ftparchive.1.xml:614
msgid ""
"<command>apt-ftparchive</command> returns zero on normal operation, decimal "
"100 on error."
diff --git a/doc/po/ja.po b/doc/po/ja.po
index 7370e21d8..0f809ab85 100644
--- a/doc/po/ja.po
+++ b/doc/po/ja.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.7.25.3\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-06-13 13:46+0300\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-08-08 07:58+0900\n"
"Last-Translator: KURASAWA Nozomu <nabetaro@debian.or.jp>\n"
"Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n"
@@ -657,34 +657,34 @@ msgstr ""
"473041FA --> <!ENTITY synopsis-keyid \"キーID\">"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-get.8.xml:26 apt-cache.8.xml:26 apt-key.8.xml:25 apt-mark.8.xml:26
-#: apt-secure.8.xml:25 apt-cdrom.8.xml:25 apt-config.8.xml:26
+#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28
+#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28
msgid "8"
msgstr "8"
#. type: Content of: <refentry><refmeta><refmiscinfo>
-#: apt-get.8.xml:27 apt-cache.8.xml:27 apt-key.8.xml:26 apt-mark.8.xml:27
-#: apt-secure.8.xml:26 apt-cdrom.8.xml:26 apt-config.8.xml:27
-#: apt.conf.5.xml:32 apt_preferences.5.xml:26 sources.list.5.xml:27
-#: apt-extracttemplates.1.xml:27 apt-sortpkgs.1.xml:27 apt-ftparchive.1.xml:27
+#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29
+#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29
+#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29
+#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29
msgid "APT"
msgstr "APT"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-get.8.xml:33
+#: apt-get.8.xml:35
msgid "APT package handling utility -- command-line interface"
msgstr "APT パッケージæ“作ユーティリティ -- コマンドラインインターフェース"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:38 apt-cache.8.xml:38 apt-key.8.xml:37 apt-mark.8.xml:38
-#: apt-secure.8.xml:50 apt-cdrom.8.xml:37 apt-config.8.xml:38
-#: apt.conf.5.xml:41 apt_preferences.5.xml:36 sources.list.5.xml:36
-#: apt-extracttemplates.1.xml:38 apt-sortpkgs.1.xml:38 apt-ftparchive.1.xml:38
+#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40
+#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40
+#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38
+#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40
msgid "Description"
msgstr "説明"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:39
+#: apt-get.8.xml:41
msgid ""
"<command>apt-get</command> is the command-line tool for handling packages, "
"and may be considered the user's \"back-end\" to other tools using the APT "
@@ -697,8 +697,8 @@ msgstr ""
"&wajig; ãªã©ãŒã‚ã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:44 apt-cache.8.xml:44 apt-cdrom.8.xml:51 apt-config.8.xml:44
-#: apt-ftparchive.1.xml:54
+#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46
+#: apt-ftparchive.1.xml:56
msgid ""
"Unless the <option>-h</option>, or <option>--help</option> option is given, "
"one of the commands below must be present."
@@ -707,7 +707,7 @@ msgstr ""
"下ã«æŒ™ã’るコマンドãŒå¿…è¦ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:49
+#: apt-get.8.xml:51
msgid ""
"<literal>update</literal> is used to resynchronize the package index files "
"from their sources. The indexes of available packages are fetched from the "
@@ -729,7 +729,7 @@ msgstr ""
"ã®ã‚µã‚¤ã‚ºã‚’知るã“ã¨ãŒã§ããªã„ãŸã‚ã€å…¨ä½“ã®é€²æ—メータã¯æ­£ã—ã表示ã•ã‚Œã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:61
+#: apt-get.8.xml:63
msgid ""
"<literal>upgrade</literal> is used to install the newest versions of all "
"packages currently installed on the system from the sources enumerated in "
@@ -753,7 +753,7 @@ msgstr ""
"ケージã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒã‚ã‚‹ã“ã¨ã‚’知らã›ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:74
+#: apt-get.8.xml:76
msgid ""
"<literal>dist-upgrade</literal> in addition to performing the function of "
"<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@ -777,7 +777,7 @@ msgstr ""
"ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:87
+#: apt-get.8.xml:89
msgid ""
"<literal>dselect-upgrade</literal> is used in conjunction with the "
"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@ -794,7 +794,7 @@ msgstr ""
"ã©)"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:98
+#: apt-get.8.xml:100
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 "
@@ -822,7 +822,7 @@ msgstr ""
"断を上書ãã™ã‚‹ã®ã«åˆ©ç”¨ã•ã‚Œã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:116
+#: apt-get.8.xml:118
msgid ""
"A specific version of a package can be selected for installation by "
"following the package name with an equals and the version of the package to "
@@ -839,7 +839,7 @@ msgstr ""
"ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:123
+#: apt-get.8.xml:125
msgid ""
"Both of the version selection mechanisms can downgrade packages and must be "
"used with care."
@@ -848,7 +848,7 @@ msgstr ""
"ãªã‚Šã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:126
+#: apt-get.8.xml:128
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. "
@@ -867,7 +867,7 @@ msgstr ""
"ã‚るパッケージ) をダウンロード・インストールã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:137
+#: apt-get.8.xml:139
msgid ""
"Finally, the &apt-preferences; mechanism allows you to create an alternative "
"installation policy for individual packages."
@@ -876,7 +876,7 @@ msgstr ""
"リシーを作æˆã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:141
+#: apt-get.8.xml:143
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 "
@@ -893,7 +893,7 @@ msgstr ""
"ã°ã€'^' ã‚„ '$' を付ã‘ã‚‹ã‹ã€ã‚‚ã£ã¨è©³ã—ã„æ­£è¦è¡¨ç¾ã‚’指定ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:151
+#: apt-get.8.xml:153
msgid ""
"<literal>remove</literal> is identical to <literal>install</literal> except "
"that packages are removed instead of installed. Note that removing a package "
@@ -908,7 +908,7 @@ msgstr ""
"トールã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:159
+#: apt-get.8.xml:161
msgid ""
"<literal>purge</literal> is identical to <literal>remove</literal> except "
"that packages are removed and purged (any configuration files are deleted "
@@ -918,7 +918,7 @@ msgstr ""
"<literal>purge</literal> 㯠<literal>remove</literal> ã¨åŒã˜ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:164
+#: apt-get.8.xml:166
msgid ""
"<literal>source</literal> causes <command>apt-get</command> to fetch source "
"packages. APT will examine the available packages to decide which source "
@@ -937,7 +937,7 @@ msgstr ""
"literal> 構文ã§æŒ‡å®šã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:172
+#: apt-get.8.xml:174
msgid ""
"Source packages are tracked separately from binary packages via <literal>deb-"
"src</literal> lines in the &sources-list; file. This means that you will "
@@ -951,7 +951,7 @@ msgstr ""
"ã™ãŽãƒ»æ–°ã—ã™ãŽãª) ソースãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’å–å¾—ã—ãŸã‚Šã€ä½•ã‚‚å–å¾—ã§ããªããªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:178
+#: apt-get.8.xml:180
msgid ""
"If the <option>--compile</option> option is specified then the package will "
"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
@@ -966,7 +966,7 @@ msgstr ""
"ん。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:185
+#: apt-get.8.xml:187
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 "
@@ -980,7 +980,7 @@ msgstr ""
"ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«åŽ³å¯†ã«ä¸€è‡´ã•ã›ã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:191
+#: apt-get.8.xml:193
msgid ""
"Note that source packages are not installed and tracked in the "
"<command>dpkg</command> database like binary packages; they are simply "
@@ -991,7 +991,7 @@ msgstr ""
"ソース㮠tarball ã®ã‚ˆã†ã«ã€å˜ã«ã‚«ãƒ¬ãƒ³ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:197
+#: apt-get.8.xml:199
msgid ""
"<literal>build-dep</literal> causes apt-get to install/remove packages in an "
"attempt to satisfy the build dependencies for a source package. By default "
@@ -1006,7 +1006,7 @@ msgstr ""
"ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:204
+#: apt-get.8.xml:206
msgid ""
"<literal>check</literal> is a diagnostic tool; it updates the package cache "
"and checks for broken dependencies."
@@ -1015,7 +1015,7 @@ msgstr ""
"ãƒã‚§ãƒƒã‚¯ã™ã‚‹è¨ºæ–­ãƒ„ールã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:209
+#: apt-get.8.xml:211
msgid ""
"<literal>download</literal> will download the given binary package into the "
"current directory."
@@ -1024,7 +1024,7 @@ msgstr ""
"トリã«ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:215
+#: apt-get.8.xml:217
msgid ""
"<literal>clean</literal> clears out the local repository of retrieved "
"package files. It removes everything but the lock file from "
@@ -1042,7 +1042,7 @@ msgstr ""
"<literal>apt-get clean</literal> を実行ã—ãŸããªã‚‹ã§ã—ょã†ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:225
+#: apt-get.8.xml:227
msgid ""
"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
"local repository of retrieved package files. The difference is that it only "
@@ -1061,7 +1061,7 @@ msgstr ""
"防ã’ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:235
+#: apt-get.8.xml:237
msgid ""
"<literal>autoremove</literal> is used to remove packages that were "
"automatically installed to satisfy dependencies for other packages and are "
@@ -1071,7 +1071,7 @@ msgstr ""
"çš„ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã€ã‚‚ã†å¿…è¦ãªããªã£ãŸãƒ‘ッケージを削除ã™ã‚‹ã®ã«ä½¿ç”¨ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:240
+#: apt-get.8.xml:242
msgid ""
"<literal>changelog</literal> downloads a package changelog and displays it "
"through <command>sensible-pager</command>. The server name and base "
@@ -1093,14 +1093,14 @@ msgstr ""
"option> コマンドã¨åŒã˜ã‚ªãƒ—ションを使用ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:258 apt-cache.8.xml:248 apt-mark.8.xml:108
-#: apt-config.8.xml:84 apt-extracttemplates.1.xml:52 apt-sortpkgs.1.xml:48
-#: apt-ftparchive.1.xml:504
+#: apt-get.8.xml:260 apt-cache.8.xml:250 apt-mark.8.xml:110
+#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50
+#: apt-ftparchive.1.xml:506
msgid "options"
msgstr "オプション"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:263
+#: apt-get.8.xml:265
msgid ""
"Do not consider recommended packages as a dependency for installing. "
"Configuration Item: <literal>APT::Install-Recommends</literal>."
@@ -1109,7 +1109,7 @@ msgstr ""
"<literal>APT::Install-Recommends</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:268
+#: apt-get.8.xml:270
msgid ""
"Consider suggested packages as a dependency for installing. Configuration "
"Item: <literal>APT::Install-Suggests</literal>."
@@ -1118,7 +1118,7 @@ msgstr ""
"<literal>APT::Install-Suggests</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:273
+#: apt-get.8.xml:275
msgid ""
"Download only; package files are only retrieved, not unpacked or installed. "
"Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@ -1127,7 +1127,7 @@ msgstr ""
"ã„ã¾ã›ã‚“。設定項目: <literal>APT::Get::Download-Only</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:278
+#: apt-get.8.xml:280
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 "
@@ -1153,7 +1153,7 @@ msgstr ""
"<literal>APT::Get::Fix-Broken</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:293
+#: apt-get.8.xml:295
msgid ""
"Ignore missing packages; if packages cannot be retrieved or fail the "
"integrity check after retrieval (corrupted package files), hold back those "
@@ -1172,7 +1172,7 @@ msgstr ""
"Get::Fix-Missing</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:304
+#: apt-get.8.xml:306
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 "
@@ -1183,7 +1183,7 @@ msgstr ""
"ãŒã‚ˆã„ã§ã—ょã†ã€‚設定項目: <literal>APT::Get::Download</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:311
+#: apt-get.8.xml:313
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 "
@@ -1202,7 +1202,7 @@ msgstr ""
"literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:326
+#: apt-get.8.xml:328
msgid ""
"No action; perform a simulation of events that would occur but do not "
"actually change the system. Configuration Item: <literal>APT::Get::"
@@ -1212,7 +1212,7 @@ msgstr ""
"è¡Œã„ã¾ã›ã‚“。設定項目: <literal>APT::Get::Simulate</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:330
+#: apt-get.8.xml:332
msgid ""
"Simulated runs performed as a user will automatically deactivate locking "
"(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::"
@@ -1230,7 +1230,7 @@ msgstr ""
"ã«ã‚ˆã‚‹è­¦å‘Šãªã©ãªãã¦ã‚‚ã€ä½•ã‚’ã—ã¦ã„ã‚‹ã®ã‹çŸ¥ã£ã¦ã„ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“)。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:338
+#: apt-get.8.xml:340
msgid ""
"Simulated runs print out a series of lines, each representing a "
"<command>dpkg</command> operation: configure (<literal>Conf</literal>), "
@@ -1244,7 +1244,7 @@ msgstr ""
"ã‚Œã«) 空ã®è§’カッコã¯å¤§ã—ãŸå•é¡Œã§ã¯ãªã„ã“ã¨ã‚’表ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:346
+#: apt-get.8.xml:348
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 "
@@ -1258,7 +1258,7 @@ msgstr ""
"定項目: <literal>APT::Get::Assume-Yes</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:354
+#: apt-get.8.xml:356
msgid ""
"Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::"
"Assume-No</literal>."
@@ -1267,7 +1267,7 @@ msgstr ""
"Assume-No</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:359
+#: apt-get.8.xml:361
msgid ""
"Show upgraded packages; print out a list of all packages that are to be "
"upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@ -1276,7 +1276,7 @@ msgstr ""
"<literal>APT::Get::Show-Upgraded</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:365
+#: apt-get.8.xml:367
msgid ""
"Show full versions for upgraded and installed packages. Configuration Item: "
"<literal>APT::Get::Show-Versions</literal>."
@@ -1285,7 +1285,7 @@ msgstr ""
"<literal>APT::Get::Show-Versions</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:371
+#: apt-get.8.xml:373
msgid ""
"This option controls the architecture packages are built for by <command>apt-"
"get source --compile</command> and how cross-builddependencies are "
@@ -1301,7 +1301,7 @@ msgstr ""
"ã¾ã™ã€‚設定項目: <literal>APT::Get::Host-Architecture</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:381
+#: apt-get.8.xml:383
msgid ""
"Compile source packages after downloading them. Configuration Item: "
"<literal>APT::Get::Compile</literal>."
@@ -1310,7 +1310,7 @@ msgstr ""
"Get::Compile</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:386
+#: apt-get.8.xml:388
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 "
@@ -1323,7 +1323,19 @@ msgstr ""
"literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:393
+#: apt-get.8.xml:395
+msgid ""
+"Allow installing new packages when used in conjunction with "
+"<literal>upgrade</literal>. This is useful if the update of a installed "
+"package requires new dependencies to be installed. Instead of holding the "
+"package back <literal>upgrade</literal> will upgrade the package and install "
+"the new dependencies. Note that <literal>upgrade</literal> with this option "
+"will never remove packages, only allow adding new ones. Configuration Item: "
+"<literal>APT::Get::Upgrade-Allow-New</literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:407
msgid ""
"Do not upgrade packages; when used in conjunction with <literal>install</"
"literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@ -1336,7 +1348,7 @@ msgstr ""
"Upgrade</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:400
+#: apt-get.8.xml:414
msgid ""
"Do not install new packages; when used in conjunction with <literal>install</"
"literal>, <literal>only-upgrade</literal> will install upgrades for already "
@@ -1349,7 +1361,7 @@ msgstr ""
"定項目: <literal>APT::Get::Only-Upgrade</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:408
+#: apt-get.8.xml:422
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 "
@@ -1363,7 +1375,7 @@ msgstr ""
"ん! 設定項目: <literal>APT::Get::force-yes</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:416
+#: apt-get.8.xml:430
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 "
@@ -1384,7 +1396,7 @@ msgstr ""
"Print-URIs</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:427
+#: apt-get.8.xml:441
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. "
@@ -1397,7 +1409,7 @@ msgstr ""
"<literal>APT::Get::Purge</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:435
+#: apt-get.8.xml:449
msgid ""
"Re-install packages that are already installed and at the newest version. "
"Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@ -1406,7 +1418,7 @@ msgstr ""
"定項目: <literal>APT::Get::ReInstall</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:440
+#: apt-get.8.xml:454
msgid ""
"This option is on by default; use <literal>--no-list-cleanup</literal> to "
"turn it off. When it is on, <command>apt-get</command> will automatically "
@@ -1422,7 +1434,7 @@ msgstr ""
"ã™ã‚‹æ™‚ãらã„ã§ã—ょã†ã€‚設定項目: <literal>APT::Get::List-Cleanup</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:450
+#: apt-get.8.xml:464
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 "
@@ -1445,7 +1457,7 @@ msgstr ""
"ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:465
+#: apt-get.8.xml:479
msgid ""
"Only perform operations that are 'trivial'. Logically this can be considered "
"related to <option>--assume-yes</option>; where <option>--assume-yes</"
@@ -1458,7 +1470,7 @@ msgstr ""
"ç›®: <literal>APT::Get::Trivial-Only</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:472
+#: apt-get.8.xml:486
msgid ""
"If any packages are to be removed apt-get immediately aborts without "
"prompting. Configuration Item: <literal>APT::Get::Remove</literal>."
@@ -1467,7 +1479,7 @@ msgstr ""
"é …ç›®: <literal>APT::Get::Remove</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:478
+#: apt-get.8.xml:492
msgid ""
"If the command is either <literal>install</literal> or <literal>remove</"
"literal>, then this option acts like running the <literal>autoremove</"
@@ -1480,7 +1492,7 @@ msgstr ""
"<literal>APT::Get::AutomaticRemove</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:485
+#: apt-get.8.xml:499
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 "
@@ -1498,7 +1510,7 @@ msgstr ""
"literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:496
+#: apt-get.8.xml:510
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</"
@@ -1509,7 +1521,7 @@ msgstr ""
"<literal>APT::Get::Dsc-Only</literal>, <literal>APT::Get::Tar-Only</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:502
+#: apt-get.8.xml:516
msgid ""
"Only process architecture-dependent build-dependencies. Configuration Item: "
"<literal>APT::Get::Arch-Only</literal>."
@@ -1518,7 +1530,7 @@ msgstr ""
"<literal>APT::Get::Arch-Only</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:507
+#: apt-get.8.xml:521
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::"
@@ -1528,23 +1540,33 @@ msgstr ""
"ã†ãªãƒ„ールã§ä¾¿åˆ©ã§ã™ã€‚設定項目: <literal>APT::Get::AllowUnauthenticated</"
"literal>"
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:527
+msgid ""
+"Show user friendly progress information in the terminal window when packages "
+"are installed, upgraded or removed. For a machine parsable version of this "
+"data see README.progress-reporting in the apt doc directory. Configuration "
+"Item: <literal>DpkgPM::Progress</literal> and <literal>Dpkg::Progress-Fancy</"
+"literal>."
+msgstr ""
+
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125
-#: apt.conf.5.xml:1167 apt_preferences.5.xml:698
+#: apt-get.8.xml:540 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127
+#: apt.conf.5.xml:1200 apt_preferences.5.xml:700
msgid "Files"
msgstr "ファイル"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131
-#: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109
-#: apt.conf.5.xml:1173 apt_preferences.5.xml:705 sources.list.5.xml:252
-#: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63
-#: apt-ftparchive.1.xml:607
+#: apt-get.8.xml:550 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133
+#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111
+#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:258
+#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65
+#: apt-ftparchive.1.xml:609
msgid "See Also"
msgstr "関連項目"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:529
+#: apt-get.8.xml:551
msgid ""
"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@ -1555,14 +1577,14 @@ msgstr ""
"preferences;, APT Howto"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:534 apt-cache.8.xml:355 apt-mark.8.xml:135
-#: apt-cdrom.8.xml:149 apt-config.8.xml:114 apt-extracttemplates.1.xml:74
-#: apt-sortpkgs.1.xml:67 apt-ftparchive.1.xml:611
+#: apt-get.8.xml:556 apt-cache.8.xml:357 apt-mark.8.xml:137
+#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76
+#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613
msgid "Diagnostics"
msgstr "診断メッセージ"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:535
+#: apt-get.8.xml:557
msgid ""
"<command>apt-get</command> returns zero on normal operation, decimal 100 on "
"error."
@@ -1571,12 +1593,12 @@ msgstr ""
"100 ã‚’è¿”ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cache.8.xml:33
+#: apt-cache.8.xml:35
msgid "query the APT cache"
msgstr "APT キャッシュã¸ã®å•ã„åˆã‚ã›"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:39
+#: apt-cache.8.xml:41
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 "
@@ -1589,7 +1611,7 @@ msgstr ""
"æ“作をæä¾›ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:49
+#: apt-cache.8.xml:51
msgid ""
"<literal>gencaches</literal> creates APT's package cache. This is done "
"implicitly by all commands needing this cache if it is missing or outdated."
@@ -1599,14 +1621,14 @@ msgstr ""
"ã¹ã¦ã®ã‚³ãƒžãƒ³ãƒ‰ã«ã‚ˆã£ã¦ã€æš—é»™ã§å®Ÿè¡Œã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:53 apt-cache.8.xml:142 apt-cache.8.xml:163
-#: apt-cache.8.xml:185 apt-cache.8.xml:190 apt-cache.8.xml:206
-#: apt-cache.8.xml:224 apt-cache.8.xml:236
+#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165
+#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208
+#: apt-cache.8.xml:226 apt-cache.8.xml:238
msgid "&synopsis-pkg;"
msgstr "&synopsis-pkg;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:54
+#: apt-cache.8.xml:56
msgid ""
"<literal>showpkg</literal> displays information about the packages listed on "
"the command line. Remaining arguments are package names. The available "
@@ -1628,7 +1650,7 @@ msgstr ""
"libreadline2</command> ã®å‡ºåŠ›ã‚’掲ã’ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-cache.8.xml:66
+#: apt-cache.8.xml:68
#, no-wrap
msgid ""
"Package: libreadline2\n"
@@ -1654,7 +1676,7 @@ msgstr ""
"Reverse Provides: \n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:78
+#: apt-cache.8.xml:80
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, "
@@ -1673,7 +1695,7 @@ msgstr ""
"apt ã®ã‚½ãƒ¼ã‚¹ã‚³ãƒ¼ãƒ‰ã‚’調ã¹ã‚‹ã®ãŒæœ€è‰¯ã§ã—ょã†ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:87
+#: apt-cache.8.xml:89
msgid ""
"<literal>stats</literal> displays some statistics about the cache. No "
"further arguments are expected. Statistics reported are:"
@@ -1682,7 +1704,7 @@ msgstr ""
"上ã€å¼•æ•°ã¯å¿…è¦ã‚ã‚Šã¾ã›ã‚“。以下ã®çµ±è¨ˆæƒ…報を表示ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:90
+#: apt-cache.8.xml:92
msgid ""
"<literal>Total package names</literal> is the number of package names found "
"in the cache."
@@ -1691,7 +1713,7 @@ msgstr ""
"ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:94
+#: apt-cache.8.xml:96
msgid ""
"<literal>Normal packages</literal> is the number of regular, ordinary "
"package names; these are packages that bear a one-to-one correspondence "
@@ -1703,7 +1725,7 @@ msgstr ""
"ケージã§ã™ã€‚大多数ã®ãƒ‘ッケージã¯ã“ã®ã‚«ãƒ†ã‚´ãƒªã«å…¥ã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:100
+#: apt-cache.8.xml:102
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 "
@@ -1720,7 +1742,7 @@ msgstr ""
"ケージã¯ã‚ã‚Šã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:108
+#: apt-cache.8.xml:110
msgid ""
"<literal>Single virtual packages</literal> is the number of packages with "
"only one package providing a particular virtual package. For example, in the "
@@ -1733,7 +1755,7 @@ msgstr ""
"ジã¯ã€xless パッケージã®ã¿ã¨ã„ã†ã“ã¨ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:114
+#: apt-cache.8.xml:116
msgid ""
"<literal>Mixed virtual packages</literal> is the number of packages that "
"either provide a particular virtual package or have the virtual package name "
@@ -1746,7 +1768,7 @@ msgstr ""
"ã‚‚ã‚ã‚Šã¾ã™ãŒã€debconf-tiny ã«ã‚ˆã£ã¦æ供もã•ã‚Œã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:121
+#: apt-cache.8.xml:123
msgid ""
"<literal>Missing</literal> is the number of package names that were "
"referenced in a dependency but were not provided by any package. Missing "
@@ -1761,7 +1783,7 @@ msgstr ""
"ã®ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:128
+#: apt-cache.8.xml:130
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 "
@@ -1775,7 +1797,7 @@ msgstr ""
"スã™ã‚‹å ´åˆã€ã“ã®å€¤ã¯ãƒ‘ッケージåç·æ•°ã‚ˆã‚Šã‚‚ã‹ãªã‚Šå¤§ãã„æ•°ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:135
+#: apt-cache.8.xml:137
msgid ""
"<literal>Total dependencies</literal> is the number of dependency "
"relationships claimed by all of the packages in the cache."
@@ -1784,7 +1806,7 @@ msgstr ""
"ã‚ŒãŸä¾å­˜é–¢ä¿‚ã®æ•°ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:143
+#: apt-cache.8.xml:145
msgid ""
"<literal>showsrc</literal> displays all the source package records that "
"match the given package names. All versions are shown, as well as all "
@@ -1795,7 +1817,7 @@ msgstr ""
"ã¨ã‚‚ã«ã€ã™ã¹ã¦ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã¤ã„ã¦è¡¨ç¤ºã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:149
+#: apt-cache.8.xml:151
msgid ""
"<literal>dump</literal> shows a short listing of every package in the cache. "
"It is primarily for debugging."
@@ -1804,7 +1826,7 @@ msgstr ""
"覧を表示ã—ã¾ã™ã€‚主ã«ãƒ‡ãƒãƒƒã‚°ç”¨ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:154
+#: apt-cache.8.xml:156
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."
@@ -1813,7 +1835,7 @@ msgstr ""
"ã™ã€‚ &dpkg; ã¨å…±ã«ä½¿ç”¨ã™ã‚‹ã¨ä¾¿åˆ©ã§ã™ã—ã€&dselect; ã§ã‚‚使用ã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:159
+#: apt-cache.8.xml:161
msgid ""
"<literal>unmet</literal> displays a summary of all unmet dependencies in the "
"package cache."
@@ -1822,7 +1844,7 @@ msgstr ""
"概è¦ã‚’表示ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:164
+#: apt-cache.8.xml:166
msgid ""
"<literal>show</literal> performs a function similar to <command>dpkg --print-"
"avail</command>; it displays the package records for the named packages."
@@ -1831,12 +1853,12 @@ msgstr ""
"能を実行ã—ã¾ã™ã€‚ã“ã‚Œã¯ã€æŒ‡å®šã—ãŸãƒ‘ッケージã®ãƒ‘ッケージレコードã®è¡¨ç¤ºã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:169
+#: apt-cache.8.xml:171
msgid "&synopsis-regex;"
msgstr "&synopsis-regex;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:170
+#: apt-cache.8.xml:172
msgid ""
"<literal>search</literal> performs a full text search on all available "
"package lists for the POSIX regex pattern given, see &regex;. It searches "
@@ -1856,14 +1878,14 @@ msgstr ""
"ケージåã«å¯¾ã—ã¦ã®ã¿å¯¾è±¡ã¨ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:181
+#: apt-cache.8.xml:183
msgid ""
"Separate arguments can be used to specify multiple search patterns that are "
"and'ed together."
msgstr "空白ã§åŒºåˆ‡ã£ãŸå¼•æ•°ã§ã€è¤‡æ•°ã®æ¤œç´¢ãƒ‘ターン㮠and ã‚’ã¨ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:186
+#: apt-cache.8.xml:188
msgid ""
"<literal>depends</literal> shows a listing of each dependency a package has "
"and all the possible other packages that can fulfill that dependency."
@@ -1872,7 +1894,7 @@ msgstr ""
"を満ãŸã™ä»–ã®ãƒ‘ッケージã®ä¸€è¦§ã‚’表示ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:191
+#: apt-cache.8.xml:193
msgid ""
"<literal>rdepends</literal> shows a listing of each reverse dependency a "
"package has."
@@ -1880,12 +1902,12 @@ msgstr ""
"<literal>rdepends</literal> ã¯ã€ãƒ‘ッケージãŒæŒã¤è¢«ä¾å­˜é–¢ä¿‚を一覧表示ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:195
+#: apt-cache.8.xml:197
msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:196
+#: apt-cache.8.xml:198
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 "
@@ -1899,7 +1921,7 @@ msgstr ""
"generate</option> オプションã¨å…±ã«ä½¿ç”¨ã™ã‚‹ã¨éžå¸¸ã«ä¾¿åˆ©ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:201
+#: apt-cache.8.xml:203
msgid ""
"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 "
@@ -1910,7 +1932,7 @@ msgstr ""
"ãŸä¸€è¦§ã«ã‚ã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:207
+#: apt-cache.8.xml:209
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."
@@ -1930,7 +1952,7 @@ msgstr ""
"GivenOnly</literal> をセットã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:216
+#: apt-cache.8.xml:218
msgid ""
"The resulting nodes will have several shapes; normal packages are boxes, "
"pure virtual packages are triangles, mixed virtual packages are diamonds, "
@@ -1943,12 +1965,12 @@ msgstr ""
"表ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:221
+#: apt-cache.8.xml:223
msgid "Caution, dotty cannot graph larger sets of packages."
msgstr "注æ„) dotty ã¯ã€ãƒ‘ッケージã®ã‚ˆã‚Šå¤§ããªã‚»ãƒƒãƒˆã®ã‚°ãƒ©ãƒ•ã¯æã‘ã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:225
+#: apt-cache.8.xml:227
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>."
@@ -1957,12 +1979,12 @@ msgstr ""
"users/sander/html/gsvcg1.html\">VCG tool</ulink> ã® xvcg 専用ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:229
+#: apt-cache.8.xml:231
msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:230
+#: apt-cache.8.xml:232
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 "
@@ -1974,7 +1996,7 @@ msgstr ""
"ã™ã€‚一方ã€ãƒ‘ッケージåを指定ã—ãŸå ´åˆã€å„ªå…ˆé †ã®è©³ç´°æƒ…報を表示ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:237
+#: apt-cache.8.xml:239
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 "
@@ -1992,7 +2014,7 @@ msgstr ""
"表示ã™ã‚‹ã ã‘ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:253
+#: apt-cache.8.xml:255
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::"
@@ -2003,7 +2025,7 @@ msgstr ""
"pkgcache</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:259
+#: apt-cache.8.xml:261
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 "
@@ -2018,7 +2040,7 @@ msgstr ""
"<literal>Dir::Cache::srcpkgcache</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:267
+#: apt-cache.8.xml:269
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 "
@@ -2031,7 +2053,7 @@ msgstr ""
"<literal>quiet</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:274
+#: apt-cache.8.xml:276
msgid ""
"Print only important dependencies; for use with <literal>unmet</literal> and "
"<literal>depends</literal>. Causes only Depends and Pre-Depends relations to "
@@ -2042,7 +2064,7 @@ msgstr ""
"ç›®: <literal>APT::Cache::Important</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:288
+#: apt-cache.8.xml:290
msgid ""
"Per default the <literal>depends</literal> and <literal>rdepends</literal> "
"print all dependencies. This can be tweaked with these flags which will omit "
@@ -2056,7 +2078,7 @@ msgstr ""
"replaceable></literal> 例: <literal>APT::Cache::ShowRecommends</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:295
+#: apt-cache.8.xml:297
msgid ""
"Print full package records when searching. Configuration Item: "
"<literal>APT::Cache::ShowFull</literal>."
@@ -2065,7 +2087,7 @@ msgstr ""
"ShowFull</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:300
+#: apt-cache.8.xml:302
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-"
@@ -2082,7 +2104,7 @@ msgstr ""
"AllVersions</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:309
+#: apt-cache.8.xml:311
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</"
@@ -2093,7 +2115,7 @@ msgstr ""
"option> を使用ã—ã¦ãã ã•ã„。設定項目: <literal>APT::Cache::Generate</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:315
+#: apt-cache.8.xml:317
msgid ""
"Only search on the package names, not the long descriptions. Configuration "
"Item: <literal>APT::Cache::NamesOnly</literal>."
@@ -2102,7 +2124,7 @@ msgstr ""
"Cache::NamesOnly</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:320
+#: apt-cache.8.xml:322
msgid ""
"Make <literal>pkgnames</literal> print all names, including virtual packages "
"and missing dependencies. Configuration Item: <literal>APT::Cache::"
@@ -2112,7 +2134,7 @@ msgstr ""
"表示ã—ã¾ã™ã€‚設定項目: <literal>APT::Cache::AllNames</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:326
+#: apt-cache.8.xml:328
msgid ""
"Make <literal>depends</literal> and <literal>rdepends</literal> recursive so "
"that all packages mentioned are printed once. Configuration Item: "
@@ -2123,7 +2145,7 @@ msgstr ""
"RecurseDepends</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:333
+#: apt-cache.8.xml:335
msgid ""
"Limit the output of <literal>depends</literal> and <literal>rdepends</"
"literal> to packages which are currently installed. Configuration Item: "
@@ -2134,12 +2156,12 @@ msgstr ""
"Installed</literal>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:351
+#: apt-cache.8.xml:353
msgid "&apt-conf;, &sources-list;, &apt-get;"
msgstr "&apt-conf;, &sources-list;, &apt-get;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:356
+#: apt-cache.8.xml:358
msgid ""
"<command>apt-cache</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -2148,12 +2170,12 @@ msgstr ""
"100 ã‚’è¿”ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-key.8.xml:32
+#: apt-key.8.xml:34
msgid "APT key management utility"
msgstr "APT キー管ç†ãƒ¦ãƒ¼ãƒ†ã‚£ãƒªãƒ†ã‚£"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:39
+#: apt-key.8.xml:41
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 "
@@ -2164,12 +2186,12 @@ msgstr ""
"ã‚‹ã¨è¦‹ãªã›ã‚‹ã§ã—ょã†ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:45
+#: apt-key.8.xml:47
msgid "Commands"
msgstr "コマンド"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:50
+#: apt-key.8.xml:52
msgid ""
"Add a new key to the list of trusted keys. The key is read from the "
"filename given with the parameter &synopsis-param-filename; or if the "
@@ -2180,32 +2202,32 @@ msgstr ""
"<literal>-</literal> ã¨ã™ã‚‹ã¨ã€æ¨™æº–入力ã‹ã‚‰èª­ã¿è¾¼ã¿ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:63
+#: apt-key.8.xml:65
msgid "Remove a key from the list of trusted keys."
msgstr "信頼キー一覧ã‹ã‚‰ã‚­ãƒ¼ã‚’削除ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:74
+#: apt-key.8.xml:76
msgid "Output the key &synopsis-param-keyid; to standard output."
msgstr "キー &synopsis-param-keyid; を標準出力ã«å‡ºåŠ›ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:85
+#: apt-key.8.xml:87
msgid "Output all trusted keys to standard output."
msgstr "ä¿¡é ¼ã™ã‚‹ã‚­ãƒ¼ã‚’ã™ã¹ã¦æ¨™æº–出力ã«å‡ºåŠ›ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:96
+#: apt-key.8.xml:98
msgid "List trusted keys."
msgstr "信頼キーを一覧表示ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:107
+#: apt-key.8.xml:109
msgid "List fingerprints of trusted keys."
msgstr "信頼キーã®ãƒ•ã‚£ãƒ³ã‚¬ãƒ¼ãƒ—リントを一覧表示ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:118
+#: apt-key.8.xml:120
msgid ""
"Pass advanced options to gpg. With adv --recv-key you can download the "
"public key."
@@ -2214,22 +2236,20 @@ msgstr ""
"ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:130
+#: apt-key.8.xml:132
msgid ""
"Update the local keyring with the archive keyring and remove from the local "
"keyring the archive keys which are no longer valid. The archive keyring is "
"shipped in the <literal>archive-keyring</literal> package of your "
-"distribution, e.g. the &keyring-package; package in "
-"&keyring-distro;."
+"distribution, e.g. the &keyring-package; package in &keyring-distro;."
msgstr ""
"ローカルキーリングをアーカイブキーリングã§æ›´æ–°ã—ã€ã‚‚ã†æœ‰åŠ¹ã§ãªããªã£ãŸã‚¢ãƒ¼ã‚«"
"イブキーをローカルキーリングã‹ã‚‰å‰Šé™¤ã—ã¾ã™ã€‚アーカイブキーリングã¯ã€ä½¿ç”¨ä¸­ã®"
"ディストリビューションã«ã‚ã‚‹ <literal>archive-keyring</literal> パッケージ "
-"(例: &keyring-distro; ã§ã¯ &keyring-package; パッケージ) ã§æä¾›"
-"ã•ã‚Œã¦ã„ã¾ã™ã€‚"
+"(例: &keyring-distro; ã§ã¯ &keyring-package; パッケージ) ã§æä¾›ã•ã‚Œã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:144
+#: apt-key.8.xml:146
msgid ""
"Perform an update working similarly to the <command>update</command> command "
"above, but get the archive keyring from a URI instead and validate it "
@@ -2246,12 +2266,12 @@ msgstr ""
"有効ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:160 apt-cdrom.8.xml:80
+#: apt-key.8.xml:162 apt-cdrom.8.xml:82
msgid "Options"
msgstr "オプション"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:161
+#: apt-key.8.xml:163
msgid ""
"Note that options need to be defined before the commands described in the "
"previous section."
@@ -2260,7 +2280,7 @@ msgstr ""
"ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:164
+#: apt-key.8.xml:166
msgid ""
"With this option it is possible to specify a particular keyring file the "
"command should operate on. The default is that a command is executed on the "
@@ -2276,49 +2296,47 @@ msgstr ""
"ã¾ã™ã€‚ã¤ã¾ã‚Šæ–°ã—ã„キーã¯ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«è¿½åŠ ã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:179
+#: apt-key.8.xml:181
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:180
+#: apt-key.8.xml:182
msgid "Local trust database of archive keys."
msgstr "アーカイブキーã®ãƒ­ãƒ¼ã‚«ãƒ«ä¿¡é ¼ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:183
+#: apt-key.8.xml:185
msgid "&keyring-filename;"
msgstr "&keyring-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:184
+#: apt-key.8.xml:186
msgid "Keyring of &keyring-distro; archive trusted keys."
msgstr "&keyring-distro; アーカイブ信頼キーã®ã‚­ãƒ¼ãƒªãƒ³ã‚°ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:187
-msgid ""
-"&keyring-removed-filename;"
-msgstr ""
-"&keyring-removed-filename;"
+#: apt-key.8.xml:189
+msgid "&keyring-removed-filename;"
+msgstr "&keyring-removed-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:188
+#: apt-key.8.xml:190
msgid "Keyring of &keyring-distro; archive removed trusted keys."
msgstr "削除ã•ã‚ŒãŸ &keyring-distro; アーカイブ信頼キーã®ã‚­ãƒ¼ãƒªãƒ³ã‚°ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:197
+#: apt-key.8.xml:199
msgid "&apt-get;, &apt-secure;"
msgstr "&apt-get;, &apt-secure;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-mark.8.xml:33
+#: apt-mark.8.xml:35
msgid "mark/unmark a package as being automatically-installed"
msgstr "パッケージãŒè‡ªå‹•çš„ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚ŒãŸã‹ã©ã†ã‹ã®ãƒžãƒ¼ã‚¯ã‚’変更ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:39
+#: apt-mark.8.xml:41
msgid ""
"<command>apt-mark</command> will change whether a package has been marked as "
"being automatically installed."
@@ -2327,7 +2345,7 @@ msgstr ""
"ã‹ã®ãƒžãƒ¼ã‚¯ã‚’変更ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:43
+#: apt-mark.8.xml:45
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 "
@@ -2342,7 +2360,7 @@ msgstr ""
"command> ã‚„ <command>aptitude</command> ã«ã‚ˆã‚Šå‰Šé™¤ã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:52
+#: apt-mark.8.xml:54
msgid ""
"<literal>auto</literal> is used to mark a package as being automatically "
"installed, which will cause the package to be removed when no more manually "
@@ -2353,7 +2371,7 @@ msgstr ""
"ã‚‹ã¨ã€ã“ã®ãƒ‘ッケージを削除ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:60
+#: apt-mark.8.xml:62
msgid ""
"<literal>manual</literal> is used to mark a package as being manually "
"installed, which will prevent the package from being automatically removed "
@@ -2364,7 +2382,7 @@ msgstr ""
"を自動的ã«å‰Šé™¤ã™ã‚‹ã®ã‚’防ãŽã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:68
+#: apt-mark.8.xml:70
msgid ""
"<literal>hold</literal> is used to mark a package as held back, which will "
"prevent the package from being automatically installed, upgraded or "
@@ -2379,7 +2397,7 @@ msgstr ""
"ã‚ã‚Šã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:78
+#: apt-mark.8.xml:80
msgid ""
"<literal>unhold</literal> is used to cancel a previously set hold on a "
"package to allow all actions again."
@@ -2388,7 +2406,7 @@ msgstr ""
"キャンセルã™ã‚‹ã®ã«ä½¿ç”¨ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:84
+#: apt-mark.8.xml:86
msgid ""
"<literal>showauto</literal> is used to print a list of automatically "
"installed packages with each package on a new line. All automatically "
@@ -2401,7 +2419,7 @@ msgstr ""
"ケージãŒè‡ªå‹•çš„ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã‚‹å ´åˆã«ã®ã¿ã€è¡¨ç¤ºã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:92
+#: apt-mark.8.xml:94
msgid ""
"<literal>showmanual</literal> can be used in the same way as "
"<literal>showauto</literal> except that it will print a list of manually "
@@ -2411,7 +2429,7 @@ msgstr ""
"ã¾ã™ãŒã€æ‰‹å‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸãƒ‘ッケージã®ä¸€è¦§ã‚’表示ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:99
+#: apt-mark.8.xml:101
msgid ""
"<literal>showhold</literal> is used to print a list of packages on hold in "
"the same way as for the other show commands."
@@ -2420,7 +2438,7 @@ msgstr ""
"パッケージを出力ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:115
+#: apt-mark.8.xml:117
msgid ""
"Read/Write package stats from the filename given with the parameter "
"&synopsis-param-filename; instead of from the default location, which is "
@@ -2432,7 +2450,7 @@ msgstr ""
"param-filename; ã‹ã‚‰ãƒ‘ッケージã®çŠ¶æ…‹ã‚’読ã¿æ›¸ãã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:136
+#: apt-mark.8.xml:138
msgid ""
"<command>apt-mark</command> returns zero on normal operation, non-zero on "
"error."
@@ -2441,12 +2459,12 @@ msgstr ""
"ã‚’è¿”ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-secure.8.xml:47
+#: apt-secure.8.xml:49
msgid "Archive authentication support for APT"
msgstr "APT アーカイブèªè¨¼ã‚µãƒãƒ¼ãƒˆ"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:52
+#: apt-secure.8.xml:54
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 "
@@ -2459,7 +2477,7 @@ msgstr ""
"ã‚’ä¿è¨¼ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:60
+#: apt-secure.8.xml:62
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 "
@@ -2474,7 +2492,7 @@ msgstr ""
"å‰ã«ã€ã™ã¹ã¦ã®ã‚½ãƒ¼ã‚¹ã«å¯¾ã—ã¦ã€å¼·åˆ¶çš„ã«æ¤œè¨¼ã•ã‚Œã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:69
+#: apt-secure.8.xml:71
msgid ""
"The package frontends &apt-get;, &aptitude; and &synaptic; support this new "
"authentication feature."
@@ -2483,12 +2501,12 @@ msgstr ""
"èªè¨¼æ©Ÿèƒ½ã‚’サãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:74
+#: apt-secure.8.xml:76
msgid "Trusted archives"
msgstr "信頼済アーカイブ"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:77
+#: apt-secure.8.xml:79
msgid ""
"The chain of trust from an apt archive to the end user is made up of several "
"steps. <command>apt-secure</command> is the last step in this chain; "
@@ -2505,7 +2523,7 @@ msgstr ""
"イブメンテナã®è²¬ä»»ã ã¨ã„ã†ã“ã¨ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:85
+#: apt-secure.8.xml:87
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 "
@@ -2518,7 +2536,7 @@ msgstr ""
"を確èªã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:92
+#: apt-secure.8.xml:94
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. In order to become "
@@ -2535,27 +2553,27 @@ msgstr ""
"ナã«ç½²åã•ã‚Œã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:102
+#: apt-secure.8.xml:104
msgid ""
"Once the uploaded package is verified and included in the archive, the "
"maintainer signature is stripped off, and checksums of the package are "
"computed and put in the Packages file. The checksums 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 for this &keyring-distro; release, and distributed "
-"alongside the packages and the Packages files on &keyring-distro; mirrors. The keys "
-"are in the &keyring-distro; archive keyring available in the &keyring-package; "
-"package."
+"then signed by the archive key for this &keyring-distro; release, and "
+"distributed alongside the packages and the Packages files on &keyring-"
+"distro; mirrors. The keys are in the &keyring-distro; archive keyring "
+"available in the &keyring-package; package."
msgstr ""
"アップロードã•ã‚ŒãŸãƒ‘ッケージãŒæ¤œè¨¼ã•ã‚Œã¦ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã«æ ¼ç´ã•ã‚Œã‚‹ã¨ã€ãƒ¡ãƒ³ãƒ†ãƒŠã®"
"ç½²åã‚’å–り外ã—ã€ãƒ‘ッケージã®ãƒã‚§ãƒƒã‚¯ã‚µãƒ ã‚’計算ã—ã¦ã€Packages ファイルã«æ ¼ç´ã—"
"ã¾ã™ã€‚ãã®å¾Œã€å…¨ãƒ‘ッケージファイルã®ãƒã‚§ãƒƒã‚¯ã‚µãƒ ã‚’計算ã—ã¦ã€Release ファイル"
-"ã«æ ¼ç´ã—ã¾ã™ã€‚Release ファイルã¯ã€ãã® &keyring-distro; リリースã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–キーã§ç½²å"
-"ã•ã‚Œã€&keyring-distro; ミラーサイトã§ãƒ‘ッケージや Packages ファイルã¨ã¨ã‚‚ã«é…布ã•ã‚Œã¾"
-"ã™ã€‚ã“ã®ã‚­ãƒ¼ã¯ã€&keyring-package; パッケージã«åŽéŒ²ã•"
-"ã‚Œã¦ã„ã‚‹ã€&keyring-distro; アーカイブキーリングã«å«ã¾ã‚Œã¾ã™ã€‚"
+"ã«æ ¼ç´ã—ã¾ã™ã€‚Release ファイルã¯ã€ãã® &keyring-distro; リリースã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–"
+"キーã§ç½²åã•ã‚Œã€&keyring-distro; ミラーサイトã§ãƒ‘ッケージや Packages ファイル"
+"ã¨ã¨ã‚‚ã«é…布ã•ã‚Œã¾ã™ã€‚ã“ã®ã‚­ãƒ¼ã¯ã€&keyring-package; パッケージã«åŽéŒ²ã•ã‚Œã¦ã„"
+"ã‚‹ã€&keyring-distro; アーカイブキーリングã«å«ã¾ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:113
+#: apt-secure.8.xml:115
msgid ""
"End users can check the signature of the Release file, extract a checksum of "
"a package from it and compare it with the checksum of the package they "
@@ -2566,7 +2584,7 @@ msgstr ""
"ã™ã€‚ã¾ãŸã€APT ãŒè‡ªå‹•çš„ã«è¡Œã†ã®ã«ä»»ã›ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:118
+#: apt-secure.8.xml:120
msgid ""
"Notice that this is distinct from checking signatures on a per package "
"basis. It is designed to prevent two possible attacks:"
@@ -2575,7 +2593,7 @@ msgstr ""
"ã†ã«è€ƒãˆã‚‰ã‚Œã‚‹ 2 種類ã®æ”»æ’ƒã‚’防ãよã†è¨­è¨ˆã•ã‚Œã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:123
+#: apt-secure.8.xml:125
msgid ""
"<literal>Network \"man in the middle\" attacks</literal>. Without signature "
"checking, malicious agents can introduce themselves into the package "
@@ -2590,7 +2608,7 @@ msgstr ""
"ã‚るソフトウェアを掴ã¾ã•ã‚ŒãŸã‚Šã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:131
+#: apt-secure.8.xml:133
msgid ""
"<literal>Mirror network compromise</literal>. Without signature checking, a "
"malicious agent can compromise a mirror host and modify the files in it to "
@@ -2602,7 +2620,7 @@ msgstr ""
"ã¦ã«ã€æ‚ªæ„ã‚るソフトウェアãŒä¼æ’­ã™ã‚‹ã‚ˆã†ã«ãƒ•ã‚¡ã‚¤ãƒ«ã‚’変更ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:138
+#: apt-secure.8.xml:140
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 "
@@ -2614,12 +2632,12 @@ msgstr ""
"ã“ã®æ©Ÿæ§‹ã¯ãƒ‘ッケージã”ã¨ã®ç½²åを補完ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:144
+#: apt-secure.8.xml:146
msgid "User configuration"
msgstr "ユーザã®è¨­å®š"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:146
+#: apt-secure.8.xml:148
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 "
@@ -2632,7 +2650,7 @@ msgstr ""
"key</command> ã§ã‚­ãƒ¼ã®è¿½åŠ ãƒ»å‰Šé™¤ãŒè¡Œãˆã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:153
+#: apt-secure.8.xml:155
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 "
@@ -2649,12 +2667,12 @@ msgstr ""
"ファイルをダウンロード・検証ã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:162
+#: apt-secure.8.xml:164
msgid "Archive configuration"
msgstr "アーカイブã®è¨­å®š"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:164
+#: apt-secure.8.xml:166
msgid ""
"If you want to provide archive signatures in an archive under your "
"maintenance you have to:"
@@ -2663,7 +2681,7 @@ msgstr ""
"下ã®ã‚ˆã†ã«ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:169
+#: apt-secure.8.xml:171
msgid ""
"<emphasis>Create a toplevel Release file</emphasis>, if it does not exist "
"already. You can do this by running <command>apt-ftparchive release</"
@@ -2674,7 +2692,7 @@ msgstr ""
"ä¾›) を実行ã™ã‚‹ã¨ã€ä½œæˆã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:174
+#: apt-secure.8.xml:176
msgid ""
"<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --"
"clearsign -o InRelease Release</command> and <command>gpg -abs -o Release."
@@ -2685,7 +2703,7 @@ msgstr ""
"è¡Œã—ã¦ã€ç½²åã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:178
+#: apt-secure.8.xml:180
msgid ""
"<emphasis>Publish the key fingerprint</emphasis>, that way your users will "
"know what key they need to import in order to authenticate the files in the "
@@ -2696,7 +2714,7 @@ msgstr ""
"ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:185
+#: apt-secure.8.xml:187
msgid ""
"Whenever the contents of the archive change (new packages are added or "
"removed) the archive maintainer has to follow the first two steps outlined "
@@ -2706,7 +2724,7 @@ msgstr ""
"ンテナã¯å‰è¿°ã®æœ€åˆã® 2 ステップã«å¾“ã‚ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:193
+#: apt-secure.8.xml:195
msgid ""
"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, "
"&debsign; &debsig-verify;, &gpg;"
@@ -2715,7 +2733,7 @@ msgstr ""
"&debsign; &debsig-verify;, &gpg;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:197
+#: apt-secure.8.xml:199
msgid ""
"For more background information you might want to review the <ulink url="
"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian "
@@ -2731,12 +2749,12 @@ msgstr ""
">Strong Distribution HOWTO</ulink> ã‚’ã”覧ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:210
+#: apt-secure.8.xml:212
msgid "Manpage Authors"
msgstr "マニュアルページ作者"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:212
+#: apt-secure.8.xml:214
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."
@@ -2745,12 +2763,12 @@ msgstr ""
"Walters, Florian Weimer, Michael Vogt ã®ä½œæ¥­ã‚’å…ƒã«ã—ã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cdrom.8.xml:32
+#: apt-cdrom.8.xml:34
msgid "APT CD-ROM management utility"
msgstr "APT CD-ROM 管ç†ãƒ¦ãƒ¼ãƒ†ã‚£ãƒªãƒ†ã‚£"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:38
+#: apt-cdrom.8.xml:40
msgid ""
"<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of "
"available sources. <command>apt-cdrom</command> takes care of determining "
@@ -2763,7 +2781,7 @@ msgstr ""
"èªã‚’è¡Œã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:45
+#: apt-cdrom.8.xml:47
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 disc in a multi-CD set "
@@ -2774,7 +2792,7 @@ msgstr ""
"を補正ã§ãã‚‹ã‹è©•ä¾¡ã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:56
+#: apt-cdrom.8.xml:58
msgid ""
"<literal>add</literal> is used to add a new disc to the source list. It will "
"unmount the CD-ROM device, prompt for a disc to be inserted and then proceed "
@@ -2789,7 +2807,7 @@ msgstr ""
"ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:64
+#: apt-cdrom.8.xml:66
msgid ""
"APT uses a CD-ROM ID to track which disc is currently in the drive and "
"maintains a database of these IDs in <filename>&statedir;/cdroms.list</"
@@ -2800,7 +2818,7 @@ msgstr ""
"ベースã§ç®¡ç†ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:72
+#: apt-cdrom.8.xml:74
msgid ""
"A debugging tool to report the identity of the current disc as well as the "
"stored file name"
@@ -2809,7 +2827,23 @@ msgstr ""
"グツールã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:85
+#: apt-cdrom.8.xml:87
+#, fuzzy
+#| msgid ""
+#| "Mount point; specify the location to mount the CD-ROM. This mount point "
+#| "must be listed in <filename>/etc/fstab</filename> and properly "
+#| "configured. Configuration Item: <literal>Acquire::cdrom::mount</literal>."
+msgid ""
+"Do not try to auto-detect the CD-ROM path. Usually combined with the "
+"<option>--cdrom</option> option. Configuration Item: <literal>Acquire::"
+"cdrom::AutoDetect</literal>."
+msgstr ""
+"マウントãƒã‚¤ãƒ³ãƒˆ - CD-ROM をマウントã™ã‚‹å ´æ‰€ã‚’指定ã—ã¾ã™ã€‚ã“ã®ãƒžã‚¦ãƒ³ãƒˆãƒã‚¤ãƒ³"
+"トã¯ã€<filename>/etc/fstab</filename> ã«æ­£ã—ã設定ã•ã‚Œã¦ã„ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚"
+"設定項目: <literal>Acquire::cdrom::mount</literal>"
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-cdrom.8.xml:95
msgid ""
"Mount point; specify the location to mount the CD-ROM. This mount point must "
"be listed in <filename>/etc/fstab</filename> and properly configured. "
@@ -2820,7 +2854,7 @@ msgstr ""
"設定項目: <literal>Acquire::cdrom::mount</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:94
+#: apt-cdrom.8.xml:104
msgid ""
"Rename a disc; change the label of a disc or override the disc's given "
"label. This option will cause <command>apt-cdrom</command> to prompt for a "
@@ -2831,7 +2865,7 @@ msgstr ""
"を入力ã™ã‚‹ã‚ˆã†ä¿ƒã—ã¾ã™ã€‚設定項目: <literal>APT::CDROM::Rename</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:103
+#: 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::"
@@ -2842,7 +2876,7 @@ msgstr ""
"literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:111
+#: 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 "
@@ -2855,7 +2889,7 @@ msgstr ""
"<literal>APT::CDROM::Fast</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:121
+#: 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 "
@@ -2867,7 +2901,7 @@ msgstr ""
"ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:132
+#: 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: "
@@ -2878,12 +2912,12 @@ msgstr ""
"CDROM::NoAct</literal>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:145
+#: 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:150
+#: apt-cdrom.8.xml:160
msgid ""
"<command>apt-cdrom</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -2892,12 +2926,12 @@ msgstr ""
"100 ã‚’è¿”ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-config.8.xml:33
+#: apt-config.8.xml:35
msgid "APT Configuration Query program"
msgstr "APT 設定å–得プログラム"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:39
+#: apt-config.8.xml:41
msgid ""
"<command>apt-config</command> is an internal program used by various "
"portions of the APT suite to provide consistent configurability. It accesses "
@@ -2910,7 +2944,7 @@ msgstr ""
"ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:51
+#: apt-config.8.xml:53
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 "
@@ -2924,7 +2958,7 @@ msgstr ""
"ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-config.8.xml:59
+#: apt-config.8.xml:61
#, no-wrap
msgid ""
"OPTS=\"-f\"\n"
@@ -2936,7 +2970,7 @@ msgstr ""
"eval $RES\n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:64
+#: apt-config.8.xml:66
msgid ""
"This will set the shell environment variable $OPTS to the value of MyApp::"
"options with a default of <option>-f</option>."
@@ -2945,7 +2979,7 @@ msgstr ""
"値㯠<option>-f</option> ã¨ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:68
+#: apt-config.8.xml:70
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 "
@@ -2956,12 +2990,12 @@ msgstr ""
"ã‚’è¡Œã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:77
+#: apt-config.8.xml:79
msgid "Just show the contents of the configuration space."
msgstr "設定箇所ã®å†…容を表示ã™ã‚‹ã ã‘ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:90
+#: apt-config.8.xml:92
msgid ""
"Include options which have an empty value. This is the default, so use --no-"
"empty to remove them from the output."
@@ -2970,12 +3004,12 @@ msgstr ""
"--no-empty ã¨ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-config.8.xml:95
+#: apt-config.8.xml:97
msgid "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
msgstr "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:96
+#: apt-config.8.xml:98
msgid ""
"Defines the output of each config option. &percnt;t will be replaced with "
"its individual name, &percnt;f with its full hierarchical name and &percnt;v "
@@ -2992,13 +3026,13 @@ msgstr ""
"ã•ã„。"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:110 apt-extracttemplates.1.xml:71 apt-sortpkgs.1.xml:64
-#: apt-ftparchive.1.xml:608
+#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66
+#: apt-ftparchive.1.xml:610
msgid "&apt-conf;"
msgstr "&apt-conf;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:115
+#: apt-config.8.xml:117
msgid ""
"<command>apt-config</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -3007,27 +3041,27 @@ msgstr ""
"ã® 100 ã‚’è¿”ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refentryinfo><author><contrib>
-#: apt.conf.5.xml:20
+#: apt.conf.5.xml:22
msgid "Initial documentation of Debug::*."
msgstr "Debug::* ã«é–¢ã™ã‚‹æœ€åˆã®ãƒ‰ã‚­ãƒ¥ãƒ¡ãƒ³ãƒˆ"
#. type: Content of: <refentry><refentryinfo><author><email>
-#: apt.conf.5.xml:21
+#: apt.conf.5.xml:23
msgid "dburrows@debian.org"
msgstr "dburrows@debian.org"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt.conf.5.xml:31 apt_preferences.5.xml:25 sources.list.5.xml:26
+#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28
msgid "5"
msgstr "5"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt.conf.5.xml:38
+#: apt.conf.5.xml:40
msgid "Configuration file for APT"
msgstr "APT ã®è¨­å®šãƒ•ã‚¡ã‚¤ãƒ«"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:42
+#: apt.conf.5.xml:44
msgid ""
"<filename>/etc/apt/apt.conf</filename> is the main configuration file shared "
"by all the tools in the APT suite of tools, though it is by no means the "
@@ -3040,21 +3074,21 @@ msgstr ""
"ンドラインパーサを共有ã—ã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><orderedlist><para>
-#: apt.conf.5.xml:48
+#: apt.conf.5.xml:50
msgid ""
"When an APT tool starts up it will read the configuration files in the "
"following order:"
msgstr "APT ツールã®èµ·å‹•æ™‚ã«ã€è¨­å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’以下ã®é †ç•ªã§èª­ã¿è¾¼ã¿ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:50
+#: apt.conf.5.xml:52
msgid ""
"the file specified by the <envar>APT_CONFIG</envar> environment variable (if "
"any)"
msgstr "<envar>APT_CONFIG</envar> 環境変数ã§æŒ‡å®šã—ãŸãƒ•ã‚¡ã‚¤ãƒ« (存在ã™ã‚‹å ´åˆ)"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:52
+#: apt.conf.5.xml:54
msgid ""
"all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
"order which have either no or \"<literal>conf</literal>\" as filename "
@@ -3072,13 +3106,13 @@ msgstr ""
"力ã—ã¾ã™ã€‚一致ã™ã‚‹å ´åˆã¯é»™ã£ã¦ç„¡è¦–ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:59
+#: apt.conf.5.xml:61
msgid ""
"the main configuration file specified by <literal>Dir::Etc::main</literal>"
msgstr "<literal>Dir::Etc::Main</literal> ã§æŒ‡å®šã•ã‚Œã‚‹ã€ãƒ¡ã‚¤ãƒ³è¨­å®šãƒ•ã‚¡ã‚¤ãƒ«"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:61
+#: apt.conf.5.xml:63
msgid ""
"the command line options are applied to override the configuration "
"directives or to load even more configuration files."
@@ -3087,12 +3121,12 @@ msgstr ""
"加読ã¿è¾¼ã¿ãŒã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:65
+#: apt.conf.5.xml:67
msgid "Syntax"
msgstr "構文"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:66
+#: apt.conf.5.xml:68
msgid ""
"The configuration file is organized in a tree with options organized into "
"functional groups. Option specification is given with a double colon "
@@ -3106,7 +3140,7 @@ msgstr ""
"プションã¯ã€è¦ªã‚°ãƒ«ãƒ¼ãƒ—ã‹ã‚‰ã¯ç¶™æ‰¿ã—ã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:72
+#: apt.conf.5.xml:74
msgid ""
"Syntactically the configuration language is modeled after what the ISC tools "
"such as bind and dhcp use. Lines starting with <literal>//</literal> are "
@@ -3129,7 +3163,7 @@ msgstr ""
"ã®ã‚ˆã†ã«æ³¢ã‚«ãƒƒã‚³ã‚’使ã†ã¨ã€æ–°ã—ã„スコープを開ãã“ã¨ãŒã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:85
+#: apt.conf.5.xml:87
#, no-wrap
msgid ""
"APT {\n"
@@ -3147,7 +3181,7 @@ msgstr ""
"};\n"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:93
+#: apt.conf.5.xml:95
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 "
@@ -3158,13 +3192,13 @@ msgstr ""
"ロンã§åŒºåˆ‡ã£ã¦ã€è¤‡æ•°ã®ã‚¨ãƒ³ãƒˆãƒªã‚’表ã›ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:98
+#: apt.conf.5.xml:100
#, 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:101
+#: apt.conf.5.xml:103
msgid ""
"In general the sample configuration file &configureindex; is a good guide "
"for how it should look."
@@ -3173,7 +3207,7 @@ msgstr ""
"考ã«ãªã‚‹ã§ã—ょã†ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:104
+#: apt.conf.5.xml:106
msgid ""
"Case is not significant in names of configuration items, so in the previous "
"example you could use <literal>dpkg::pre-install-pkgs</literal>."
@@ -3182,7 +3216,7 @@ msgstr ""
"<literal>dpkg::pre-install-pkgs</literal> ã¨ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:107
+#: apt.conf.5.xml:109
msgid ""
"Names for the configuration items are optional if a list is defined as can "
"be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If "
@@ -3197,7 +3231,7 @@ msgstr ""
"ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:112
+#: apt.conf.5.xml:114
msgid ""
"Two special commands are defined: <literal>#include</literal> (which is "
"deprecated and not supported by alternative implementations) and "
@@ -3216,7 +3250,7 @@ msgstr ""
"ãŒã‚ã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„)。"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:122
+#: apt.conf.5.xml:124
msgid ""
"The <literal>#clear</literal> command is the only way to delete a list or a "
"complete scope. Reopening a scope (or using the syntax described below with "
@@ -3231,7 +3265,7 @@ msgstr ""
"ã›ã‚“。クリアã•ã‚Œã‚‹ã ã‘ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:130
+#: apt.conf.5.xml:132
msgid ""
"All of the APT tools take an -o option which allows an arbitrary "
"configuration directive to be specified on the command line. The syntax is a "
@@ -3249,7 +3283,7 @@ msgstr ""
"ん)。"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:138
+#: apt.conf.5.xml:140
msgid ""
"Note that appending items to a list using <literal>::</literal> only works "
"for one item per line, and that you should not use it in combination with "
@@ -3277,12 +3311,12 @@ msgstr ""
"ã‹ãªã„é™ã‚Šã¯ã€è‡ªåˆ†ã§ãã®ã‚ˆã†ãªæ§‹æ–‡ã‚’修正ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:153
+#: apt.conf.5.xml:155
msgid "The APT Group"
msgstr "APT グループ"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:154
+#: apt.conf.5.xml:156
msgid ""
"This group of options controls general APT behavior as well as holding the "
"options for all of the tools."
@@ -3291,7 +3325,7 @@ msgstr ""
"御ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:159
+#: apt.conf.5.xml:161
msgid ""
"System Architecture; sets the architecture to use when fetching files and "
"parsing package lists. The internal default is the architecture apt was "
@@ -3302,7 +3336,7 @@ msgstr ""
"ルã—ãŸã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:166
+#: apt.conf.5.xml:168
msgid ""
"All Architectures the system supports. For instance, CPUs implementing the "
"<literal>amd64</literal> (also called <literal>x86-64</literal>) "
@@ -3323,7 +3357,7 @@ msgstr ""
"加ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:179
+#: apt.conf.5.xml:181
msgid ""
"Default release to install packages from if more than one version is "
"available. Contains release name, codename or release version. Examples: "
@@ -3336,7 +3370,7 @@ msgstr ""
"'4.0', '5.0*' ã¨ãªã‚Šã¾ã™ã€‚&apt-preferences; ã‚‚å‚ç…§ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:185
+#: apt.conf.5.xml:187
msgid ""
"Ignore held packages; this global option causes the problem resolver to "
"ignore held packages in its decision making."
@@ -3345,7 +3379,7 @@ msgstr ""
"パッケージを無視ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:190
+#: apt.conf.5.xml:192
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 "
@@ -3359,7 +3393,7 @@ msgstr ""
"注æ„ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:198
+#: apt.conf.5.xml:200
msgid ""
"Defaults to on, which will cause APT to install essential and important "
"packages as soon as possible in an install/upgrade operation, in order to "
@@ -3383,7 +3417,7 @@ msgstr ""
"ãªã‚Šã€A ã¸ã®ä¾å­˜é–¢ä¿‚ã¯ã€ã‚‚ã†æº€ãŸã›ã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:210
+#: apt.conf.5.xml:212
msgid ""
"The immediate configuration marker is also applied in the potentially "
"problematic case of circular dependencies, since a dependency with the "
@@ -3408,7 +3442,7 @@ msgstr ""
"è¿°ã®ã‚·ãƒŠãƒªã‚ªã‚’解決ã™ã‚‹æ–¹æ³•ã®ã€1ã¤ã«ã—ã‹ã™ãŽãªã„ã®ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:223
+#: apt.conf.5.xml:225
msgid ""
"Before a big operation like <literal>dist-upgrade</literal> is run with this "
"option disabled you should try to explicitly <literal>install</literal> the "
@@ -3424,7 +3458,7 @@ msgstr ""
"も報告ã—ã¦ã„ãŸã ããŸã„ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:234
+#: apt.conf.5.xml:236
msgid ""
"Never enable this option unless you <emphasis>really</emphasis> know what "
"you are doing. It permits APT to temporarily remove an essential package to "
@@ -3445,7 +3479,7 @@ msgstr ""
"ãれらãŒä¾å­˜ã—ã¦ã„るパッケージ以外ã®ä¸å¯æ¬ ãƒ‘ッケージã§å‹•ä½œã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:246
+#: apt.conf.5.xml:248
msgid ""
"APT uses since version 0.7.26 a resizable memory mapped cache file to store "
"the available information. <literal>Cache-Start</literal> acts as a hint of "
@@ -3479,12 +3513,12 @@ msgstr ""
"ã®è‡ªå‹•å¢—加を無効ã«ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:262
+#: apt.conf.5.xml:264
msgid "Defines which packages are considered essential build dependencies."
msgstr "構築ä¾å­˜é–¢ä¿‚ã§ä¸å¯æ¬ ãªãƒ‘ッケージを定義ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:266
+#: apt.conf.5.xml:268
msgid ""
"The Get subsection controls the &apt-get; tool; please see its documentation "
"for more information about the options here."
@@ -3493,7 +3527,7 @@ msgstr ""
"&apt-get; ã®æ–‡æ›¸ã‚’å‚ç…§ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:271
+#: apt.conf.5.xml:273
msgid ""
"The Cache subsection controls the &apt-cache; tool; please see its "
"documentation for more information about the options here."
@@ -3502,7 +3536,7 @@ msgstr ""
"㯠&apt-cache; ã®æ–‡æ›¸ã‚’å‚ç…§ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:276
+#: apt.conf.5.xml:278
msgid ""
"The CDROM subsection controls the &apt-cdrom; tool; please see its "
"documentation for more information about the options here."
@@ -3511,12 +3545,12 @@ msgstr ""
"㯠&apt-cdrom; ã®æ–‡æ›¸ã‚’å‚ç…§ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:282
+#: apt.conf.5.xml:284
msgid "The Acquire Group"
msgstr "Acquire グループ"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:283
+#: apt.conf.5.xml:285
msgid ""
"The <literal>Acquire</literal> group of options controls the download of "
"packages as well as the various \"acquire methods\" responsible for the "
@@ -3527,7 +3561,7 @@ msgstr ""
"(&sources-list; ã‚‚å‚ç…§)。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:290
+#: apt.conf.5.xml:292
msgid ""
"Security related option defaulting to true, as giving a Release file's "
"validation an expiration date prevents replay attacks over a long timescale, "
@@ -3547,7 +3581,7 @@ msgstr ""
"下㮠<literal>Max-ValidTime</literal> オプションを使用ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:303
+#: apt.conf.5.xml:305
msgid ""
"Maximum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3565,7 +3599,7 @@ msgstr ""
"固有ã®è¨­å®šã‚’作æˆã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:315
+#: apt.conf.5.xml:317
msgid ""
"Minimum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3583,7 +3617,7 @@ msgstr ""
"定を作æˆã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:327
+#: apt.conf.5.xml:329
msgid ""
"Try to download deltas called <literal>PDiffs</literal> for indexes (like "
"<filename>Packages</filename> files) instead of downloading whole ones. True "
@@ -3594,7 +3628,7 @@ msgstr ""
"ã™ã€‚デフォルトã§ã¯ True ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:330
+#: apt.conf.5.xml:332
msgid ""
"Two sub-options to limit the use of PDiffs are also available: "
"<literal>FileLimit</literal> can be used to specify a maximum number of "
@@ -3610,7 +3644,7 @@ msgstr ""
"ã‚‚ã€ãƒ‘ッãƒã‚’ダウンロードã™ã‚‹ä»£ã‚ã‚Šã«ã€å®Œå…¨ãªãƒ•ã‚¡ã‚¤ãƒ«ã‚’ダウンロードã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:340
+#: apt.conf.5.xml:342
msgid ""
"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
"literal> or <literal>access</literal> which determines how APT parallelizes "
@@ -3624,7 +3658,7 @@ msgstr ""
"<literal>access</literal> ã¯ã€URI タイプã”ã¨ã« 1 接続を開ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:348
+#: apt.conf.5.xml:350
msgid ""
"Number of retries to perform. If this is non-zero APT will retry failed "
"files the given number of times."
@@ -3633,7 +3667,7 @@ msgstr ""
"ãˆã‚‰ã‚ŒãŸå›žæ•°ã ã‘リトライを行ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:353
+#: apt.conf.5.xml:355
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."
@@ -3643,7 +3677,7 @@ msgstr ""
"ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:358
+#: apt.conf.5.xml:360
msgid ""
"<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. "
"It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</"
@@ -3661,7 +3695,7 @@ msgstr ""
"ãªã„ã¨ã€ç’°å¢ƒå¤‰æ•° <envar>http_proxy</envar> を使用ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:366
+#: apt.conf.5.xml:368
msgid ""
"Three settings are provided for cache control with HTTP/1.1 compliant proxy "
"caches. <literal>No-Cache</literal> tells the proxy not to use its cached "
@@ -3680,7 +3714,7 @@ msgstr ""
"ãŒæ±šã‚Œã‚‹ã®ã‚’防ã’ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:376 apt.conf.5.xml:448
+#: apt.conf.5.xml:378 apt.conf.5.xml:466
msgid ""
"The option <literal>timeout</literal> sets the timeout timer used by the "
"method; this value applies to the connection as well as the data timeout."
@@ -3690,7 +3724,7 @@ msgstr ""
"ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:379
+#: apt.conf.5.xml:381
msgid ""
"The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to "
"enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e."
@@ -3708,7 +3742,7 @@ msgstr ""
"フォルト値㯠0 (= 無効) ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:386
+#: apt.conf.5.xml:388
msgid ""
"<literal>Acquire::http::AllowRedirect</literal> controls whether APT will "
"follow redirects, which is enabled by default."
@@ -3717,13 +3751,20 @@ msgstr ""
"ã‹ã©ã†ã‹ã‚’制御ã—ã¾ã™ã€‚デフォルトã§ã¯æœ‰åŠ¹ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:389
+#: apt.conf.5.xml:391
+#, fuzzy
+#| msgid ""
+#| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
+#| "literal> which accepts integer values in kilobytes. The default value is "
+#| "0 which deactivates the limit and tries to use all available bandwidth "
+#| "(note that this option implicitly disables downloading from multiple "
+#| "servers at the same time.)"
msgid ""
"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
-"literal> which accepts integer values in kilobytes. The default value is 0 "
-"which deactivates the limit and tries to use all available bandwidth (note "
-"that this option implicitly disables downloading from multiple servers at "
-"the same time.)"
+"literal> which accepts integer values in kilobytes per second. The default "
+"value is 0 which deactivates the limit and tries to use all available "
+"bandwidth. Note that this option implicitly disables downloading from "
+"multiple servers at the same time."
msgstr ""
"使用ã™ã‚‹å¸¯åŸŸã‚’制é™ã™ã‚‹ã«ã¯ã€<literal>Acquire::http::Dl-Limit</literal> ã«ã‚­ãƒ­"
"ãƒã‚¤ãƒˆã§æ•´æ•°å€¤ã‚’与ãˆã¾ã™ã€‚デフォルト値㯠0 ã§ã€åˆ¶é™ã‚’解除ã—ã€ä½¿ç”¨ã§ãる帯域を"
@@ -3731,7 +3772,7 @@ msgstr ""
"ロードã—ãªããªã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„)。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:394
+#: apt.conf.5.xml:398
msgid ""
"<literal>Acquire::http::User-Agent</literal> can be used to set a different "
"User-Agent for the http download method as some proxies allow access for "
@@ -3744,6 +3785,20 @@ msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
#: apt.conf.5.xml:402
msgid ""
+"<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify "
+"an external command to discover the http proxy to use. Apt expects the "
+"command to output the proxy on stdout in the style <literal>http://proxy:"
+"port/</literal>. This will override the generic <literal>Acquire::http::"
+"Proxy</literal> but not any specific host proxy configuration set via "
+"<literal>Acquire::http::Proxy::$HOST</literal>. See the &squid-deb-proxy-"
+"client; package for an example implementation that uses avahi. This option "
+"takes precedence over the legacy option name <literal>ProxyAutoDetect</"
+"literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:420
+msgid ""
"The <literal>Cache-control</literal>, <literal>Timeout</literal>, "
"<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and "
"<literal>proxy</literal> options work for HTTPS URIs in the same way as for "
@@ -3759,7 +3814,7 @@ msgstr ""
"ã—ã¦ã„ã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:410
+#: apt.conf.5.xml:428
msgid ""
"<literal>CaInfo</literal> suboption specifies place of file that holds info "
"about trusted certificates. <literal>&lt;host&gt;::CaInfo</literal> is the "
@@ -3797,7 +3852,7 @@ msgstr ""
"ã”ã¨ã®ã‚ªãƒ—ションã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:431
+#: apt.conf.5.xml:449
msgid ""
"<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. "
"It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</"
@@ -3829,7 +3884,7 @@ msgstr ""
"literal>, <literal>$(SITE_PORT)</literal> ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:451
+#: apt.conf.5.xml:469
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, "
@@ -3844,7 +3899,7 @@ msgstr ""
"定例ã¯ã‚µãƒ³ãƒ—ル設定ファイルをå‚ç…§ã—ã¦ãã ã•ã„)。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:458
+#: apt.conf.5.xml:476
msgid ""
"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
"envar> environment variable to an HTTP URL - see the discussion of the http "
@@ -3857,7 +3912,7 @@ msgstr ""
"FTP over HTTP を使用ã™ã‚‹ã®ã¯æŽ¨å¥¨ã—ã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:463
+#: apt.conf.5.xml:481
msgid ""
"The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@ -3873,13 +3928,13 @@ msgstr ""
"ã„ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:477
+#: apt.conf.5.xml:495
#, no-wrap
msgid "/cdrom/::Mount \"foo\";"
msgstr "/cdrom/::Mount \"foo\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:472
+#: apt.conf.5.xml:490
msgid ""
"For URIs using the <literal>cdrom</literal> method, the only configurable "
"option is the mount point, <literal>cdrom::Mount</literal>, which must be "
@@ -3900,7 +3955,7 @@ msgstr ""
"マンド㯠UMount ã§æŒ‡å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:485
+#: apt.conf.5.xml:503
msgid ""
"For GPGV URIs the only configurable option is <literal>gpgv::Options</"
"literal>, which passes additional parameters to gpgv."
@@ -3909,13 +3964,13 @@ msgstr ""
"ã‚‹ã€<literal>gpgv::Options</literal> ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:496
+#: apt.conf.5.xml:514
#, no-wrap
msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
msgstr "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:491
+#: apt.conf.5.xml:509
msgid ""
"List of compression types which are understood by the acquire methods. "
"Files like <filename>Packages</filename> can be available in various "
@@ -3933,19 +3988,19 @@ msgstr ""
"ã™ã€‚構文ã¯ä»¥ä¸‹ã®ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚<placeholder type=\"synopsis\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:501
+#: apt.conf.5.xml:519
#, no-wrap
msgid "Acquire::CompressionTypes::Order:: \"gz\";"
msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:504
+#: apt.conf.5.xml:522
#, no-wrap
msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:497
+#: apt.conf.5.xml:515
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 "
@@ -3974,13 +4029,13 @@ msgstr ""
"<literal>bz2</literal> ã¯è‡ªå‹•çš„ã«è¿½åŠ ã•ã‚Œã‚‹ãŸã‚ã€æ˜Žç¤ºã™ã‚‹å¿…è¦ã¯ã‚ã‚Šã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:511
+#: apt.conf.5.xml:529
#, no-wrap
msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:506
+#: apt.conf.5.xml:524
msgid ""
"Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></"
"literal> will be checked at run time. If this option has been set, the "
@@ -4004,7 +4059,7 @@ msgstr ""
"ã®ã¿å®šç¾©ã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:516
+#: apt.conf.5.xml:534
msgid ""
"The special type <literal>uncompressed</literal> can be used to give "
"uncompressed files a preference, but note that most archives don't provide "
@@ -4015,7 +4070,7 @@ msgstr ""
"ã‚“ã©ãƒ­ãƒ¼ã‚«ãƒ«ãƒŸãƒ©ãƒ¼ã§ã®ã¿æœ‰åŠ¹ã«ãªã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:523
+#: apt.conf.5.xml:541
msgid ""
"When downloading <literal>gzip</literal> compressed indexes (Packages, "
"Sources, or Translations), keep them gzip compressed locally instead of "
@@ -4028,7 +4083,7 @@ msgstr ""
"ã™ã‚‹éš›ã«ã€CPU ã®èƒ½åŠ›ã‚’余計ã«æ¶ˆè²»ã—ã¾ã™ã€‚デフォルトã§ã¯ false ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:531
+#: apt.conf.5.xml:549
msgid ""
"The Languages subsection controls which <filename>Translation</filename> "
"files are downloaded and in which order APT tries to display the description-"
@@ -4046,13 +4101,13 @@ msgstr ""
"æ„ã—ã¦ãã ã•ã„。長ã„言語コードã¯ç‰¹ã«è¦‹ã‹ã‘ã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting>
-#: apt.conf.5.xml:548
+#: apt.conf.5.xml:566
#, no-wrap
msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:536
+#: apt.conf.5.xml:554
msgid ""
"The default list includes \"environment\" and \"en\". "
"\"<literal>environment</literal>\" has a special meaning here: it will be "
@@ -4089,7 +4144,7 @@ msgstr ""
"ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:549
+#: apt.conf.5.xml:567
msgid ""
"Note: To prevent problems resulting from APT being executed in different "
"environments (e.g. by different users or by other programs) all Translation "
@@ -4102,22 +4157,22 @@ msgstr ""
"後) ã«è¿½åŠ ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:558
+#: apt.conf.5.xml:576
msgid "When downloading, force to use only the IPv4 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:564
+#: apt.conf.5.xml:582
msgid "When downloading, force to use only the IPv6 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:571
+#: apt.conf.5.xml:589
msgid "Directories"
msgstr "ディレクトリ"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:573
+#: apt.conf.5.xml:591
msgid ""
"The <literal>Dir::State</literal> section has directories that pertain to "
"local state information. <literal>lists</literal> is the directory to place "
@@ -4136,7 +4191,7 @@ msgstr ""
"サブアイテムã™ã¹ã¦ã«ã€å‰ã«ä»˜åŠ ã™ã‚‹ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’å«ã‚“ã§ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:580
+#: apt.conf.5.xml:598
msgid ""
"<literal>Dir::Cache</literal> contains locations pertaining to local cache "
"information, such as the two package caches <literal>srcpkgcache</literal> "
@@ -4157,7 +4212,7 @@ msgstr ""
"様ã€<literal>Dir::Cache</literal> ã¯ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’å«ã‚“ã§ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:589
+#: apt.conf.5.xml:607
msgid ""
"<literal>Dir::Etc</literal> contains the location of configuration files, "
"<literal>sourcelist</literal> gives the location of the sourcelist and "
@@ -4171,7 +4226,7 @@ msgstr ""
"ファイルを指定ã•ã‚ŒãŸå ´åˆã®ã¿ã€ã“ã®è¨­å®šã®åŠ¹æžœãŒã‚ã‚Šã¾ã™)"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:595
+#: apt.conf.5.xml:613
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 "
@@ -4182,7 +4237,7 @@ msgstr ""
"ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:599
+#: apt.conf.5.xml:617
msgid ""
"Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
"Bin::Methods</literal> specifies the location of the method handlers and "
@@ -4199,7 +4254,7 @@ msgstr ""
"プログラムã®å ´æ‰€ã‚’指定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:607
+#: apt.conf.5.xml:625
msgid ""
"The configuration item <literal>RootDir</literal> has a special meaning. If "
"set, all paths in <literal>Dir::</literal> will be relative to "
@@ -4219,7 +4274,7 @@ msgstr ""
"<filename>/tmp/staging/var/lib/dpkg/status</filename> ã‹ã‚‰æŽ¢ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:620
+#: apt.conf.5.xml:638
msgid ""
"The <literal>Ignore-Files-Silently</literal> list can be used to specify "
"which files APT should silently ignore while parsing the files in the "
@@ -4235,12 +4290,12 @@ msgstr ""
"フォルト値を見れã°ã‚ã‹ã‚‹é€šã‚Šã€ã“ã®ãƒ‘ターンã«ã¯æ­£è¦è¡¨ç¾ã‚’使用ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:629
+#: apt.conf.5.xml:647
msgid "APT in DSelect"
msgstr "DSelect ã§ã® APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:631
+#: apt.conf.5.xml:649
msgid ""
"When APT is used as a &dselect; method several configuration directives "
"control the default behavior. These are in the <literal>DSelect</literal> "
@@ -4251,7 +4306,7 @@ msgstr ""
"ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:636
+#: apt.conf.5.xml:654
msgid ""
"Cache Clean mode; this value may be one of <literal>always</literal>, "
"<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</"
@@ -4272,7 +4327,7 @@ msgstr ""
"パッケージをダウンロードã™ã‚‹ç›´å‰ã«è¡Œã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:650
+#: apt.conf.5.xml:668
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the install phase."
@@ -4281,7 +4336,7 @@ msgstr ""
"ã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:655
+#: apt.conf.5.xml:673
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the update phase."
@@ -4290,7 +4345,7 @@ msgstr ""
"ã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:660
+#: apt.conf.5.xml:678
msgid ""
"If true the [U]pdate operation in &dselect; will always prompt to continue. "
"The default is to prompt only on error."
@@ -4299,12 +4354,12 @@ msgstr ""
"ã—ã¾ã™ã€‚デフォルトã¯ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ãŸå ´åˆã®ã¿ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:666
+#: apt.conf.5.xml:684
msgid "How APT calls &dpkg;"
msgstr "APT ㌠&dpkg; を呼ã¶æ–¹æ³•"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:667
+#: apt.conf.5.xml:685
msgid ""
"Several configuration directives control how APT invokes &dpkg;. These are "
"in the <literal>DPkg</literal> section."
@@ -4313,7 +4368,7 @@ msgstr ""
"<literal>DPkg</literal> セクションã«ã‚ã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:672
+#: apt.conf.5.xml:690
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 "
@@ -4323,7 +4378,7 @@ msgstr ""
"ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。ã¾ãŸã€å„リストã¯å˜ä¸€ã®å¼•æ•°ã¨ã—㦠&dpkg; ã«æ¸¡ã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:678
+#: apt.conf.5.xml:696
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 "
@@ -4335,13 +4390,21 @@ msgstr ""
"bin/sh</filename> を通ã—ã¦å‘¼ã³å‡ºã•ã‚Œã€ä½•ã‹å•é¡ŒãŒã‚れ㰠APT ãŒç•°å¸¸çµ‚了ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:685
+#: apt.conf.5.xml:703
+#, fuzzy
+#| msgid ""
+#| "This is a list of shell commands to run before invoking &dpkg;. Like "
+#| "<literal>options</literal> this must be specified in list notation. The "
+#| "commands are invoked in order using <filename>/bin/sh</filename>; should "
+#| "any fail APT will abort. APT will pass the filenames of all .deb files it "
+#| "is going to install to the commands, one per line on standard input."
msgid ""
"This is a list of shell commands to run before invoking &dpkg;. Like "
"<literal>options</literal> this must be specified in list notation. The "
"commands are invoked in order using <filename>/bin/sh</filename>; should any "
"fail APT will abort. APT will pass the filenames of all .deb files it is "
-"going to install to the commands, one per line on standard input."
+"going to install to the commands, one per line on the requested file "
+"descriptor, defaulting to standard input."
msgstr ""
"&dpkg; を呼ã³å‡ºã™å‰ã«å®Ÿè¡Œã™ã‚‹ã‚·ã‚§ãƒ«ã‚³ãƒžãƒ³ãƒ‰ã®ãƒªã‚¹ãƒˆã§ã™ã€‚<literal>options</"
"literal> ã®ã‚ˆã†ã«ãƒªã‚¹ãƒˆè¨˜æ³•ã§æŒ‡å®šã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。コマンド㯠<filename>/"
@@ -4350,13 +4413,19 @@ msgstr ""
"マンドã®æ¨™æº–入力ã«é€ã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:691
+#: apt.conf.5.xml:710
+#, fuzzy
+#| msgid ""
+#| "Version 2 of this protocol dumps more information, including the protocol "
+#| "version, the APT configuration space and the packages, files and versions "
+#| "being changed. Version 2 is enabled by setting <literal>DPkg::Tools::"
+#| "options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command "
+#| "given to <literal>Pre-Install-Pkgs</literal>."
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 3 adds the architecture and <literal>MultiArch</"
+"literal> flag to each version being dumped."
msgstr ""
"ã“ã®ãƒ—ロトコルã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ 2 ã§ã¯ã€(プロトコルã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚„ APT 設定スペー"
"スã€ãƒ‘ッケージをå«ã‚€) 詳細情報やファイルã€å¤‰æ›´ã•ã‚Œã¦ã„ã‚‹ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’出力ã—ã¾"
@@ -4365,7 +4434,29 @@ msgstr ""
"Install-Pkgs</literal> ã§ä¸Žãˆã‚‰ã‚Œã‚‹ã‚³ãƒžãƒ³ãƒ‰ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:699
+#: apt.conf.5.xml:715
+msgid ""
+"The version of the protocol to be used for the command "
+"<literal><replaceable>cmd</replaceable></literal> can be chosen by setting "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::Version</"
+"literal> accordingly, the default being version 1. If APT isn't supporting "
+"the requested version it will send the information in the highest version it "
+"has support for instead."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:722
+msgid ""
+"The file descriptor to be used to send the information can be requested with "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</"
+"literal> which defaults to <literal>0</literal> for standard input and is "
+"available since version 0.9.11. Support for the option can be detected by "
+"looking for the environment variable <envar>APT_HOOK_INFO_FD</envar> which "
+"contains the number of the used file descriptor as a confirmation."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:732
msgid ""
"APT chdirs to this directory before invoking &dpkg;, the default is "
"<filename>/</filename>."
@@ -4374,7 +4465,7 @@ msgstr ""
"<filename>/</filename> ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:704
+#: apt.conf.5.xml:737
msgid ""
"These options are passed to &dpkg-buildpackage; when compiling packages; the "
"default is to disable signing and produce all binaries."
@@ -4383,12 +4474,12 @@ msgstr ""
"ã¾ã™ã€‚デフォルトã§ã¯ç½²åを無効ã«ã—ã€å…¨ãƒã‚¤ãƒŠãƒªã‚’生æˆã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt.conf.5.xml:709
+#: apt.conf.5.xml:742
msgid "dpkg trigger usage (and related options)"
msgstr "dpkg トリガã®ä½¿ã„æ–¹ (ãŠã‚ˆã³é–¢é€£ã‚ªãƒ—ション)"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:710
+#: apt.conf.5.xml:743
msgid ""
"APT can call &dpkg; in such a way as to let it make aggressive use of "
"triggers over multiple calls of &dpkg;. Without further options &dpkg; will "
@@ -4412,7 +4503,7 @@ msgstr ""
"(ã‚‚ã—ãã¯ãれ以上) ã®æ™‚é–“ 100% ã®ã¾ã¾ã¨ãªã‚Šã€é€²æ—レãƒãƒ¼ãƒˆã‚’壊ã—ã¦ã—ã¾ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
-#: apt.conf.5.xml:725
+#: apt.conf.5.xml:758
#, no-wrap
msgid ""
"DPkg::NoTriggers \"true\";\n"
@@ -4426,7 +4517,7 @@ msgstr ""
"DPkg::TriggersPending \"true\";"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:719
+#: apt.conf.5.xml:752
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 "
@@ -4449,7 +4540,7 @@ msgstr ""
"\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:732
+#: apt.conf.5.xml:765
msgid ""
"Add the no triggers flag to all &dpkg; calls (except the ConfigurePending "
"call). See &dpkg; if you are interested in what this actually means. In "
@@ -4469,7 +4560,7 @@ msgstr ""
"在 APT ã¯ã€ã“ã®ãƒ•ãƒ©ã‚°ã‚’ã€å±•é–‹å‘¼ã³å‡ºã—や削除呼ã³å‡ºã—ã«ã‚‚追加ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:740
+#: apt.conf.5.xml:773
msgid ""
"Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
"and \"<literal>no</literal>\". The default value is \"<literal>all</literal>"
@@ -4496,7 +4587,7 @@ msgstr ""
"能性ãŒã‚ã‚‹ã‹ã‚‰ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:755
+#: apt.conf.5.xml:788
msgid ""
"If this option is set APT will call <command>dpkg --configure --pending</"
"command> to let &dpkg; handle all required configurations and triggers. This "
@@ -4513,7 +4604,7 @@ msgstr ""
"ã§ã¯ã€æœ€å¾Œä»¥å¤–ã®ã™ã¹ã¦ã®å®Ÿè¡Œã§ã€ç„¡åŠ¹ã«ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:762
+#: apt.conf.5.xml:795
msgid ""
"Useful for the <literal>smart</literal> configuration as a package which has "
"pending triggers is not considered as <literal>installed</literal>, and "
@@ -4528,7 +4619,7 @@ msgstr ""
"ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:775
+#: apt.conf.5.xml:808
#, no-wrap
msgid ""
"OrderList::Score {\n"
@@ -4546,7 +4637,7 @@ msgstr ""
"};"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:768
+#: apt.conf.5.xml:801
msgid ""
"Essential packages (and their dependencies) should be configured immediately "
"after unpacking. It is a good idea to do this quite early in the upgrade "
@@ -4569,12 +4660,12 @@ msgstr ""
"\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:788
+#: apt.conf.5.xml:821
msgid "Periodic and Archives options"
msgstr "Periodic オプション㨠Archives オプション"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:789
+#: apt.conf.5.xml:822
msgid ""
"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
"of options configure behavior of apt periodic updates, which is done by the "
@@ -4587,12 +4678,12 @@ msgstr ""
"トã¯ã€ã“ã®ã‚¹ã‚¯ãƒªãƒ—トã®å…ˆé ­ã‚’å‚ç…§ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:797
+#: apt.conf.5.xml:830
msgid "Debug options"
msgstr "デãƒãƒƒã‚°ã‚ªãƒ—ション"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:799
+#: apt.conf.5.xml:832
msgid ""
"Enabling options in the <literal>Debug::</literal> section will cause "
"debugging information to be sent to the standard error stream of the program "
@@ -4608,7 +4699,7 @@ msgstr ""
"ã®ã‚ªãƒ—ションã¯èˆˆå‘³ãŒãªã„ã§ã—ょã†ãŒã€ä»¥ä¸‹ã®ã‚‚ã®ã¯èˆˆå‘³ã‚’引ãã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:810
+#: apt.conf.5.xml:843
msgid ""
"<literal>Debug::pkgProblemResolver</literal> enables output about the "
"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@ -4619,7 +4710,7 @@ msgstr ""
"ã«ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:818
+#: apt.conf.5.xml:851
msgid ""
"<literal>Debug::NoLocking</literal> disables all file locking. This can be "
"used to run some operations (for instance, <literal>apt-get -s install</"
@@ -4630,7 +4721,7 @@ msgstr ""
"literal>) ã‚’è¡Œã†å ´åˆã«ä½¿ç”¨ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:827
+#: apt.conf.5.xml:860
msgid ""
"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
"time that <literal>apt</literal> invokes &dpkg;."
@@ -4642,7 +4733,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:835
+#: apt.conf.5.xml:868
msgid ""
"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
"in CD-ROM IDs."
@@ -4651,34 +4742,34 @@ msgstr ""
"ãªã„よã†ã«ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:845
+#: apt.conf.5.xml:878
msgid "A full list of debugging options to apt follows."
msgstr "以下㯠apt ã«å¯¾ã™ã‚‹ãƒ‡ãƒãƒƒã‚°ã‚ªãƒ—ションã®ã™ã¹ã¦ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:854
+#: apt.conf.5.xml:887
msgid ""
"Print information related to accessing <literal>cdrom://</literal> sources."
msgstr ""
"<literal>cdrom://</literal> ソースã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã«é–¢ã™ã‚‹æƒ…報を出力ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:865
+#: apt.conf.5.xml:898
msgid "Print information related to downloading packages using FTP."
msgstr "FTP を用ã„ãŸãƒ‘ッケージã®ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã«é–¢ã™ã‚‹æƒ…報を出力ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:876
+#: apt.conf.5.xml:909
msgid "Print information related to downloading packages using HTTP."
msgstr "HTTP を用ã„ãŸãƒ‘ッケージã®ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã«é–¢ã™ã‚‹æƒ…報を出力ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:887
+#: apt.conf.5.xml:920
msgid "Print information related to downloading packages using HTTPS."
msgstr "HTTPS を用ã„ãŸãƒ‘ッケージã®ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã«é–¢ã™ã‚‹æƒ…報を出力ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:898
+#: apt.conf.5.xml:931
msgid ""
"Print information related to verifying cryptographic signatures using "
"<literal>gpg</literal>."
@@ -4686,7 +4777,7 @@ msgstr ""
"<literal>gpg</literal> を用ã„ãŸæš—å·ç½²åã®æ¤œè¨¼ã«é–¢ã™ã‚‹æƒ…報を出力ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:909
+#: apt.conf.5.xml:942
msgid ""
"Output information about the process of accessing collections of packages "
"stored on CD-ROMs."
@@ -4695,12 +4786,12 @@ msgstr ""
"ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:919
+#: apt.conf.5.xml:952
msgid "Describes the process of resolving build-dependencies in &apt-get;."
msgstr "&apt-get; ã§ã®æ§‹ç¯‰ä¾å­˜é–¢ä¿‚解決ã®ãƒ—ロセスを説明ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:929
+#: apt.conf.5.xml:962
msgid ""
"Output each cryptographic hash that is generated by the <literal>apt</"
"literal> libraries."
@@ -4708,7 +4799,7 @@ msgstr ""
"<literal>apt</literal> ライブラリãŒç”Ÿæˆã—ãŸã€æš—å·åŒ–ãƒãƒƒã‚·ãƒ¥ã‚’出力ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:939
+#: apt.conf.5.xml:972
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 "
@@ -4718,7 +4809,7 @@ msgstr ""
"システムã«ã‚る使用済・未使用ブロックã®æ•°ã‹ã‚‰ã®æƒ…報をå«ã‚ãªã„よã†ã«ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:950
+#: apt.conf.5.xml:983
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."
@@ -4727,13 +4818,13 @@ msgstr ""
"<quote><literal>apt-get update</literal></quote> を実行ã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:962
+#: apt.conf.5.xml:995
msgid "Log when items are added to or removed from the global download queue."
msgstr ""
"グローãƒãƒ«ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã‚­ãƒ¥ãƒ¼ã«å¯¾ã™ã‚‹é …ç›®ã®è¿½åŠ ãƒ»å‰Šé™¤ã®éš›ã«ãƒ­ã‚°ã‚’出力ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:972
+#: apt.conf.5.xml:1005
msgid ""
"Output status messages and errors related to verifying checksums and "
"cryptographic signatures of downloaded files."
@@ -4742,7 +4833,7 @@ msgstr ""
"ジやエラーを出力ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:982
+#: apt.conf.5.xml:1015
msgid ""
"Output information about downloading and applying package index list diffs, "
"and errors relating to package index list diffs."
@@ -4751,7 +4842,7 @@ msgstr ""
"ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:994
+#: apt.conf.5.xml:1027
msgid ""
"Output information related to patching apt package lists when downloading "
"index diffs instead of full indices."
@@ -4760,14 +4851,14 @@ msgstr ""
"リストã¸ã®ãƒ‘ッãƒé©ç”¨ã«é–¢ã™ã‚‹æƒ…報を出力ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1005
+#: apt.conf.5.xml:1038
msgid ""
"Log all interactions with the sub-processes that actually perform downloads."
msgstr ""
"実際ã®ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã‚’è¡Œã†éš›ã®ã€ã‚µãƒ–プロセスã¨ã®ã‚„ã‚Šã¨ã‚Šã‚’ログã«å‡ºåŠ›ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1016
+#: apt.conf.5.xml:1049
msgid ""
"Log events related to the automatically-installed status of packages and to "
"the removal of unused packages."
@@ -4776,7 +4867,7 @@ msgstr ""
"ã«å‡ºåŠ›ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1026
+#: apt.conf.5.xml:1059
msgid ""
"Generate debug messages describing which packages are being automatically "
"installed to resolve dependencies. This corresponds to the initial auto-"
@@ -4791,7 +4882,7 @@ msgstr ""
"è·¯ã«å¯¾å¿œã—ã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1040
+#: apt.conf.5.xml:1073
msgid ""
"Generate debug messages describing which packages are marked as keep/install/"
"remove while the ProblemResolver does his work. Each addition or deletion "
@@ -4820,7 +4911,7 @@ msgstr ""
"ã¾ã™ã€‚<literal>section</literal> ã¯ãƒ‘ッケージãŒç¾ã‚Œã‚‹ã‚»ã‚¯ã‚·ãƒ§ãƒ³åã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1061
+#: apt.conf.5.xml:1094
msgid ""
"When invoking &dpkg;, output the precise command line with which it is being "
"invoked, with arguments separated by a single space character."
@@ -4829,7 +4920,7 @@ msgstr ""
"切られã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1072
+#: apt.conf.5.xml:1105
msgid ""
"Output all the data received from &dpkg; on the status file descriptor and "
"any errors encountered while parsing it."
@@ -4838,7 +4929,7 @@ msgstr ""
"を解æžä¸­ã«ç™ºç”Ÿã—ãŸã‚¨ãƒ©ãƒ¼ã‚’出力ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1083
+#: apt.conf.5.xml:1116
msgid ""
"Generate a trace of the algorithm that decides the order in which "
"<literal>apt</literal> should pass packages to &dpkg;."
@@ -4847,18 +4938,18 @@ msgstr ""
"ã®ãƒˆãƒ¬ãƒ¼ã‚¹ã‚’生æˆã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1095
+#: apt.conf.5.xml:1128
msgid ""
"Output status messages tracing the steps performed when invoking &dpkg;."
msgstr "&dpkg; を呼ã³å‡ºã™éš›ã«ã€å®Ÿè¡Œæ‰‹é †ã‚’追跡ã—ãŸçŠ¶æ…‹ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’出力ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1106
+#: apt.conf.5.xml:1139
msgid "Output the priority of each package list on startup."
msgstr "起動時ã®å„パッケージã®å„ªå…ˆåº¦ã‚’表示ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1116
+#: apt.conf.5.xml:1149
msgid ""
"Trace the execution of the dependency resolver (this applies only to what "
"happens when a complex dependency problem is encountered)."
@@ -4867,7 +4958,7 @@ msgstr ""
"ã—ãŸå ´åˆã«ã®ã¿ã€é©ç”¨ã•ã‚Œã¾ã™)。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1127
+#: apt.conf.5.xml:1160
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 "
@@ -4878,7 +4969,7 @@ msgstr ""
"説明ã—ãŸã‚‚ã®ã¨åŒã˜ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1139
+#: apt.conf.5.xml:1172
msgid ""
"Print information about the vendors read from <filename>/etc/apt/vendors."
"list</filename>."
@@ -4887,13 +4978,13 @@ msgstr ""
"ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:1161 apt_preferences.5.xml:545 sources.list.5.xml:211
-#: apt-ftparchive.1.xml:596
+#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:217
+#: apt-ftparchive.1.xml:598
msgid "Examples"
msgstr "サンプル"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1162
+#: apt.conf.5.xml:1195
msgid ""
"&configureindex; is a configuration file showing example values for all "
"possible options."
@@ -4903,17 +4994,17 @@ msgstr ""
#. ? reading apt.conf
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1174
+#: apt.conf.5.xml:1207
msgid "&apt-cache;, &apt-config;, &apt-preferences;."
msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt_preferences.5.xml:32
+#: apt_preferences.5.xml:34
msgid "Preference control file for APT"
msgstr "APT 用é¸æŠžåˆ¶å¾¡ãƒ•ã‚¡ã‚¤ãƒ«"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:37
+#: apt_preferences.5.xml:39
msgid ""
"The APT preferences file <filename>/etc/apt/preferences</filename> and the "
"fragment files in the <filename>/etc/apt/preferences.d/</filename> folder "
@@ -4925,7 +5016,7 @@ msgstr ""
"ンストールã™ã‚‹ãƒ‘ッケージã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’制御ã™ã‚‹ã®ã«ä½¿ç”¨ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:42
+#: apt_preferences.5.xml:44
msgid ""
"Several versions of a package may be available for installation when the "
"&sources-list; file contains references to more than one distribution (for "
@@ -4946,7 +5037,7 @@ msgstr ""
"ã®ã®é¸æŠžã‚’ã€ãƒ¦ãƒ¼ã‚¶ãŒé¸æŠžã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:52
+#: apt_preferences.5.xml:54
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 "
@@ -4961,7 +5052,7 @@ msgstr ""
"ã—ã€ã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ã‚¹ã®é¸æŠžã«ã¯å½±éŸ¿ã—ã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:59
+#: apt_preferences.5.xml:61
msgid ""
"Preferences are a strong power in the hands of a system administrator but "
"they can become also their biggest nightmare if used without care! APT will "
@@ -4984,7 +5075,7 @@ msgstr ""
"ã‚“)。以上ã€è­¦å‘Šã—ã¾ã—ãŸã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:70
+#: apt_preferences.5.xml:72
msgid ""
"Note that the files in the <filename>/etc/apt/preferences.d</filename> "
"directory are parsed in alphanumeric ascending order and need to obey the "
@@ -5004,24 +5095,24 @@ msgstr ""
"ã™ã‚‹å ´åˆã¯é»™ã£ã¦ç„¡è¦–ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:79
+#: apt_preferences.5.xml:81
msgid "APT's Default Priority Assignments"
msgstr "APT ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆå„ªå…ˆåº¦ã®å‰²ã‚Šå½“ã¦"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:94
+#: apt_preferences.5.xml:96
#, 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>
-#: apt_preferences.5.xml:97
+#: apt_preferences.5.xml:99
#, 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:81
+#: apt_preferences.5.xml:83
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 "
@@ -5047,7 +5138,7 @@ msgstr ""
"\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:101
+#: apt_preferences.5.xml:103
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:"
@@ -5056,12 +5147,12 @@ msgstr ""
"ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®å„ªå…ˆåº¦ã‚’設定ã—ã¾ã™ã€‚以下ã®ã‚ˆã†ã«å‰²ã‚Šå½“ã¦ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:106
+#: apt_preferences.5.xml:108
msgid "priority 1"
msgstr "優先度 1"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:107
+#: apt_preferences.5.xml:109
msgid ""
"to the versions coming from archives which in their <filename>Release</"
"filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</"
@@ -5074,12 +5165,12 @@ msgstr ""
"アーカイブ由æ¥ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:113
+#: apt_preferences.5.xml:115
msgid "priority 100"
msgstr "優先度 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:114
+#: apt_preferences.5.xml:116
msgid ""
"to the version that is already installed (if any) and to the versions coming "
"from archives which in their <filename>Release</filename> files are marked "
@@ -5092,30 +5183,30 @@ msgstr ""
"\"ButAutomaticUpgrades: yes\" ã¨ãƒžãƒ¼ã‚¯ã•ã‚Œã¦ã„るアーカイブ由æ¥ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:121
+#: apt_preferences.5.xml:123
msgid "priority 500"
msgstr "優先度 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:122
+#: apt_preferences.5.xml:124
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:126
+#: apt_preferences.5.xml:128
msgid "priority 990"
msgstr "優先度 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:127
+#: apt_preferences.5.xml:129
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:132
+#: apt_preferences.5.xml:134
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 "
@@ -5133,7 +5224,7 @@ msgstr ""
"ã¦ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:139
+#: apt_preferences.5.xml:141
msgid ""
"APT then applies the following rules, listed in order of precedence, to "
"determine which version of a package to install."
@@ -5142,7 +5233,7 @@ msgstr ""
"を上ã‹ã‚‰é †ç•ªã«é©ç”¨ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:142
+#: apt_preferences.5.xml:144
msgid ""
"Never downgrade unless the priority of an available version exceeds 1000. "
"(\"Downgrading\" is installing a less recent version of a package in place "
@@ -5157,12 +5248,12 @@ msgstr ""
"ã™ã€‚ã¾ãŸã€ãƒ‘ッケージã®ãƒ€ã‚¦ãƒ³ã‚°ãƒ¬ãƒ¼ãƒ‰ã¯å±é™ºã§ã‚ã‚‹ã“ã¨ã«ã‚‚注æ„ã—ã¦ãã ã•ã„)"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:148
+#: apt_preferences.5.xml:150
msgid "Install the highest priority version."
msgstr "最も高ã„優先度ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’インストールã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:149
+#: apt_preferences.5.xml:151
msgid ""
"If two or more versions have the same priority, install the most recent one "
"(that is, the one with the higher version number)."
@@ -5171,7 +5262,7 @@ msgstr ""
"ãŒé«˜ã„ã‚‚ã®) をインストールã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:152
+#: apt_preferences.5.xml:154
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</"
@@ -5182,7 +5273,7 @@ msgstr ""
"トールã•ã‚Œã¦ã„ãªã„ã‚‚ã®ã‚’インストールã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:158
+#: apt_preferences.5.xml:160
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 "
@@ -5197,7 +5288,7 @@ msgstr ""
"get upgrade</command> を実行ã™ã‚‹ã¨ãƒ‘ッケージãŒæ›´æ–°ã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:165
+#: apt_preferences.5.xml:167
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 "
@@ -5210,7 +5301,7 @@ msgstr ""
"get upgrade</command> を実行ã—ã¦ã‚‚ã€ãƒ€ã‚¦ãƒ³ã‚°ãƒ¬ãƒ¼ãƒ‰ã—ã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:170
+#: apt_preferences.5.xml:172
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 "
@@ -5229,12 +5320,12 @@ msgstr ""
"ケージãŒã‚ã‚‹ã‹ã‚‰ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:179
+#: apt_preferences.5.xml:181
msgid "The Effect of APT Preferences"
msgstr "APT プリファレンスファイルã®åŠ¹æžœ"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:181
+#: apt_preferences.5.xml:183
msgid ""
"The APT preferences file allows the system administrator to control the "
"assignment of priorities. The file consists of one or more multi-line "
@@ -5246,7 +5337,7 @@ msgstr ""
"ã‚Œã¦ã„ã¾ã™ã€‚レコードã¯ç‰¹å®šå½¢å¼ã‹ã€æ±Žç”¨å½¢å¼ã®ã©ã¡ã‚‰ã‹ã®å½¢å¼ã‚’ã¨ã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:187
+#: apt_preferences.5.xml:189
msgid ""
"The specific form assigns a priority (a \"Pin-Priority\") to one or more "
"specified packages with a specified version or version range. For example, "
@@ -5262,7 +5353,7 @@ msgstr ""
"ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:194
+#: apt_preferences.5.xml:196
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5274,7 +5365,7 @@ msgstr ""
"Pin-Priority: 1001\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:200
+#: apt_preferences.5.xml:202
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 "
@@ -5288,7 +5379,7 @@ msgstr ""
"ã¦ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:206
+#: apt_preferences.5.xml:208
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 "
@@ -5299,7 +5390,7 @@ msgstr ""
"全パッケージã«ã¤ã„ã¦ã€é«˜ã„優先度を割り当ã¦ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:211
+#: apt_preferences.5.xml:213
#, no-wrap
msgid ""
"Package: *\n"
@@ -5311,7 +5402,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:216
+#: apt_preferences.5.xml:218
msgid ""
"A note of caution: the keyword used here is \"<literal>origin</literal>\" "
"which can be used to match a hostname. The following record will assign a "
@@ -5324,7 +5415,7 @@ msgstr ""
"ã¦ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:220
+#: apt_preferences.5.xml:222
#, no-wrap
msgid ""
"Package: *\n"
@@ -5336,7 +5427,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:224
+#: apt_preferences.5.xml:226
msgid ""
"This should <emphasis>not</emphasis> be confused with the Origin of a "
"distribution as specified in a <filename>Release</filename> file. What "
@@ -5350,7 +5441,7 @@ msgstr ""
"トアドレスã§ã¯ãªãã€\"Debian\" ã‚„ \"Ximian\" ã¨ã„ã£ãŸä½œè€…やベンダåã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:229
+#: apt_preferences.5.xml:231
msgid ""
"The following record assigns a low priority to all package versions "
"belonging to any distribution whose Archive name is \"<literal>unstable</"
@@ -5360,7 +5451,7 @@ msgstr ""
"ディストリビューションã«å±žã™ã‚‹ãƒ‘ッケージをã€ã™ã¹ã¦ä½Žã„優先度ã«å‰²ã‚Šå½“ã¦ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:233
+#: apt_preferences.5.xml:235
#, no-wrap
msgid ""
"Package: *\n"
@@ -5372,7 +5463,7 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:238
+#: apt_preferences.5.xml:240
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any distribution whose Codename is \"<literal>&testing-codename;"
@@ -5383,7 +5474,7 @@ msgstr ""
"り当ã¦ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:242
+#: apt_preferences.5.xml:244
#, no-wrap
msgid ""
"Package: *\n"
@@ -5395,7 +5486,7 @@ msgstr ""
"Pin-Priority: 900\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:247
+#: apt_preferences.5.xml:249
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any release whose Archive name is \"<literal>stable</literal>\" "
@@ -5406,7 +5497,7 @@ msgstr ""
"ã«å±žã™ã‚‹ãƒ‘ッケージをã€ã™ã¹ã¦é«˜ã„優先度ã«å‰²ã‚Šå½“ã¦ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:252
+#: apt_preferences.5.xml:254
#, no-wrap
msgid ""
"Package: *\n"
@@ -5418,12 +5509,12 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:262
+#: apt_preferences.5.xml:264
msgid "Regular expressions and &glob; syntax"
msgstr "æ­£è¦è¡¨ç¾ã¨ &glob; 構文"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:264
+#: apt_preferences.5.xml:266
msgid ""
"APT also supports pinning by &glob; expressions, and regular expressions "
"surrounded by slashes. For example, the following example assigns the "
@@ -5437,7 +5528,7 @@ msgstr ""
"ケージã«ã€å„ªå…ˆåº¦500を割り当ã¦ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:273
+#: apt_preferences.5.xml:275
#, no-wrap
msgid ""
"Package: gnome* /kde/\n"
@@ -5449,7 +5540,7 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:279
+#: apt_preferences.5.xml:281
msgid ""
"The rule for those expressions is that they can occur anywhere where a "
"string can occur. Thus, the following pin assigns the priority 990 to all "
@@ -5460,7 +5551,7 @@ msgstr ""
"パッケージã«ã€å„ªå…ˆåº¦ 990 を割り当ã¦ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:285
+#: apt_preferences.5.xml:287
#, no-wrap
msgid ""
"Package: *\n"
@@ -5472,7 +5563,7 @@ msgstr ""
"Pin-Priority: 990\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:291
+#: apt_preferences.5.xml:293
msgid ""
"If a regular expression occurs in a <literal>Package</literal> field, the "
"behavior is the same as if this regular expression were replaced with a list "
@@ -5489,12 +5580,12 @@ msgstr ""
"体ã¨ã¯è¦‹ãªã•ã‚Œã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:307
+#: apt_preferences.5.xml:309
msgid "How APT Interprets Priorities"
msgstr "APT ãŒå„ªå…ˆåº¦ã«å‰²ã‚Šè¾¼ã‚€æ–¹æ³•"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:310
+#: apt_preferences.5.xml:312
msgid ""
"Priorities (P) assigned in the APT preferences file must be positive or "
"negative integers. They are interpreted as follows (roughly speaking):"
@@ -5503,12 +5594,12 @@ msgstr ""
"ã¾ã›ã‚“。ã“れ㯠(ãŠãŠã–ã£ã±ã«ã„ã†ã¨) 以下ã®ã‚ˆã†ã«è§£é‡ˆã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:315
+#: apt_preferences.5.xml:317
msgid "P &gt;= 1000"
msgstr "P &gt;= 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:316
+#: apt_preferences.5.xml:318
msgid ""
"causes a version to be installed even if this constitutes a downgrade of the "
"package"
@@ -5516,12 +5607,12 @@ msgstr ""
"パッケージãŒãƒ€ã‚¦ãƒ³ã‚°ãƒ¬ãƒ¼ãƒ‰ã—ã¦ã‚‚ã€ã“ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッケージをインストール"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:320
+#: apt_preferences.5.xml:322
msgid "990 &lt;= P &lt; 1000"
msgstr "990 &lt;= P &lt; 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:321
+#: apt_preferences.5.xml:323
msgid ""
"causes a version to be installed even if it does not come from the target "
"release, unless the installed version is more recent"
@@ -5530,12 +5621,12 @@ msgstr ""
"ã«å«ã¾ã‚Œãªãã¦ã‚‚ã€ã“ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッケージをインストール"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:326
+#: apt_preferences.5.xml:328
msgid "500 &lt;= P &lt; 990"
msgstr "500 &lt;= P &lt; 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:327
+#: apt_preferences.5.xml:329
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"
@@ -5544,12 +5635,12 @@ msgstr ""
"ジョンã®æ–¹ãŒæ–°ã—ã„ã®ã§ãªã‘ã‚Œã°ã€ã“ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッケージをインストール"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:332
+#: apt_preferences.5.xml:334
msgid "100 &lt;= P &lt; 500"
msgstr "100 &lt;= P &lt; 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:333
+#: apt_preferences.5.xml:335
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"
@@ -5559,12 +5650,12 @@ msgstr ""
"ル"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:338
+#: apt_preferences.5.xml:340
msgid "0 &lt; P &lt; 100"
msgstr "0 &lt; P &lt; 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:339
+#: apt_preferences.5.xml:341
msgid ""
"causes a version to be installed only if there is no installed version of "
"the package"
@@ -5573,17 +5664,17 @@ msgstr ""
"ンストール"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:343
+#: apt_preferences.5.xml:345
msgid "P &lt; 0"
msgstr "P &lt; 0"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:344
+#: apt_preferences.5.xml:346
msgid "prevents the version from being installed"
msgstr "ã“ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ç¦æ­¢"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:349
+#: apt_preferences.5.xml:351
msgid ""
"If any specific-form records match an available package version then the "
"first such record determines the priority of the package version. Failing "
@@ -5596,7 +5687,7 @@ msgstr ""
"ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®å„ªå…ˆåº¦ã‚’決定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:355
+#: apt_preferences.5.xml:357
msgid ""
"For example, suppose the APT preferences file contains the three records "
"presented earlier:"
@@ -5605,7 +5696,7 @@ msgstr ""
"仮定ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:359
+#: apt_preferences.5.xml:361
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5633,12 +5724,12 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:372
+#: apt_preferences.5.xml:374
msgid "Then:"
msgstr "ã™ã‚‹ã¨ã€ä»¥ä¸‹ã®ã‚ˆã†ã«å‹•ä½œã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:374
+#: apt_preferences.5.xml:376
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 "
@@ -5652,7 +5743,7 @@ msgstr ""
"ã‚Œã¦ã„ã‚‹å ´åˆã€<literal>perl</literal> ã¯ãƒ€ã‚¦ãƒ³ã‚°ãƒ¬ãƒ¼ãƒ‰ã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:379
+#: apt_preferences.5.xml:381
msgid ""
"A version of any package other than <literal>perl</literal> that is "
"available from the local system has priority over other versions, even "
@@ -5663,7 +5754,7 @@ msgstr ""
"ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:383
+#: apt_preferences.5.xml:385
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</"
@@ -5676,12 +5767,12 @@ msgstr ""
"ã„å ´åˆã«ã®ã¿ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:393
+#: apt_preferences.5.xml:395
msgid "Determination of Package Version and Distribution Properties"
msgstr "パッケージã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¨ãƒ‡ã‚£ã‚¹ãƒˆãƒªãƒ“ューションプロパティã®æ±ºå®š"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:395
+#: apt_preferences.5.xml:397
msgid ""
"The locations listed in the &sources-list; file should provide "
"<filename>Packages</filename> and <filename>Release</filename> files to "
@@ -5692,7 +5783,7 @@ msgstr ""
"filename> ファイルをæä¾›ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:399
+#: apt_preferences.5.xml:401
msgid ""
"The <filename>Packages</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable>/"
@@ -5710,27 +5801,27 @@ msgstr ""
"ã¾ã™ã€‚APT 優先度ã®è¨­å®šã¯ã€ãƒ¬ã‚³ãƒ¼ãƒ‰ã”ã¨ã«ä»¥ä¸‹ã® 2 è¡Œã ã‘ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:407
+#: apt_preferences.5.xml:409
msgid "the <literal>Package:</literal> line"
msgstr "<literal>Package:</literal> 行"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:408
+#: apt_preferences.5.xml:410
msgid "gives the package name"
msgstr "パッケージå"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:411 apt_preferences.5.xml:461
+#: apt_preferences.5.xml:413 apt_preferences.5.xml:463
msgid "the <literal>Version:</literal> line"
msgstr "<literal>Version:</literal> 行"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:412
+#: apt_preferences.5.xml:414
msgid "gives the version number for the named package"
msgstr "ãã®åå‰ã®ãƒ‘ッケージã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ç•ªå·"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:417
+#: apt_preferences.5.xml:419
msgid ""
"The <filename>Release</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
@@ -5751,12 +5842,12 @@ msgstr ""
"ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:428
+#: apt_preferences.5.xml:430
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>
-#: apt_preferences.5.xml:429
+#: apt_preferences.5.xml:431
msgid ""
"names the archive to which all the packages in the directory tree belong. "
"For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@ -5772,18 +5863,18 @@ msgstr ""
"ルã§ã“ã®å€¤ã‚’指定ã™ã‚‹ã«ã¯ã€ä»¥ä¸‹ã®è¡ŒãŒå¿…è¦ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:439
+#: apt_preferences.5.xml:441
#, 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:445
+#: apt_preferences.5.xml:447
msgid "the <literal>Codename:</literal> line"
msgstr "<literal>Codename:</literal> 行"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:446
+#: apt_preferences.5.xml:448
msgid ""
"names the codename to which all the packages in the directory tree belong. "
"For example, the line \"Codename: &testing-codename;\" specifies that all of "
@@ -5800,13 +5891,13 @@ msgstr ""
"ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:455
+#: apt_preferences.5.xml:457
#, no-wrap
msgid "Pin: release n=&testing-codename;\n"
msgstr "Pin: release n=&testing-codename;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:462
+#: apt_preferences.5.xml:464
msgid ""
"names the release version. For example, the packages in the tree might "
"belong to Debian release version &stable-version;. Note that there is "
@@ -5823,7 +5914,7 @@ msgstr ""
"ã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:471
+#: apt_preferences.5.xml:473
#, no-wrap
msgid ""
"Pin: release v=&stable-version;\n"
@@ -5835,12 +5926,12 @@ msgstr ""
"Pin: release &stable-version;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:480
+#: apt_preferences.5.xml:482
msgid "the <literal>Component:</literal> line"
msgstr "<literal>Component:</literal> 行"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:481
+#: apt_preferences.5.xml:483
msgid ""
"names the licensing component associated with the packages in the directory "
"tree of the <filename>Release</filename> file. For example, the line "
@@ -5857,18 +5948,18 @@ msgstr ""
"下ã®è¡ŒãŒå¿…è¦ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:490
+#: apt_preferences.5.xml:492
#, 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:496
+#: apt_preferences.5.xml:498
msgid "the <literal>Origin:</literal> line"
msgstr "<literal>Origin:</literal> 行"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:497
+#: apt_preferences.5.xml:499
msgid ""
"names the originator of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -5880,18 +5971,18 @@ msgstr ""
"ファイルã§ã“ã®æ供者を指定ã™ã‚‹ã«ã¯ã€ä»¥ä¸‹ã®è¡ŒãŒå¿…è¦ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:503
+#: apt_preferences.5.xml:505
#, 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:509
+#: apt_preferences.5.xml:511
msgid "the <literal>Label:</literal> line"
msgstr "<literal>Label:</literal> 行"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:510
+#: apt_preferences.5.xml:512
msgid ""
"names the label of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -5903,13 +5994,13 @@ msgstr ""
"ファイルã§ã“ã®ãƒ©ãƒ™ãƒ«ã‚’指定ã™ã‚‹ã«ã¯ã€ä»¥ä¸‹ã®è¡ŒãŒå¿…è¦ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:516
+#: apt_preferences.5.xml:518
#, 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:523
+#: apt_preferences.5.xml:525
msgid ""
"All of the <filename>Packages</filename> and <filename>Release</filename> "
"files retrieved from locations listed in the &sources-list; file are stored "
@@ -5934,12 +6025,12 @@ msgstr ""
"filename> ファイルをå«ã‚“ã§ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:536
+#: apt_preferences.5.xml:538
msgid "Optional Lines in an APT Preferences Record"
msgstr "APT プリファレンスレコードã®ã‚ªãƒ—ション行"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:538
+#: apt_preferences.5.xml:540
msgid ""
"Each record in the APT preferences file can optionally begin with one or "
"more lines beginning with the word <literal>Explanation:</literal>. This "
@@ -5949,12 +6040,12 @@ msgstr ""
"literal> ã§å§‹ã¾ã‚‹è¡Œã‚’æŒã¦ã¾ã™ã€‚ã“ã‚Œã¯ã€ã‚³ãƒ¡ãƒ³ãƒˆç”¨ã®å ´æ‰€ã‚’確ä¿ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:547
+#: apt_preferences.5.xml:549
msgid "Tracking Stable"
msgstr "安定版ã®è¿½è·¡"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:555
+#: apt_preferences.5.xml:557
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated\n"
@@ -5978,7 +6069,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:549
+#: apt_preferences.5.xml:551
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 "
@@ -5993,8 +6084,8 @@ msgstr ""
"ã™ã€‚<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:572 apt_preferences.5.xml:618
-#: apt_preferences.5.xml:676
+#: apt_preferences.5.xml:574 apt_preferences.5.xml:620
+#: apt_preferences.5.xml:678
#, no-wrap
msgid ""
"apt-get install <replaceable>package-name</replaceable>\n"
@@ -6006,7 +6097,7 @@ msgstr ""
"apt-get dist-upgrade\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:567
+#: apt_preferences.5.xml:569
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 "
@@ -6018,13 +6109,13 @@ msgstr ""
"ã§ãã¾ã™ã€‚<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:584
+#: apt_preferences.5.xml:586
#, 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>
-#: apt_preferences.5.xml:578
+#: apt_preferences.5.xml:580
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>testing</literal> distribution; the package "
@@ -6037,12 +6128,12 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:590
+#: apt_preferences.5.xml:592
msgid "Tracking Testing or Unstable"
msgstr "テスト版やä¸å®‰å®šç‰ˆã®è¿½è·¡"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:599
+#: apt_preferences.5.xml:601
#, no-wrap
msgid ""
"Package: *\n"
@@ -6070,7 +6161,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:592
+#: apt_preferences.5.xml:594
msgid ""
"The following APT preferences file will cause APT to assign a high priority "
"to package versions from the <literal>testing</literal> distribution, a "
@@ -6087,7 +6178,7 @@ msgstr ""
"先度を割り当ã¦ã¾ã™ã€‚<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:613
+#: apt_preferences.5.xml:615
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 "
@@ -6099,13 +6190,13 @@ msgstr ""
"ドã§ãã¾ã™ã€‚<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:633
+#: apt_preferences.5.xml:635
#, 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>
-#: apt_preferences.5.xml:624
+#: apt_preferences.5.xml:626
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>unstable</literal> distribution. "
@@ -6124,12 +6215,12 @@ msgstr ""
"\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:640
+#: apt_preferences.5.xml:642
msgid "Tracking the evolution of a codename release"
msgstr "コードåリリースã®é€²åŒ–ã®è¿½è·¡"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:654
+#: apt_preferences.5.xml:656
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@ -6163,7 +6254,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:642
+#: apt_preferences.5.xml:644
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 "
@@ -6187,7 +6278,7 @@ msgstr ""
"ã™ã€‚<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:671
+#: apt_preferences.5.xml:673
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 "
@@ -6200,13 +6291,13 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:691
+#: apt_preferences.5.xml:693
#, 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>
-#: apt_preferences.5.xml:682
+#: apt_preferences.5.xml:684
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>sid</literal> distribution. Thereafter, "
@@ -6225,17 +6316,17 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:706
+#: apt_preferences.5.xml:708
msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: sources.list.5.xml:33
+#: sources.list.5.xml:35
msgid "List of configured APT data sources"
msgstr "APT ã®ãƒ‡ãƒ¼ã‚¿å–å¾—å…ƒã®è¨­å®šãƒªã‚¹ãƒˆ"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:38
+#: sources.list.5.xml:40
msgid ""
"The source list <filename>/etc/apt/sources.list</filename> is designed to "
"support any number of active sources and a variety of source media. The file "
@@ -6251,7 +6342,7 @@ msgstr ""
"ã®ã‚³ãƒžãƒ³ãƒ‰) ã§å–å¾—ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:45
+#: sources.list.5.xml:47
msgid ""
"Each line specifying a source starts with type (e.g. <literal>deb-src</"
"literal>) followed by options and arguments for this type. Individual "
@@ -6265,12 +6356,12 @@ msgstr ""
"ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:53
+#: sources.list.5.xml:55
msgid "sources.list.d"
msgstr "sources.list.d"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:54
+#: sources.list.5.xml:56
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 "
@@ -6291,12 +6382,12 @@ msgstr ""
"APT ãŒå‡ºåŠ›ã—ã¾ã™ã€‚一致ã™ã‚‹å ´åˆã¯é»™ã£ã¦ç„¡è¦–ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:65
+#: sources.list.5.xml:67
msgid "The deb and deb-src types"
msgstr "deb タイプ㨠deb-src タイプ"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:66
+#: sources.list.5.xml:68
msgid ""
"The <literal>deb</literal> type references a typical two-level Debian "
"archive, <filename>distribution/component</filename>. The "
@@ -6321,7 +6412,7 @@ msgstr ""
"ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:78
+#: sources.list.5.xml:80
msgid ""
"The format for a <filename>sources.list</filename> entry using the "
"<literal>deb</literal> and <literal>deb-src</literal> types is:"
@@ -6331,13 +6422,13 @@ msgstr ""
"ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:81
+#: sources.list.5.xml:83
#, no-wrap
msgid "deb [ options ] uri distribution [component1] [component2] [...]"
msgstr "deb [ オプション ] uri distribution [コンãƒãƒ¼ãƒãƒ³ãƒˆ1] [コンãƒãƒ¼ãƒãƒ³ãƒˆ2] [...]"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:83
+#: sources.list.5.xml:85
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. "
@@ -6358,7 +6449,7 @@ msgstr ""
"ã¨ã¤ã¯ <literal>component</literal> を指定ã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:92
+#: sources.list.5.xml:94
msgid ""
"<literal>distribution</literal> may also contain a variable, <literal>"
"$(ARCH)</literal> which expands to the Debian architecture (such as "
@@ -6377,7 +6468,7 @@ msgstr ""
"ãƒãƒ£ã§ URI を自動的ã«ç”Ÿæˆã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:100
+#: sources.list.5.xml:102
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 "
@@ -6400,7 +6491,7 @@ msgstr ""
"るホストã¸ã¯ã€æŽ¥ç¶šã‚’並行ã—ã¦è¡Œã†ã‚ˆã†ã«ã‚‚ã—ã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:112
+#: sources.list.5.xml:114
msgid ""
"<literal>options</literal> is always optional and needs to be surrounded by "
"square brackets. It can consist of multiple settings in the form "
@@ -6416,7 +6507,7 @@ msgstr ""
"ã™)。"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:117
+#: sources.list.5.xml:120
msgid ""
"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
"replaceable>,…</literal> can be used to specify for which architectures "
@@ -6430,7 +6521,27 @@ msgstr ""
"literal> オプションã«å®šç¾©ã—ã¦ã‚ã‚‹ã€å…¨ã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£ã‚’ダウンロードã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:121
+#: sources.list.5.xml:124
+#, fuzzy
+#| msgid ""
+#| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+#| "replaceable>,…</literal> can be used to specify for which architectures "
+#| "information should be downloaded. If this option is not set all "
+#| "architectures defined by the <literal>APT::Architectures</literal> option "
+#| "will be downloaded."
+msgid ""
+"<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>,"
+"<replaceable>arch2</replaceable>,…</literal> which can be used to add/remove "
+"architectures from the set which will be downloaded."
+msgstr ""
+"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> ã«ã‚ˆã‚Šã€ã©ã®ã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£æƒ…報をダウンロードã™ã‚‹ã‹æŒ‡"
+"定ã—ã¾ã™ã€‚ã“ã®ã‚ªãƒ—ションを指定ã—ã¦ã„ãªã„ã¨ã€<literal>APT::Architectures</"
+"literal> オプションã«å®šç¾©ã—ã¦ã‚ã‚‹ã€å…¨ã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£ã‚’ダウンロードã—ã¾ã™ã€‚"
+
+#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
+#: sources.list.5.xml:127
msgid ""
"<literal>trusted=yes</literal> can be set to indicate that packages from "
"this source are always authenticated even if the <filename>Release</"
@@ -6447,7 +6558,7 @@ msgstr ""
"èªè¨¼ã¨ã—ã¦æ‰±ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:128
+#: sources.list.5.xml:134
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 "
@@ -6460,12 +6571,12 @@ msgstr ""
"ã—ょã†ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:133
+#: sources.list.5.xml:139
msgid "Some examples:"
msgstr "例:"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:135
+#: sources.list.5.xml:141
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@ -6477,17 +6588,17 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:141
+#: sources.list.5.xml:147
msgid "URI specification"
msgstr "URI ã®ä»•æ§˜"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:143
+#: sources.list.5.xml:149
msgid "The currently recognized URI types are:"
msgstr "ç¾åœ¨èªè­˜ã§ãã‚‹ URI タイプã¯ä»¥ä¸‹ã®ã¨ãŠã‚Šã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:147
+#: sources.list.5.xml:153
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 "
@@ -6497,7 +6608,7 @@ msgstr ""
"ã«ã—ã¾ã™ã€‚ã“れ㯠NFS マウントやローカルミラーã§ä¾¿åˆ©ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:154
+#: sources.list.5.xml:160
msgid ""
"The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. "
"Use the &apt-cdrom; program to create cdrom entries in the source list."
@@ -6507,7 +6618,7 @@ msgstr ""
"グラムを使用ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:161
+#: sources.list.5.xml:167
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:"
@@ -6523,7 +6634,7 @@ msgstr ""
"指定ã—ã¦ãã ã•ã„。ã“ã®èªè¨¼æ–¹æ³•ã¯å®‰å…¨ã§ã¯ãªã„ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:172
+#: sources.list.5.xml:178
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. "
@@ -6542,7 +6653,7 @@ msgstr ""
"ã™)。設定ファイル㧠HTTP を利用ã™ã‚‹ãƒ—ロキシãŒæŒ‡å®šã—ã¦ã‚ã£ã¦ã‚‚ã€ç„¡è¦–ã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:184
+#: sources.list.5.xml:190
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. "
@@ -6554,7 +6665,7 @@ msgstr ""
"用ã—ã¦ã„ã¦ã€APT ã§ã‚³ãƒ”ーを行ã†å ´åˆã«ä¾¿åˆ©ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:191
+#: sources.list.5.xml:197
msgid ""
"The rsh/ssh method invokes RSH/SSH to connect to a remote host and access "
"the files as a given user. Prior configuration of rhosts or RSA keys is "
@@ -6568,12 +6679,12 @@ msgstr ""
"ã™ã€‚"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
-#: sources.list.5.xml:198
+#: sources.list.5.xml:204
msgid "adding more recognizable URI types"
msgstr "ã•ã‚‰ã«èªè­˜ã§ãã‚‹ URI タイプã®è¿½åŠ "
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:200
+#: sources.list.5.xml:206
msgid ""
"APT can be extended with more methods shipped in other optional packages, "
"which should follow the naming scheme <package>apt-transport-"
@@ -6591,7 +6702,7 @@ msgstr ""
"transport-debtorrent; ã‚’å‚ç…§ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:212
+#: sources.list.5.xml:218
msgid ""
"Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
"stable/main, stable/contrib, and stable/non-free."
@@ -6600,35 +6711,35 @@ msgstr ""
"free 用ã®ãƒ­ãƒ¼ã‚«ãƒ« (ã¾ãŸã¯ NFS) アーカイブを使用ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:214
+#: sources.list.5.xml:220
#, 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:216
+#: sources.list.5.xml:222
msgid "As above, except this uses the unstable (development) distribution."
msgstr "上記ã¨åŒæ§˜ã§ã™ãŒã€ä¸å®‰å®šç‰ˆ (開発版) を使用ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:217
+#: sources.list.5.xml:223
#, 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:219
+#: sources.list.5.xml:225
msgid "Source line for the above"
msgstr "上記ã®ã‚½ãƒ¼ã‚¹è¡Œã¯ä»¥ä¸‹ã®ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:220
+#: sources.list.5.xml:226
#, 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:222
+#: sources.list.5.xml:228
msgid ""
"The first line gets package information for the architectures in "
"<literal>APT::Architectures</literal> while the second always retrieves "
@@ -6639,7 +6750,7 @@ msgstr ""
"<literal>armel</literal> アーキテクãƒãƒ£ã®ãƒ‘ッケージ情報をå–å¾—ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:224
+#: sources.list.5.xml:230
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main\n"
@@ -6649,7 +6760,7 @@ msgstr ""
"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:227
+#: sources.list.5.xml:233
msgid ""
"Uses HTTP to access the archive at archive.debian.org, and uses only the "
"hamm/main area."
@@ -6658,13 +6769,13 @@ msgstr ""
"ã™ã€‚"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:229
+#: sources.list.5.xml:235
#, 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:231
+#: sources.list.5.xml:237
msgid ""
"Uses FTP to access the archive at ftp.debian.org, under the debian "
"directory, and uses only the &stable-codename;/contrib area."
@@ -6673,13 +6784,13 @@ msgstr ""
"&stable-codename;/contrib ã®ã¿ã‚’使用ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:233
+#: sources.list.5.xml:239
#, no-wrap
msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:235
+#: sources.list.5.xml:241
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 "
@@ -6692,19 +6803,19 @@ msgstr ""
"ã¤ã ã‘ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:239
+#: sources.list.5.xml:245
#, 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><literallayout>
-#: sources.list.5.xml:248
+#: sources.list.5.xml:254
#, no-wrap
msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:241
+#: sources.list.5.xml:247
msgid ""
"Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
"directory, and uses only files found under <filename>unstable/binary-i386</"
@@ -6723,17 +6834,17 @@ msgstr ""
"<placeholder type=\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:253
+#: sources.list.5.xml:259
msgid "&apt-cache; &apt-conf;"
msgstr "&apt-cache; &apt-conf;"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-extracttemplates.1.xml:26 apt-sortpkgs.1.xml:26 apt-ftparchive.1.xml:26
+#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28
msgid "1"
msgstr "1"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-extracttemplates.1.xml:33
+#: apt-extracttemplates.1.xml:35
msgid ""
"Utility to extract <command>debconf</command> config and templates from "
"Debian packages"
@@ -6742,7 +6853,7 @@ msgstr ""
"るユーティリティ"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:39
+#: apt-extracttemplates.1.xml:41
msgid ""
"<command>apt-extracttemplates</command> will take one or more Debian package "
"files as input and write out (to a temporary directory) all associated "
@@ -6756,12 +6867,12 @@ msgstr ""
"ãžã‚Œã«å¯¾ã—ã€ä»¥ä¸‹ã®å½¢å¼ã§ 1 è¡Œãšã¤å‡ºåŠ›ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:44
+#: apt-extracttemplates.1.xml:46
msgid "package version template-file config-script"
msgstr "package version template-file config-script"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:45
+#: apt-extracttemplates.1.xml:47
msgid ""
"template-file and config-script are written to the temporary directory "
"specified by the <option>-t</option> or <option>--tempdir</option> "
@@ -6776,7 +6887,7 @@ msgstr ""
"ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-extracttemplates.1.xml:58
+#: apt-extracttemplates.1.xml:60
msgid ""
"Temporary directory in which to write extracted <command>debconf</command> "
"template files and config scripts. Configuration Item: <literal>APT::"
@@ -6787,7 +6898,7 @@ msgstr ""
"literal>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:75
+#: apt-extracttemplates.1.xml:77
msgid ""
"<command>apt-extracttemplates</command> returns zero on normal operation, "
"decimal 100 on error."
@@ -6796,12 +6907,12 @@ msgstr ""
"ã«ã¯å進㮠100 ã‚’è¿”ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-sortpkgs.1.xml:33
+#: apt-sortpkgs.1.xml:35
msgid "Utility to sort package index files"
msgstr "パッケージインデックスファイルã®ã‚½ãƒ¼ãƒˆãƒ¦ãƒ¼ãƒ†ã‚£ãƒªãƒ†ã‚£"
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:39
+#: apt-sortpkgs.1.xml:41
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 "
@@ -6813,14 +6924,14 @@ msgstr ""
"ã¾ãŸã€å†…部ã®ã‚½ãƒ¼ãƒˆè¦å‰‡ã«å¾“ã£ã¦ã€å†…部フィールドã«ã¤ã„ã¦ã‚‚ソートを行ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:45
+#: apt-sortpkgs.1.xml:47
msgid ""
"All output is sent to standard output; the input must be a seekable file."
msgstr ""
"出力ã¯ã™ã¹ã¦æ¨™æº–出力ã«é€ã‚‰ã‚Œã€å…¥åŠ›ã¯æ¤œç´¢ã§ãるファイルã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-sortpkgs.1.xml:54
+#: apt-sortpkgs.1.xml:56
msgid ""
"Use source index field ordering. Configuration Item: <literal>APT::"
"SortPkgs::Source</literal>."
@@ -6829,7 +6940,7 @@ msgstr ""
"<literal>APT::SortPkgs::Source</literal>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:68
+#: apt-sortpkgs.1.xml:70
msgid ""
"<command>apt-sortpkgs</command> returns zero on normal operation, decimal "
"100 on error."
@@ -6838,12 +6949,12 @@ msgstr ""
"ã® 100 ã‚’è¿”ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-ftparchive.1.xml:33
+#: apt-ftparchive.1.xml:35
msgid "Utility to generate index files"
msgstr "インデックスファイル生æˆãƒ¦ãƒ¼ãƒ†ã‚£ãƒªãƒ†ã‚£"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:39
+#: apt-ftparchive.1.xml:41
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 "
@@ -6855,7 +6966,7 @@ msgstr ""
"ã¯ã€å…ƒã®ã‚µã‚¤ãƒˆã®å†…容ã«åŸºã¥ã生æˆã•ã‚Œã‚‹ã¹ãã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:43
+#: apt-ftparchive.1.xml:45
msgid ""
"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; "
"program, incorporating its entire functionality via the <literal>packages</"
@@ -6869,7 +6980,7 @@ msgstr ""
"å…¨ãªã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã®ç”Ÿæˆãƒ—ロセス「スクリプトã€ã§ã‚る綿密ãªæ‰‹æ®µã‚’å«ã‚“ã§ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:49
+#: apt-ftparchive.1.xml:51
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 "
@@ -6883,7 +6994,7 @@ msgstr ""
"望ã—ãŸåœ§ç¸®å‡ºåŠ›ãƒ•ã‚¡ã‚¤ãƒ«ã®ä½œæˆã‚’自動的ã«å®Ÿè¡Œã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:60
+#: apt-ftparchive.1.xml:62
msgid ""
"The packages command generates a package file from a directory tree. It "
"takes the given directory and recursively searches it for .deb files, "
@@ -6896,13 +7007,13 @@ msgstr ""
"ã¨ã»ã¼åŒã˜ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:65 apt-ftparchive.1.xml:89
+#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91
msgid ""
"The option <option>--db</option> can be used to specify a binary caching DB."
msgstr "<option>--db</option> オプションã§ã€ã‚­ãƒ£ãƒƒã‚·ãƒ¥ DB を指定ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:70
+#: apt-ftparchive.1.xml:72
msgid ""
"The <literal>sources</literal> command generates a source index file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -6915,7 +7026,7 @@ msgstr ""
"ã¯ã€&dpkg-scansources; ã¨ã»ã¼åŒã˜ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:75
+#: apt-ftparchive.1.xml:77
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 "
@@ -6926,7 +7037,7 @@ msgstr ""
"override オプションを使用ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:82
+#: apt-ftparchive.1.xml:84
msgid ""
"The <literal>contents</literal> command generates a contents file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -6943,7 +7054,7 @@ msgstr ""
"ã§å‡ºåŠ›ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:94
+#: apt-ftparchive.1.xml:96
msgid ""
"The <literal>release</literal> command generates a Release file from a "
"directory tree. It recursively searches the given directory for uncompressed "
@@ -6969,7 +7080,7 @@ msgstr ""
"出ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:104
+#: apt-ftparchive.1.xml:106
msgid ""
"Values for the additional metadata fields in the Release file are taken from "
"the corresponding variables under <literal>APT::FTPArchive::Release</"
@@ -6989,7 +7100,7 @@ msgstr ""
"<literal>Components</literal>, <literal>Description</literal> ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:117
+#: apt-ftparchive.1.xml:119
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 "
@@ -7003,7 +7114,7 @@ msgstr ""
"ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‹ã‚‰ä½œæˆã™ã‚‹ã‹ã‚’指定ã™ã‚‹ã€æŸ”軟ãªæ–¹æ³•ã‚’æä¾›ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:126
+#: apt-ftparchive.1.xml:128
msgid ""
"The <literal>clean</literal> command tidies the databases used by the given "
"configuration file by removing any records that are no longer necessary."
@@ -7012,12 +7123,12 @@ msgstr ""
"ã‚‚ã†å¿…è¦ãªã„レコードを削除ã—ã¦æ•´ç†ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:132
+#: apt-ftparchive.1.xml:134
msgid "The Generate Configuration"
msgstr "Generate 設定"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:134
+#: apt-ftparchive.1.xml:136
msgid ""
"The <literal>generate</literal> command uses a configuration file to "
"describe the archives that are going to be generated. It follows the typical "
@@ -7034,7 +7145,7 @@ msgstr ""
"ã™ã€‚"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:142
+#: apt-ftparchive.1.xml:144
msgid ""
"The generate configuration has four separate sections, each described below."
msgstr ""
@@ -7042,12 +7153,12 @@ msgstr ""
"ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:144
+#: apt-ftparchive.1.xml:146
msgid "<literal>Dir</literal> Section"
msgstr "<literal>Dir</literal> セクション"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:146
+#: apt-ftparchive.1.xml:148
msgid ""
"The <literal>Dir</literal> section defines the standard directories needed "
"to locate the files required during the generation process. These "
@@ -7059,7 +7170,7 @@ msgstr ""
"を生æˆã™ã‚‹ãŸã‚ã€å¾Œã®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã§å®šç¾©ã•ã‚Œã‚‹ç›¸å¯¾ãƒ‘スã®å‰ã«çµåˆã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:153
+#: apt-ftparchive.1.xml:155
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 "
@@ -7069,17 +7180,17 @@ msgstr ""
"リã«ã¯ <filename>ls-LR</filename> 㨠dist ノードãŒã‚ã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:160
+#: apt-ftparchive.1.xml:162
msgid "Specifies the location of the override files."
msgstr "オーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ãƒ•ã‚¡ã‚¤ãƒ«ã®å ´æ‰€ã‚’指定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:165
+#: apt-ftparchive.1.xml:167
msgid "Specifies the location of the cache files."
msgstr "キャッシュファイルã®å ´æ‰€ã‚’指定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:170
+#: apt-ftparchive.1.xml:172
msgid ""
"Specifies the location of the file list files, if the <literal>FileList</"
"literal> setting is used below."
@@ -7088,12 +7199,12 @@ msgstr ""
"ファイルã®å ´æ‰€ã‚’指定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:176
+#: apt-ftparchive.1.xml:178
msgid "<literal>Default</literal> Section"
msgstr "<literal>Default</literal> セクション"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:178
+#: apt-ftparchive.1.xml:180
msgid ""
"The <literal>Default</literal> section specifies default values, and "
"settings that control the operation of the generator. Other sections may "
@@ -7104,7 +7215,7 @@ msgstr ""
"ã‚’ã€ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã”ã¨ã®è¨­å®šã§ä¸Šæ›¸ãã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:184
+#: apt-ftparchive.1.xml:186
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 "
@@ -7116,7 +7227,7 @@ msgstr ""
"方法ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã¯ã™ã¹ã¦ '. gzip' ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:192
+#: apt-ftparchive.1.xml:194
msgid ""
"Sets the default list of file extensions that are package files. This "
"defaults to '.deb'."
@@ -7125,7 +7236,7 @@ msgstr ""
"deb' ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:198
+#: apt-ftparchive.1.xml:200
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Sources files."
@@ -7134,7 +7245,7 @@ msgstr ""
"指定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:204
+#: apt-ftparchive.1.xml:206
msgid ""
"Sets the default list of file extensions that are source files. This "
"defaults to '.dsc'."
@@ -7143,7 +7254,7 @@ msgstr ""
"ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:210
+#: apt-ftparchive.1.xml:212
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Contents files."
@@ -7152,7 +7263,7 @@ msgstr ""
"指定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:216
+#: apt-ftparchive.1.xml:218
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Translation-en master file."
@@ -7161,7 +7272,7 @@ msgstr ""
"ルã®åœ§ç¸®ã‚’制御ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:222
+#: apt-ftparchive.1.xml:224
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-"
@@ -7172,7 +7283,7 @@ msgstr ""
"使ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:229
+#: apt-ftparchive.1.xml:231
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."
@@ -7181,7 +7292,7 @@ msgstr ""
"インデックスファイルã¯ã€umask を無視ã—ã¦ã“ã®ãƒ¢ãƒ¼ãƒ‰ã‚’使用ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:236 apt-ftparchive.1.xml:382
+#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384
msgid ""
"Specifies whether long descriptions should be included in the "
"<filename>Packages</filename> file or split out into a master "
@@ -7191,12 +7302,12 @@ msgstr ""
"<filename>Translation-en</filename> ファイルã«åˆ†å‰²ã™ã‚‹ã‹ã‚’指定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:242
+#: apt-ftparchive.1.xml:244
msgid "<literal>TreeDefault</literal> Section"
msgstr "<literal>TreeDefault</literal> セクション"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:244
+#: apt-ftparchive.1.xml:246
msgid ""
"Sets defaults specific to <literal>Tree</literal> sections. All of these "
"variables are substitution variables and have the strings $(DIST), "
@@ -7207,7 +7318,7 @@ msgstr ""
"ã«å±•é–‹ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:251
+#: apt-ftparchive.1.xml:253
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 "
@@ -7217,7 +7328,7 @@ msgstr ""
"ルをラウンドロビンã—ã€æ•°æ—¥çµŒã¤ã¨ã™ã¹ã¦å†ç”Ÿæˆã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:258
+#: apt-ftparchive.1.xml:260
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. "
@@ -7233,7 +7344,7 @@ msgstr ""
"ãã€å°‘ãªãã¨ã‚‚æ–°ã—ã„ファイルãŒå¿…è¦ã§ã™ã€‚デフォルト㯠10 ã§ã€å˜ä½ã¯æ—¥ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:269
+#: apt-ftparchive.1.xml:271
msgid ""
"Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/"
"$(SECTION)/binary-$(ARCH)/</filename>"
@@ -7242,7 +7353,7 @@ msgstr ""
"$(SECTION)/binary-$(ARCH)/</filename> ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:275
+#: apt-ftparchive.1.xml:277
msgid ""
"Sets the top of the source package directory tree. Defaults to <filename>"
"$(DIST)/$(SECTION)/source/</filename>"
@@ -7251,7 +7362,7 @@ msgstr ""
"$(DIST)/$(SECTION)/source/</filename> ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:281
+#: apt-ftparchive.1.xml:283
msgid ""
"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/"
"binary-$(ARCH)/Packages</filename>"
@@ -7260,7 +7371,7 @@ msgstr ""
"$(SECTION)/binary-$(ARCH)/Packages</filename> ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:287
+#: apt-ftparchive.1.xml:289
msgid ""
"Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/"
"source/Sources</filename>"
@@ -7269,7 +7380,7 @@ msgstr ""
"$(SECTION)/source/Sources</filename> ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:293
+#: apt-ftparchive.1.xml:295
msgid ""
"Sets the output Translation-en master file with the long descriptions if "
"they should be not included in the Packages file. Defaults to <filename>"
@@ -7280,7 +7391,7 @@ msgstr ""
"$(SECTION)/i18n/Translation-en</filename> ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:300
+#: apt-ftparchive.1.xml:302
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)/</"
@@ -7290,7 +7401,7 @@ msgstr ""
"設定ã—ã¾ã™ã€‚デフォルトã¯ã€<filename>$(DIST)/$(SECTION)/</filename> ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:307
+#: apt-ftparchive.1.xml:309
msgid ""
"Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/"
"Contents-$(ARCH)</filename>. If this setting causes multiple Packages files "
@@ -7304,12 +7415,12 @@ msgstr ""
"ftparchive</command> ã¯è‡ªå‹•ã§ãƒ‘ッケージファイルをã¾ã¨ã‚ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:316
+#: apt-ftparchive.1.xml:318
msgid "Sets header file to prepend to the contents output."
msgstr "contents ã®å‡ºåŠ›ã«ä»˜ã‘るヘッダファイルを設定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:321
+#: apt-ftparchive.1.xml:323
msgid ""
"Sets the binary cache database to use for this section. Multiple sections "
"can share the same database."
@@ -7318,7 +7429,7 @@ msgstr ""
"クションã§åŒã˜ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚’共有ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:327
+#: apt-ftparchive.1.xml:329
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -7329,7 +7440,7 @@ msgstr ""
"トリãŒå…ˆé ­ã«ã¤ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:334
+#: apt-ftparchive.1.xml:336
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -7341,12 +7452,12 @@ msgstr ""
"トリãŒå…ˆé ­ã«ã¤ãã¾ã™ã€‚ソースインデックスを処ç†ã™ã‚‹éš›ã«ä½¿ç”¨ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:342
+#: apt-ftparchive.1.xml:344
msgid "<literal>Tree</literal> Section"
msgstr "<literal>Tree</literal> セクション"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:344
+#: apt-ftparchive.1.xml:346
msgid ""
"The <literal>Tree</literal> section defines a standard Debian file tree "
"which consists of a base directory, then multiple sections in that base "
@@ -7360,7 +7471,7 @@ msgstr ""
"<literal>Directory</literal> 変数ã§å®šç¾©ã•ã‚Œã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:349
+#: apt-ftparchive.1.xml:351
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 "
@@ -7373,7 +7484,7 @@ msgstr ""
"codename;</filename> ã®ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:354
+#: apt-ftparchive.1.xml:356
msgid ""
"All of the settings defined in the <literal>TreeDefault</literal> section "
"can be used in a <literal>Tree</literal> section as well as three new "
@@ -7383,7 +7494,7 @@ msgstr ""
"ã„変数ã¨åŒæ§˜ã«ã€<literal>Tree</literal> セクションã§ä½¿ç”¨ã§ãã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt-ftparchive.1.xml:360
+#: apt-ftparchive.1.xml:362
#, no-wrap
msgid ""
"for i in Sections do \n"
@@ -7397,7 +7508,7 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:357
+#: apt-ftparchive.1.xml:359
msgid ""
"When processing a <literal>Tree</literal> section <command>apt-ftparchive</"
"command> performs an operation similar to: <placeholder type=\"programlisting"
@@ -7408,7 +7519,7 @@ msgstr ""
"id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:368
+#: apt-ftparchive.1.xml:370
msgid ""
"This is a space separated list of sections which appear under the "
"distribution; typically this is something like <literal>main contrib non-"
@@ -7418,7 +7529,7 @@ msgstr ""
"<literal>main contrib non-free</literal> ã®ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:375
+#: apt-ftparchive.1.xml:377
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 "
@@ -7429,7 +7540,7 @@ msgstr ""
"ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:388
+#: apt-ftparchive.1.xml:390
msgid ""
"Sets the binary override file. The override file contains section, priority "
"and maintainer address information."
@@ -7438,7 +7549,7 @@ msgstr ""
"セクションã€å„ªå…ˆåº¦ã€ãƒ¡ãƒ³ãƒ†ãƒŠã®ã‚¢ãƒ‰ãƒ¬ã‚¹ã¨ã„ã£ãŸæƒ…å ±ãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:394
+#: apt-ftparchive.1.xml:396
msgid ""
"Sets the source override file. The override file contains section "
"information."
@@ -7447,22 +7558,22 @@ msgstr ""
"クションã®æƒ…å ±ãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:400 apt-ftparchive.1.xml:446
+#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448
msgid "Sets the binary extra override file."
msgstr "ãƒã‚¤ãƒŠãƒªç‰¹åˆ¥ã‚ªãƒ¼ãƒãƒ¼ãƒ©ã‚¤ãƒ‰ãƒ•ã‚¡ã‚¤ãƒ«ã‚’設定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:405 apt-ftparchive.1.xml:451
+#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453
msgid "Sets the source extra override file."
msgstr "ソース特別オーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ãƒ•ã‚¡ã‚¤ãƒ«ã‚’設定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:410
+#: apt-ftparchive.1.xml:412
msgid "<literal>BinDirectory</literal> Section"
msgstr "<literal>BinDirectory</literal> セクション"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:412
+#: apt-ftparchive.1.xml:414
msgid ""
"The <literal>bindirectory</literal> section defines a binary directory tree "
"with no special structure. The scope tag specifies the location of the "
@@ -7476,12 +7587,12 @@ msgstr ""
"<literal>Section</literal><literal>Architecture</literal> 設定ã«ä¼¼ã¦ã„ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:420
+#: apt-ftparchive.1.xml:422
msgid "Sets the Packages file output."
msgstr "Packages ファイルã®å‡ºåŠ›å…ˆã‚’設定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:425
+#: apt-ftparchive.1.xml:427
msgid ""
"Sets the Sources file output. At least one of <literal>Packages</literal> or "
"<literal>Sources</literal> is required."
@@ -7490,42 +7601,42 @@ msgstr ""
"ã‹ <literal>Sources</literal> ã®ã†ã¡ã€ã²ã¨ã¤ã¯å¿…è¦ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:431
+#: apt-ftparchive.1.xml:433
msgid "Sets the Contents file output (optional)."
msgstr "Contents ファイルã®å‡ºåŠ›å…ˆã‚’設定ã—ã¾ã™ (オプション)。"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:436
+#: apt-ftparchive.1.xml:438
msgid "Sets the binary override file."
msgstr "ãƒã‚¤ãƒŠãƒªã‚ªãƒ¼ãƒãƒ¼ãƒ©ã‚¤ãƒ‰ãƒ•ã‚¡ã‚¤ãƒ«ã‚’設定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:441
+#: apt-ftparchive.1.xml:443
msgid "Sets the source override file."
msgstr "ソースオーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ãƒ•ã‚¡ã‚¤ãƒ«ã‚’設定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:456
+#: apt-ftparchive.1.xml:458
msgid "Sets the cache DB."
msgstr "キャッシュ DB を設定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:461
+#: apt-ftparchive.1.xml:463
msgid "Appends a path to all the output paths."
msgstr "全出力パスã«ä»˜åŠ ã™ã‚‹ãƒ‘ス。"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:466
+#: apt-ftparchive.1.xml:468
msgid "Specifies the file list file."
msgstr "ファイル一覧ファイルを指定ã—ã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:473
+#: apt-ftparchive.1.xml:475
msgid "The Binary Override File"
msgstr "ãƒã‚¤ãƒŠãƒªã‚ªãƒ¼ãƒãƒ¼ãƒ©ã‚¤ãƒ‰ãƒ•ã‚¡ã‚¤ãƒ«"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:474
+#: apt-ftparchive.1.xml:476
msgid ""
"The binary override file is fully compatible with &dpkg-scanpackages;. It "
"contains four fields separated by spaces. The first field is the package "
@@ -7540,19 +7651,19 @@ msgstr ""
"ã™ã€‚"
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:480
+#: apt-ftparchive.1.xml:482
#, no-wrap
msgid "old [// oldn]* => new"
msgstr "old [// oldn]* => new"
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:482
+#: apt-ftparchive.1.xml:484
#, no-wrap
msgid "new"
msgstr "new"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:479
+#: apt-ftparchive.1.xml:481
msgid ""
"The general form of the maintainer field is: <placeholder type="
"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" "
@@ -7569,12 +7680,12 @@ msgstr ""
"ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:490
+#: apt-ftparchive.1.xml:492
msgid "The Source Override File"
msgstr "ソースオーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ãƒ•ã‚¡ã‚¤ãƒ«"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:492
+#: apt-ftparchive.1.xml:494
msgid ""
"The source override file is fully compatible with &dpkg-scansources;. It "
"contains two fields separated by spaces. The first field is the source "
@@ -7585,12 +7696,12 @@ msgstr ""
"ケージåã€2 番目ã®ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ã¯å‰²ã‚Šå½“ã¦ã‚‹ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:497
+#: apt-ftparchive.1.xml:499
msgid "The Extra Override File"
msgstr "特別オーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ãƒ•ã‚¡ã‚¤ãƒ«"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:499
+#: apt-ftparchive.1.xml:501
msgid ""
"The extra override file allows any arbitrary tag to be added or replaced in "
"the output. It has three columns, the first is the package, the second is "
@@ -7600,7 +7711,7 @@ msgstr ""
"ã™ã€‚3 列ã‹ã‚‰ãªã‚Šã€å…ˆé ­ã¯ãƒ‘ッケージã€2番目ã¯ã‚¿ã‚°ã€æ®‹ã‚Šã¯æ–°ã—ã„値ã§ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:510
+#: apt-ftparchive.1.xml:512
msgid ""
"Generate the given checksum. These options default to on, when turned off "
"the generated index files will not have the checksum fields where possible. "
@@ -7623,7 +7734,7 @@ msgstr ""
"literal>, <literal>SHA1</literal>, <literal>SHA256</literal> ã«ãªã‚Šã¾ã™ã€‚"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:521
+#: apt-ftparchive.1.xml:523
msgid ""
"Use a binary caching DB. This has no effect on the generate command. "
"Configuration Item: <literal>APT::FTPArchive::DB</literal>."
@@ -7632,7 +7743,7 @@ msgstr ""
"ç›®: <literal>APT::FTPArchive::DB</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:527
+#: apt-ftparchive.1.xml:529
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 "
@@ -7645,7 +7756,7 @@ msgstr ""
"<literal>quiet</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:535
+#: apt-ftparchive.1.xml:537
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 "
@@ -7658,7 +7769,7 @@ msgstr ""
"<literal>APT::FTPArchive::DeLinkAct</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:543
+#: apt-ftparchive.1.xml:545
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 "
@@ -7673,7 +7784,7 @@ msgstr ""
"<literal>APT::FTPArchive::Contents</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:553
+#: apt-ftparchive.1.xml:555
msgid ""
"Select the source override file to use with the <literal>sources</literal> "
"command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
@@ -7683,7 +7794,7 @@ msgstr ""
"é¸æŠžã—ã¾ã™ã€‚設定項目: <literal>APT::FTPArchive::SourceOverride</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:559
+#: apt-ftparchive.1.xml:561
msgid ""
"Make the caching databases read only. Configuration Item: <literal>APT::"
"FTPArchive::ReadOnlyDB</literal>."
@@ -7692,7 +7803,7 @@ msgstr ""
"FTPArchive::ReadOnlyDB</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:564
+#: apt-ftparchive.1.xml:566
msgid ""
"Accept in the <literal>packages</literal> and <literal>contents</literal> "
"commands only package files matching <literal>*_arch.deb</literal> or "
@@ -7705,7 +7816,7 @@ msgstr ""
"ã‘付ã‘ã¾ã™ã€‚設定項目: <literal>APT::FTPArchive::Architecture</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:572
+#: apt-ftparchive.1.xml:574
msgid ""
"&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
"packages are recompiled and/or republished with the same version again, this "
@@ -7728,7 +7839,7 @@ msgstr ""
"加ãƒã‚§ãƒƒã‚¯ã«ã¯ã€æ„味ãŒã‚ã‚Šã¾ã›ã‚“。"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:584
+#: apt-ftparchive.1.xml:586
msgid ""
"This configuration option defaults to \"<literal>true</literal>\" and should "
"only be set to <literal>\"false\"</literal> if the Archive generated with "
@@ -7743,13 +7854,13 @@ msgstr ""
"ã¿ç”Ÿæˆã§ãã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。"
#. type: Content of: <refentry><refsect1><para><programlisting>
-#: apt-ftparchive.1.xml:602
+#: apt-ftparchive.1.xml:604
#, 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>
-#: apt-ftparchive.1.xml:598
+#: apt-ftparchive.1.xml:600
msgid ""
"To create a compressed Packages file for a directory containing binary "
"packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@ -7758,7 +7869,7 @@ msgstr ""
"ã¯ã€ä»¥ä¸‹ã®ã‚ˆã†ã«ã—ã¾ã™ã€‚<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:612
+#: apt-ftparchive.1.xml:614
msgid ""
"<command>apt-ftparchive</command> returns zero on normal operation, decimal "
"100 on error."
diff --git a/doc/po/pl.po b/doc/po/pl.po
index 81edfb704..021f2ad70 100644
--- a/doc/po/pl.po
+++ b/doc/po/pl.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.9.7.3\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-06-13 13:46+0300\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-07-28 21:59+0200\n"
"Last-Translator: Robert Luberda <robert@debian.org>\n"
"Language-Team: Polish <manpages-pl-list@lists.sourceforge.net>\n"
@@ -657,35 +657,35 @@ msgstr ""
"473041FA --> <!ENTITY synopsis-keyid \"id_klucza\">"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-get.8.xml:26 apt-cache.8.xml:26 apt-key.8.xml:25 apt-mark.8.xml:26
-#: apt-secure.8.xml:25 apt-cdrom.8.xml:25 apt-config.8.xml:26
+#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28
+#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28
msgid "8"
msgstr "8"
#. type: Content of: <refentry><refmeta><refmiscinfo>
-#: apt-get.8.xml:27 apt-cache.8.xml:27 apt-key.8.xml:26 apt-mark.8.xml:27
-#: apt-secure.8.xml:26 apt-cdrom.8.xml:26 apt-config.8.xml:27
-#: apt.conf.5.xml:32 apt_preferences.5.xml:26 sources.list.5.xml:27
-#: apt-extracttemplates.1.xml:27 apt-sortpkgs.1.xml:27 apt-ftparchive.1.xml:27
+#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29
+#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29
+#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29
+#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29
msgid "APT"
msgstr "APT"
#
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-get.8.xml:33
+#: apt-get.8.xml:35
msgid "APT package handling utility -- command-line interface"
msgstr "Narzędzie zarządzania pakietami APT -- interfejs linii poleceń"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:38 apt-cache.8.xml:38 apt-key.8.xml:37 apt-mark.8.xml:38
-#: apt-secure.8.xml:50 apt-cdrom.8.xml:37 apt-config.8.xml:38
-#: apt.conf.5.xml:41 apt_preferences.5.xml:36 sources.list.5.xml:36
-#: apt-extracttemplates.1.xml:38 apt-sortpkgs.1.xml:38 apt-ftparchive.1.xml:38
+#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40
+#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40
+#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38
+#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40
msgid "Description"
msgstr "Opis"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:39
+#: apt-get.8.xml:41
msgid ""
"<command>apt-get</command> is the command-line tool for handling packages, "
"and may be considered the user's \"back-end\" to other tools using the APT "
@@ -699,8 +699,8 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:44 apt-cache.8.xml:44 apt-cdrom.8.xml:51 apt-config.8.xml:44
-#: apt-ftparchive.1.xml:54
+#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46
+#: apt-ftparchive.1.xml:56
msgid ""
"Unless the <option>-h</option>, or <option>--help</option> option is given, "
"one of the commands below must be present."
@@ -710,7 +710,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:49
+#: apt-get.8.xml:51
msgid ""
"<literal>update</literal> is used to resynchronize the package index files "
"from their sources. The indexes of available packages are fetched from the "
@@ -735,7 +735,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:61
+#: apt-get.8.xml:63
msgid ""
"<literal>upgrade</literal> is used to install the newest versions of all "
"packages currently installed on the system from the sources enumerated in "
@@ -761,7 +761,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:74
+#: apt-get.8.xml:76
msgid ""
"<literal>dist-upgrade</literal> in addition to performing the function of "
"<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@ -787,7 +787,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:87
+#: apt-get.8.xml:89
msgid ""
"<literal>dselect-upgrade</literal> is used in conjunction with the "
"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@ -805,7 +805,7 @@ msgstr ""
"nowych)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:98
+#: apt-get.8.xml:100
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 "
@@ -836,7 +836,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:116
+#: apt-get.8.xml:118
msgid ""
"A specific version of a package can be selected for installation by "
"following the package name with an equals and the version of the package to "
@@ -854,7 +854,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:123
+#: apt-get.8.xml:125
msgid ""
"Both of the version selection mechanisms can downgrade packages and must be "
"used with care."
@@ -864,7 +864,7 @@ msgstr ""
"ostrożnie."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:126
+#: apt-get.8.xml:128
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. "
@@ -885,7 +885,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:137
+#: apt-get.8.xml:139
msgid ""
"Finally, the &apt-preferences; mechanism allows you to create an alternative "
"installation policy for individual packages."
@@ -895,7 +895,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:141
+#: apt-get.8.xml:143
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 "
@@ -917,7 +917,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:151
+#: apt-get.8.xml:153
msgid ""
"<literal>remove</literal> is identical to <literal>install</literal> except "
"that packages are removed instead of installed. Note that removing a package "
@@ -931,7 +931,7 @@ msgstr ""
"pakiet zostanie zainstalowany zamiast zostać usunięty."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:159
+#: apt-get.8.xml:161
msgid ""
"<literal>purge</literal> is identical to <literal>remove</literal> except "
"that packages are removed and purged (any configuration files are deleted "
@@ -943,7 +943,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:164
+#: apt-get.8.xml:166
msgid ""
"<literal>source</literal> causes <command>apt-get</command> to fetch source "
"packages. APT will examine the available packages to decide which source "
@@ -963,7 +963,7 @@ msgstr ""
"wydanie</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:172
+#: apt-get.8.xml:174
msgid ""
"Source packages are tracked separately from binary packages via <literal>deb-"
"src</literal> lines in the &sources-list; file. This means that you will "
@@ -979,7 +979,7 @@ msgstr ""
"możliwe pobranie jakiejkolwiek wersji pakietu."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:178
+#: apt-get.8.xml:180
msgid ""
"If the <option>--compile</option> option is specified then the package will "
"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
@@ -995,7 +995,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:185
+#: apt-get.8.xml:187
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 "
@@ -1010,7 +1010,7 @@ msgstr ""
"włączona zostaje opcja <literal>APT::Get::Only-Source</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:191
+#: apt-get.8.xml:193
msgid ""
"Note that source packages are not installed and tracked in the "
"<command>dpkg</command> database like binary packages; they are simply "
@@ -1022,7 +1022,7 @@ msgstr ""
"<command>tar</command>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:197
+#: apt-get.8.xml:199
msgid ""
"<literal>build-dep</literal> causes apt-get to install/remove packages in an "
"attempt to satisfy the build dependencies for a source package. By default "
@@ -1036,7 +1036,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:204
+#: apt-get.8.xml:206
msgid ""
"<literal>check</literal> is a diagnostic tool; it updates the package cache "
"and checks for broken dependencies."
@@ -1045,7 +1045,7 @@ msgstr ""
"bufor (cache) pakietów i szuka zepsutych pakietów."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:209
+#: apt-get.8.xml:211
msgid ""
"<literal>download</literal> will download the given binary package into the "
"current directory."
@@ -1055,7 +1055,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:215
+#: apt-get.8.xml:217
msgid ""
"<literal>clean</literal> clears out the local repository of retrieved "
"package files. It removes everything but the lock file from "
@@ -1075,7 +1075,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:225
+#: apt-get.8.xml:227
msgid ""
"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
"local repository of retrieved package files. The difference is that it only "
@@ -1095,7 +1095,7 @@ msgstr ""
"zawierajÄ…cych zainstalowane pakiety."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:235
+#: apt-get.8.xml:237
msgid ""
"<literal>autoremove</literal> is used to remove packages that were "
"automatically installed to satisfy dependencies for other packages and are "
@@ -1106,7 +1106,7 @@ msgstr ""
"pakietach, i nie są już potrzebne."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:240
+#: apt-get.8.xml:242
msgid ""
"<literal>changelog</literal> downloads a package changelog and displays it "
"through <command>sensible-pager</command>. The server name and base "
@@ -1129,14 +1129,14 @@ msgstr ""
"te dla polecenia <option>install</option>."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:258 apt-cache.8.xml:248 apt-mark.8.xml:108
-#: apt-config.8.xml:84 apt-extracttemplates.1.xml:52 apt-sortpkgs.1.xml:48
-#: apt-ftparchive.1.xml:504
+#: apt-get.8.xml:260 apt-cache.8.xml:250 apt-mark.8.xml:110
+#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50
+#: apt-ftparchive.1.xml:506
msgid "options"
msgstr "opcje"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:263
+#: apt-get.8.xml:265
msgid ""
"Do not consider recommended packages as a dependency for installing. "
"Configuration Item: <literal>APT::Install-Recommends</literal>."
@@ -1145,7 +1145,7 @@ msgstr ""
"Pozycja w pliku konfiguracyjnym: <literal>APT::Install-Recommends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:268
+#: apt-get.8.xml:270
msgid ""
"Consider suggested packages as a dependency for installing. Configuration "
"Item: <literal>APT::Install-Suggests</literal>."
@@ -1155,7 +1155,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:273
+#: apt-get.8.xml:275
msgid ""
"Download only; package files are only retrieved, not unpacked or installed. "
"Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@ -1166,7 +1166,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:278
+#: apt-get.8.xml:280
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 "
@@ -1194,7 +1194,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:293
+#: apt-get.8.xml:295
msgid ""
"Ignore missing packages; if packages cannot be retrieved or fail the "
"integrity check after retrieval (corrupted package files), hold back those "
@@ -1214,7 +1214,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:304
+#: apt-get.8.xml:306
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 "
@@ -1226,7 +1226,7 @@ msgstr ""
"Download</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:311
+#: apt-get.8.xml:313
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 "
@@ -1247,7 +1247,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:326
+#: apt-get.8.xml:328
msgid ""
"No action; perform a simulation of events that would occur but do not "
"actually change the system. Configuration Item: <literal>APT::Get::"
@@ -1258,7 +1258,7 @@ msgstr ""
"Get::Simulate</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:330
+#: apt-get.8.xml:332
msgid ""
"Simulated runs performed as a user will automatically deactivate locking "
"(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::"
@@ -1278,7 +1278,7 @@ msgstr ""
"strony <literal>apt-get</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:338
+#: apt-get.8.xml:340
msgid ""
"Simulated runs print out a series of lines, each representing a "
"<command>dpkg</command> operation: configure (<literal>Conf</literal>), "
@@ -1295,7 +1295,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:346
+#: apt-get.8.xml:348
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 "
@@ -1311,7 +1311,7 @@ msgstr ""
"Assume-Yes</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:354
+#: apt-get.8.xml:356
msgid ""
"Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::"
"Assume-No</literal>."
@@ -1321,7 +1321,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:359
+#: apt-get.8.xml:361
msgid ""
"Show upgraded packages; print out a list of all packages that are to be "
"upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@ -1332,7 +1332,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:365
+#: apt-get.8.xml:367
msgid ""
"Show full versions for upgraded and installed packages. Configuration Item: "
"<literal>APT::Get::Show-Versions</literal>."
@@ -1341,7 +1341,7 @@ msgstr ""
"konfiguracyjnym: <literal>APT::Get::Show-Versions</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:371
+#: apt-get.8.xml:373
msgid ""
"This option controls the architecture packages are built for by <command>apt-"
"get source --compile</command> and how cross-builddependencies are "
@@ -1360,7 +1360,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:381
+#: apt-get.8.xml:383
msgid ""
"Compile source packages after downloading them. Configuration Item: "
"<literal>APT::Get::Compile</literal>."
@@ -1370,7 +1370,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:386
+#: apt-get.8.xml:388
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 "
@@ -1383,9 +1383,21 @@ msgstr ""
"dużej liczby niepożądanych wstrzymań. Pozycja w pliku konfiguracyjnym: "
"<literal>APT::Ignore-Hold</literal>."
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:395
+msgid ""
+"Allow installing new packages when used in conjunction with "
+"<literal>upgrade</literal>. This is useful if the update of a installed "
+"package requires new dependencies to be installed. Instead of holding the "
+"package back <literal>upgrade</literal> will upgrade the package and install "
+"the new dependencies. Note that <literal>upgrade</literal> with this option "
+"will never remove packages, only allow adding new ones. Configuration Item: "
+"<literal>APT::Get::Upgrade-Allow-New</literal>."
+msgstr ""
+
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:393
+#: apt-get.8.xml:407
msgid ""
"Do not upgrade packages; when used in conjunction with <literal>install</"
"literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@ -1398,7 +1410,7 @@ msgstr ""
"<literal>APT::Get::Upgrade</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:400
+#: apt-get.8.xml:414
msgid ""
"Do not install new packages; when used in conjunction with <literal>install</"
"literal>, <literal>only-upgrade</literal> will install upgrades for already "
@@ -1412,7 +1424,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:408
+#: apt-get.8.xml:422
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 "
@@ -1429,7 +1441,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:416
+#: apt-get.8.xml:430
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 "
@@ -1452,7 +1464,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:427
+#: apt-get.8.xml:441
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. "
@@ -1467,7 +1479,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:435
+#: apt-get.8.xml:449
msgid ""
"Re-install packages that are already installed and at the newest version. "
"Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@ -1476,7 +1488,7 @@ msgstr ""
"Pozycja w pliku konfiguracyjnym: <literal>APT::Get::ReInstall</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:440
+#: apt-get.8.xml:454
msgid ""
"This option is on by default; use <literal>--no-list-cleanup</literal> to "
"turn it off. When it is on, <command>apt-get</command> will automatically "
@@ -1494,7 +1506,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:450
+#: apt-get.8.xml:464
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 "
@@ -1518,7 +1530,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:465
+#: apt-get.8.xml:479
msgid ""
"Only perform operations that are 'trivial'. Logically this can be considered "
"related to <option>--assume-yes</option>; where <option>--assume-yes</"
@@ -1533,7 +1545,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:472
+#: apt-get.8.xml:486
msgid ""
"If any packages are to be removed apt-get immediately aborts without "
"prompting. Configuration Item: <literal>APT::Get::Remove</literal>."
@@ -1543,7 +1555,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:478
+#: apt-get.8.xml:492
msgid ""
"If the command is either <literal>install</literal> or <literal>remove</"
"literal>, then this option acts like running the <literal>autoremove</"
@@ -1558,7 +1570,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:485
+#: apt-get.8.xml:499
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 "
@@ -1578,7 +1590,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:496
+#: apt-get.8.xml:510
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</"
@@ -1590,7 +1602,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:502
+#: apt-get.8.xml:516
msgid ""
"Only process architecture-dependent build-dependencies. Configuration Item: "
"<literal>APT::Get::Arch-Only</literal>."
@@ -1601,7 +1613,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:507
+#: apt-get.8.xml:521
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::"
@@ -1611,24 +1623,34 @@ msgstr ""
"nieostrzeganie o tym. Jest to użyteczne dla programów typu pbuilder. Pozycja "
"w pliku konfiguracyjnym: <literal>APT::Get::AllowUnauthenticated</literal>."
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:527
+msgid ""
+"Show user friendly progress information in the terminal window when packages "
+"are installed, upgraded or removed. For a machine parsable version of this "
+"data see README.progress-reporting in the apt doc directory. Configuration "
+"Item: <literal>DpkgPM::Progress</literal> and <literal>Dpkg::Progress-Fancy</"
+"literal>."
+msgstr ""
+
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125
-#: apt.conf.5.xml:1167 apt_preferences.5.xml:698
+#: apt-get.8.xml:540 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127
+#: apt.conf.5.xml:1200 apt_preferences.5.xml:700
msgid "Files"
msgstr "Pliki"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131
-#: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109
-#: apt.conf.5.xml:1173 apt_preferences.5.xml:705 sources.list.5.xml:252
-#: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63
-#: apt-ftparchive.1.xml:607
+#: apt-get.8.xml:550 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133
+#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111
+#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:258
+#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65
+#: apt-ftparchive.1.xml:609
msgid "See Also"
msgstr "Zobacz także"
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:529
+#: apt-get.8.xml:551
msgid ""
"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@ -1639,15 +1661,15 @@ msgstr ""
"&apt-preferences;, APT Howto."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:534 apt-cache.8.xml:355 apt-mark.8.xml:135
-#: apt-cdrom.8.xml:149 apt-config.8.xml:114 apt-extracttemplates.1.xml:74
-#: apt-sortpkgs.1.xml:67 apt-ftparchive.1.xml:611
+#: apt-get.8.xml:556 apt-cache.8.xml:357 apt-mark.8.xml:137
+#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76
+#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613
msgid "Diagnostics"
msgstr "Diagnostyka"
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:535
+#: apt-get.8.xml:557
msgid ""
"<command>apt-get</command> returns zero on normal operation, decimal 100 on "
"error."
@@ -1656,13 +1678,13 @@ msgstr ""
"w przypadku błędu."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cache.8.xml:33
+#: apt-cache.8.xml:35
msgid "query the APT cache"
msgstr "odpytanie bufora APT"
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:39
+#: apt-cache.8.xml:41
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 "
@@ -1675,7 +1697,7 @@ msgstr ""
"generowania interesującego wyjścia."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:49
+#: apt-cache.8.xml:51
msgid ""
"<literal>gencaches</literal> creates APT's package cache. This is done "
"implicitly by all commands needing this cache if it is missing or outdated."
@@ -1685,15 +1707,15 @@ msgstr ""
"istnieje lub jest przestarzały."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:53 apt-cache.8.xml:142 apt-cache.8.xml:163
-#: apt-cache.8.xml:185 apt-cache.8.xml:190 apt-cache.8.xml:206
-#: apt-cache.8.xml:224 apt-cache.8.xml:236
+#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165
+#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208
+#: apt-cache.8.xml:226 apt-cache.8.xml:238
msgid "&synopsis-pkg;"
msgstr "&synopsis-pkg;"
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:54
+#: apt-cache.8.xml:56
msgid ""
"<literal>showpkg</literal> displays information about the packages listed on "
"the command line. Remaining arguments are package names. The available "
@@ -1716,7 +1738,7 @@ msgstr ""
"poniższego:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-cache.8.xml:66
+#: apt-cache.8.xml:68
#, no-wrap
msgid ""
"Package: libreadline2\n"
@@ -1743,7 +1765,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:78
+#: apt-cache.8.xml:80
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, "
@@ -1763,7 +1785,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:87
+#: apt-cache.8.xml:89
msgid ""
"<literal>stats</literal> displays some statistics about the cache. No "
"further arguments are expected. Statistics reported are:"
@@ -1773,7 +1795,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:90
+#: apt-cache.8.xml:92
msgid ""
"<literal>Total package names</literal> is the number of package names found "
"in the cache."
@@ -1783,7 +1805,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:94
+#: apt-cache.8.xml:96
msgid ""
"<literal>Normal packages</literal> is the number of regular, ordinary "
"package names; these are packages that bear a one-to-one correspondence "
@@ -1796,7 +1818,7 @@ msgstr ""
"pakiety jako zależności. Większość pakietów należy do tej kategorii."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:100
+#: apt-cache.8.xml:102
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 "
@@ -1813,7 +1835,7 @@ msgstr ""
"agenta\", ale żaden pakiet nie nazywa się \"mail-transport-agent\"."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:108
+#: apt-cache.8.xml:110
msgid ""
"<literal>Single virtual packages</literal> is the number of packages with "
"only one package providing a particular virtual package. For example, in the "
@@ -1827,7 +1849,7 @@ msgstr ""
"dostarcza \"X11-text-viewer\"."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:114
+#: apt-cache.8.xml:116
msgid ""
"<literal>Mixed virtual packages</literal> is the number of packages that "
"either provide a particular virtual package or have the virtual package name "
@@ -1842,7 +1864,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:121
+#: apt-cache.8.xml:123
msgid ""
"<literal>Missing</literal> is the number of package names that were "
"referenced in a dependency but were not provided by any package. Missing "
@@ -1858,7 +1880,7 @@ msgstr ""
"zależnościach typu \"Conflicts\" lub \"Breaks\"."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:128
+#: apt-cache.8.xml:130
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 "
@@ -1875,7 +1897,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:135
+#: apt-cache.8.xml:137
msgid ""
"<literal>Total dependencies</literal> is the number of dependency "
"relationships claimed by all of the packages in the cache."
@@ -1884,7 +1906,7 @@ msgstr ""
"więzów zależności wymaganych przez wszystkie pakiety w buforze."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:143
+#: apt-cache.8.xml:145
msgid ""
"<literal>showsrc</literal> displays all the source package records that "
"match the given package names. All versions are shown, as well as all "
@@ -1897,7 +1919,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:149
+#: apt-cache.8.xml:151
msgid ""
"<literal>dump</literal> shows a short listing of every package in the cache. "
"It is primarily for debugging."
@@ -1907,7 +1929,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:154
+#: apt-cache.8.xml:156
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."
@@ -1918,7 +1940,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:159
+#: apt-cache.8.xml:161
msgid ""
"<literal>unmet</literal> displays a summary of all unmet dependencies in the "
"package cache."
@@ -1928,7 +1950,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:164
+#: apt-cache.8.xml:166
msgid ""
"<literal>show</literal> performs a function similar to <command>dpkg --print-"
"avail</command>; it displays the package records for the named packages."
@@ -1937,12 +1959,12 @@ msgstr ""
"avail</command>; pokazuje szczegółowe informacje o podanych pakietach."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:169
+#: apt-cache.8.xml:171
msgid "&synopsis-regex;"
msgstr "&synopsis-regex;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:170
+#: apt-cache.8.xml:172
msgid ""
"<literal>search</literal> performs a full text search on all available "
"package lists for the POSIX regex pattern given, see &regex;. It searches "
@@ -1965,7 +1987,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:181
+#: apt-cache.8.xml:183
msgid ""
"Separate arguments can be used to specify multiple search patterns that are "
"and'ed together."
@@ -1975,7 +1997,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:186
+#: apt-cache.8.xml:188
msgid ""
"<literal>depends</literal> shows a listing of each dependency a package has "
"and all the possible other packages that can fulfill that dependency."
@@ -1985,7 +2007,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:191
+#: apt-cache.8.xml:193
msgid ""
"<literal>rdepends</literal> shows a listing of each reverse dependency a "
"package has."
@@ -1994,13 +2016,13 @@ msgstr ""
"danego pakietu."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:195
+#: apt-cache.8.xml:197
msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:196
+#: apt-cache.8.xml:198
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 "
@@ -2015,7 +2037,7 @@ msgstr ""
"używać z opcją <option>--generate</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:201
+#: apt-cache.8.xml:203
msgid ""
"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 "
@@ -2028,7 +2050,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:207
+#: apt-cache.8.xml:209
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."
@@ -2049,7 +2071,7 @@ msgstr ""
"Cache::GivenOnly</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:216
+#: apt-cache.8.xml:218
msgid ""
"The resulting nodes will have several shapes; normal packages are boxes, "
"pure virtual packages are triangles, mixed virtual packages are diamonds, "
@@ -2064,12 +2086,12 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:221
+#: apt-cache.8.xml:223
msgid "Caution, dotty cannot graph larger sets of packages."
msgstr "Uwaga: dotty nie potrafi narysować większego zbioru pakietów."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:225
+#: apt-cache.8.xml:227
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>."
@@ -2079,13 +2101,13 @@ msgstr ""
"ulink>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:229
+#: apt-cache.8.xml:231
msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:230
+#: apt-cache.8.xml:232
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 "
@@ -2099,7 +2121,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:237
+#: apt-cache.8.xml:239
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 "
@@ -2118,7 +2140,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:253
+#: apt-cache.8.xml:255
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::"
@@ -2130,7 +2152,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:259
+#: apt-cache.8.xml:261
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 "
@@ -2147,7 +2169,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:267
+#: apt-cache.8.xml:269
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 "
@@ -2161,7 +2183,7 @@ msgstr ""
"pliku konfiguracyjnym: <literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:274
+#: apt-cache.8.xml:276
msgid ""
"Print only important dependencies; for use with <literal>unmet</literal> and "
"<literal>depends</literal>. Causes only Depends and Pre-Depends relations to "
@@ -2173,7 +2195,7 @@ msgstr ""
"Cache::Important</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:288
+#: apt-cache.8.xml:290
msgid ""
"Per default the <literal>depends</literal> and <literal>rdepends</literal> "
"print all dependencies. This can be tweaked with these flags which will omit "
@@ -2189,7 +2211,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:295
+#: apt-cache.8.xml:297
msgid ""
"Print full package records when searching. Configuration Item: "
"<literal>APT::Cache::ShowFull</literal>."
@@ -2198,7 +2220,7 @@ msgstr ""
"konfiguracyjnym: <literal>APT::Cache::ShowFull</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:300
+#: apt-cache.8.xml:302
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-"
@@ -2217,7 +2239,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:309
+#: apt-cache.8.xml:311
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</"
@@ -2230,7 +2252,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:315
+#: apt-cache.8.xml:317
msgid ""
"Only search on the package names, not the long descriptions. Configuration "
"Item: <literal>APT::Cache::NamesOnly</literal>."
@@ -2240,7 +2262,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:320
+#: apt-cache.8.xml:322
msgid ""
"Make <literal>pkgnames</literal> print all names, including virtual packages "
"and missing dependencies. Configuration Item: <literal>APT::Cache::"
@@ -2253,7 +2275,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:326
+#: apt-cache.8.xml:328
msgid ""
"Make <literal>depends</literal> and <literal>rdepends</literal> recursive so "
"that all packages mentioned are printed once. Configuration Item: "
@@ -2266,7 +2288,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:333
+#: apt-cache.8.xml:335
msgid ""
"Limit the output of <literal>depends</literal> and <literal>rdepends</"
"literal> to packages which are currently installed. Configuration Item: "
@@ -2278,13 +2300,13 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:351
+#: apt-cache.8.xml:353
msgid "&apt-conf;, &sources-list;, &apt-get;"
msgstr "&apt-conf;, &sources-list;, &apt-get;"
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:356
+#: apt-cache.8.xml:358
msgid ""
"<command>apt-cache</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -2294,12 +2316,12 @@ msgstr ""
#
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-key.8.xml:32
+#: apt-key.8.xml:34
msgid "APT key management utility"
msgstr "Narzędzie zarządzanie kluczami APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:39
+#: apt-key.8.xml:41
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 "
@@ -2311,12 +2333,12 @@ msgstr ""
"zaufane."
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:45
+#: apt-key.8.xml:47
msgid "Commands"
msgstr "Polecenia"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:50
+#: apt-key.8.xml:52
msgid ""
"Add a new key to the list of trusted keys. The key is read from the "
"filename given with the parameter &synopsis-param-filename; or if the "
@@ -2327,32 +2349,32 @@ msgstr ""
"wejścia, jeśli zamiast nazwy pliku podano <literal>-</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:63
+#: apt-key.8.xml:65
msgid "Remove a key from the list of trusted keys."
msgstr "Usuwa klucz z listy zaufanych kluczy."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:74
+#: apt-key.8.xml:76
msgid "Output the key &synopsis-param-keyid; to standard output."
msgstr "Wyświetla klucz &synopsis-param-keyid; na standardowym wyjściu."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:85
+#: apt-key.8.xml:87
msgid "Output all trusted keys to standard output."
msgstr "Wypisuje na standardowe wyjście wszystkie zaufane klucze."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:96
+#: apt-key.8.xml:98
msgid "List trusted keys."
msgstr "Wyświetla listę zaufanych kluczy."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:107
+#: apt-key.8.xml:109
msgid "List fingerprints of trusted keys."
msgstr "Wyświetla listę odcisków zaufanych kluczy."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:118
+#: apt-key.8.xml:120
msgid ""
"Pass advanced options to gpg. With adv --recv-key you can download the "
"public key."
@@ -2361,22 +2383,21 @@ msgstr ""
"pobranie klucza publicznego."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:130
+#: apt-key.8.xml:132
msgid ""
"Update the local keyring with the archive keyring and remove from the local "
"keyring the archive keys which are no longer valid. The archive keyring is "
"shipped in the <literal>archive-keyring</literal> package of your "
-"distribution, e.g. the &keyring-package; package in "
-"&keyring-distro;."
+"distribution, e.g. the &keyring-package; package in &keyring-distro;."
msgstr ""
"Aktualizuje lokalną składnicę kluczy używając składnicy kluczy archiwum i "
"usuwa z lokalnej składnicy niepoprawne klucze archiwum. Składnica kluczy "
"archiwum jest dostarczana przez pakiet <literal>archive-keyring</literal> "
-"Twojej dystrybucji, np. pakiet &keyring-package; w "
-"systemach &keyring-distro;."
+"Twojej dystrybucji, np. pakiet &keyring-package; w systemach &keyring-"
+"distro;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:144
+#: apt-key.8.xml:146
msgid ""
"Perform an update working similarly to the <command>update</command> command "
"above, but get the archive keyring from a URI instead and validate it "
@@ -2394,12 +2415,12 @@ msgstr ""
"command>, ale APT w Ubuntu je obsługuje."
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:160 apt-cdrom.8.xml:80
+#: apt-key.8.xml:162 apt-cdrom.8.xml:82
msgid "Options"
msgstr "Opcje"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:161
+#: apt-key.8.xml:163
msgid ""
"Note that options need to be defined before the commands described in the "
"previous section."
@@ -2408,7 +2429,7 @@ msgstr ""
"opisanymi w poprzednim rozdziale."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:164
+#: apt-key.8.xml:166
msgid ""
"With this option it is possible to specify a particular keyring file the "
"command should operate on. The default is that a command is executed on the "
@@ -2425,49 +2446,47 @@ msgstr ""
"właśnie tam."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:179
+#: apt-key.8.xml:181
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:180
+#: apt-key.8.xml:182
msgid "Local trust database of archive keys."
msgstr "Lokalna składnica zaufanych kluczy archiwum."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:183
+#: apt-key.8.xml:185
msgid "&keyring-filename;"
msgstr "&keyring-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:184
+#: apt-key.8.xml:186
msgid "Keyring of &keyring-distro; archive trusted keys."
msgstr "Składnica zaufanych kluczy archiwum &keyring-distro;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:187
-msgid ""
-"&keyring-removed-filename;"
-msgstr ""
-"&keyring-removed-filename;"
+#: apt-key.8.xml:189
+msgid "&keyring-removed-filename;"
+msgstr "&keyring-removed-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:188
+#: apt-key.8.xml:190
msgid "Keyring of &keyring-distro; archive removed trusted keys."
msgstr "Składnica usuniętych zaufanych kluczy archiwum &keyring-distro;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:197
+#: apt-key.8.xml:199
msgid "&apt-get;, &apt-secure;"
msgstr "&apt-get;, &apt-secure;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-mark.8.xml:33
+#: apt-mark.8.xml:35
msgid "mark/unmark a package as being automatically-installed"
msgstr "Zaznaczanie/odznaczanie pakietu jako zainstalowanego automatycznie."
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:39
+#: apt-mark.8.xml:41
msgid ""
"<command>apt-mark</command> will change whether a package has been marked as "
"being automatically installed."
@@ -2476,7 +2495,7 @@ msgstr ""
"zainstalowany automatycznie."
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:43
+#: apt-mark.8.xml:45
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 "
@@ -2492,7 +2511,7 @@ msgstr ""
"lub <command>aptitude</command>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:52
+#: apt-mark.8.xml:54
msgid ""
"<literal>auto</literal> is used to mark a package as being automatically "
"installed, which will cause the package to be removed when no more manually "
@@ -2503,7 +2522,7 @@ msgstr ""
"żaden inny ręcznie zainstalowany pakiet nie będzie od niego zależał."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:60
+#: apt-mark.8.xml:62
msgid ""
"<literal>manual</literal> is used to mark a package as being manually "
"installed, which will prevent the package from being automatically removed "
@@ -2514,7 +2533,7 @@ msgstr ""
"sytuacji gdy żaden inny pakiet nie będzie od niego zależał."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:68
+#: apt-mark.8.xml:70
msgid ""
"<literal>hold</literal> is used to mark a package as held back, which will "
"prevent the package from being automatically installed, upgraded or "
@@ -2529,7 +2548,7 @@ msgstr ""
"działanie tego polecenia."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:78
+#: apt-mark.8.xml:80
msgid ""
"<literal>unhold</literal> is used to cancel a previously set hold on a "
"package to allow all actions again."
@@ -2539,7 +2558,7 @@ msgstr ""
"na tym pakiecie."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:84
+#: apt-mark.8.xml:86
msgid ""
"<literal>showauto</literal> is used to print a list of automatically "
"installed packages with each package on a new line. All automatically "
@@ -2553,7 +2572,7 @@ msgstr ""
"to zostaną wypisane tylko te z nich, które są automatycznie zainstalowane."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:92
+#: apt-mark.8.xml:94
msgid ""
"<literal>showmanual</literal> can be used in the same way as "
"<literal>showauto</literal> except that it will print a list of manually "
@@ -2564,7 +2583,7 @@ msgstr ""
"zainstalowanych pakietów."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:99
+#: apt-mark.8.xml:101
msgid ""
"<literal>showhold</literal> is used to print a list of packages on hold in "
"the same way as for the other show commands."
@@ -2573,7 +2592,7 @@ msgstr ""
"pakietów wstrzymanych, w taki sam sposób jak pozostałe polecenia \"show\"."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:115
+#: apt-mark.8.xml:117
msgid ""
"Read/Write package stats from the filename given with the parameter "
"&synopsis-param-filename; instead of from the default location, which is "
@@ -2587,7 +2606,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:136
+#: apt-mark.8.xml:138
msgid ""
"<command>apt-mark</command> returns zero on normal operation, non-zero on "
"error."
@@ -2596,12 +2615,12 @@ msgstr ""
"wartość niezerową - w przypadku błędu."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-secure.8.xml:47
+#: apt-secure.8.xml:49
msgid "Archive authentication support for APT"
msgstr "Wsparcie APT dla autentykacji archiwum."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:52
+#: apt-secure.8.xml:54
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 "
@@ -2614,7 +2633,7 @@ msgstr ""
"używanego do podpisywania plików \"Release\"."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:60
+#: apt-secure.8.xml:62
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 "
@@ -2630,7 +2649,7 @@ msgstr ""
"zweryfikowane, zanim w ogóle APT spróbuje z nich pobrać pakiety."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:69
+#: apt-secure.8.xml:71
msgid ""
"The package frontends &apt-get;, &aptitude; and &synaptic; support this new "
"authentication feature."
@@ -2639,12 +2658,12 @@ msgstr ""
"sposób autoryzacji pakietów."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:74
+#: apt-secure.8.xml:76
msgid "Trusted archives"
msgstr "Zaufane archiwa"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:77
+#: apt-secure.8.xml:79
msgid ""
"The chain of trust from an apt archive to the end user is made up of several "
"steps. <command>apt-secure</command> is the last step in this chain; "
@@ -2660,7 +2679,7 @@ msgstr ""
"opiekuna archiwum jest zapewnienie poprawności integralności archiwum."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:85
+#: apt-secure.8.xml:87
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 "
@@ -2673,7 +2692,7 @@ msgstr ""
"verify i devscripts)."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:92
+#: apt-secure.8.xml:94
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. In order to become "
@@ -2690,28 +2709,29 @@ msgstr ""
"odpowiednie procedury używane w Debianie do identyfikacji posiadacza klucza."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:102
+#: apt-secure.8.xml:104
msgid ""
"Once the uploaded package is verified and included in the archive, the "
"maintainer signature is stripped off, and checksums of the package are "
"computed and put in the Packages file. The checksums 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 for this &keyring-distro; release, and distributed "
-"alongside the packages and the Packages files on &keyring-distro; mirrors. The keys "
-"are in the &keyring-distro; archive keyring available in the &keyring-package; "
-"package."
+"then signed by the archive key for this &keyring-distro; release, and "
+"distributed alongside the packages and the Packages files on &keyring-"
+"distro; mirrors. The keys are in the &keyring-distro; archive keyring "
+"available in the &keyring-package; package."
msgstr ""
"Po tym jak dostarczony przez opiekuna pakiet zostanie zweryfikowany i "
"dołączony do archiwum, sygnatura opiekuna jest usuwana, a sumy kontrolne "
"pakietu sÄ… wyliczane i umieszczane w pliku Packages. Sumy kontrolne "
"wszystkich plików Packages są następnie wyliczane i umieszczane w pliku "
"Release. Plik Release jest następnie podpisywany przy użyciu klucza archiwum "
-"tego wydania dystrybucji &keyring-distro; i dystrybuowany wraz z pakietami i plikami "
-"Packages przez serwery lustrzane &keyring-distro;. Klucze archiwum znajdujÄ… siÄ™ w "
-"składnicy kluczy &keyring-distro; dostępnej w pakiecie &keyring-package;."
+"tego wydania dystrybucji &keyring-distro; i dystrybuowany wraz z pakietami i "
+"plikami Packages przez serwery lustrzane &keyring-distro;. Klucze archiwum "
+"znajdują się w składnicy kluczy &keyring-distro; dostępnej w pakiecie "
+"&keyring-package;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:113
+#: apt-secure.8.xml:115
msgid ""
"End users can check the signature of the Release file, extract a checksum of "
"a package from it and compare it with the checksum of the package they "
@@ -2722,7 +2742,7 @@ msgstr ""
"pakietu. Mogą też polegać na tym, że APT zrobi to automatycznie."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:118
+#: apt-secure.8.xml:120
msgid ""
"Notice that this is distinct from checking signatures on a per package "
"basis. It is designed to prevent two possible attacks:"
@@ -2732,7 +2752,7 @@ msgstr ""
"dwoma możliwymi typami ataków:"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:123
+#: apt-secure.8.xml:125
msgid ""
"<literal>Network \"man in the middle\" attacks</literal>. Without signature "
"checking, malicious agents can introduce themselves into the package "
@@ -2749,7 +2769,7 @@ msgstr ""
"\"ARP (DNS) spoofing\")."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:131
+#: apt-secure.8.xml:133
msgid ""
"<literal>Mirror network compromise</literal>. Without signature checking, a "
"malicious agent can compromise a mirror host and modify the files in it to "
@@ -2763,7 +2783,7 @@ msgstr ""
"pobierajÄ…cym pakiety z tego serwera."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:138
+#: apt-secure.8.xml:140
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 "
@@ -2776,12 +2796,12 @@ msgstr ""
"dla sprawdzania sygnatur poszczególnych pakietów."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:144
+#: apt-secure.8.xml:146
msgid "User configuration"
msgstr "Konfiguracja użytkownika"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:146
+#: apt-secure.8.xml:148
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 "
@@ -2795,7 +2815,7 @@ msgstr ""
"Debiana."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:153
+#: apt-secure.8.xml:155
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 "
@@ -2811,19 +2831,19 @@ msgstr ""
"<filename>Release.gpg</filename> ze skonfigurowanych archiwów."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:162
+#: apt-secure.8.xml:164
msgid "Archive configuration"
msgstr "Konfiguracja archiwum"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:164
+#: apt-secure.8.xml:166
msgid ""
"If you want to provide archive signatures in an archive under your "
"maintenance you have to:"
msgstr "Aby dołączyć sygnatury do archiwum, którym się opiekujesz, należy:"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:169
+#: apt-secure.8.xml:171
msgid ""
"<emphasis>Create a toplevel Release file</emphasis>, if it does not exist "
"already. You can do this by running <command>apt-ftparchive release</"
@@ -2834,7 +2854,7 @@ msgstr ""
"release</command> (dostarczanego w pakiecie apt-utils)."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:174
+#: apt-secure.8.xml:176
msgid ""
"<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --"
"clearsign -o InRelease Release</command> and <command>gpg -abs -o Release."
@@ -2845,7 +2865,7 @@ msgstr ""
"o Release.gpg Release</command>."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:178
+#: apt-secure.8.xml:180
msgid ""
"<emphasis>Publish the key fingerprint</emphasis>, that way your users will "
"know what key they need to import in order to authenticate the files in the "
@@ -2856,7 +2876,7 @@ msgstr ""
"autoryzować plików w archiwum."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:185
+#: apt-secure.8.xml:187
msgid ""
"Whenever the contents of the archive change (new packages are added or "
"removed) the archive maintainer has to follow the first two steps outlined "
@@ -2866,7 +2886,7 @@ msgstr ""
"opiekun archiwum musi wykonać pierwsze dwa z wymienionych powyżej kroków."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:193
+#: apt-secure.8.xml:195
msgid ""
"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, "
"&debsign; &debsig-verify;, &gpg;"
@@ -2875,7 +2895,7 @@ msgstr ""
"&debsign; &debsig-verify;, &gpg;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:197
+#: apt-secure.8.xml:199
msgid ""
"For more background information you might want to review the <ulink url="
"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian "
@@ -2891,12 +2911,12 @@ msgstr ""
"Distribution HOWTO</ulink>\" napisanym przez V. Alexa Brennena."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:210
+#: apt-secure.8.xml:212
msgid "Manpage Authors"
msgstr "Autorzy strony podręcznika"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:212
+#: apt-secure.8.xml:214
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."
@@ -2907,13 +2927,13 @@ msgstr ""
#
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cdrom.8.xml:32
+#: apt-cdrom.8.xml:34
msgid "APT CD-ROM management utility"
msgstr "Narzędzie APT do zarządzania źródłami typu CD-ROM"
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:38
+#: apt-cdrom.8.xml:40
msgid ""
"<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of "
"available sources. <command>apt-cdrom</command> takes care of determining "
@@ -2927,7 +2947,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:45
+#: apt-cdrom.8.xml:47
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 disc in a multi-CD set "
@@ -2938,7 +2958,7 @@ msgstr ""
"w wielodyskowym archiwum musi być włożony i zeskanowany oddzielnie."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:56
+#: apt-cdrom.8.xml:58
msgid ""
"<literal>add</literal> is used to add a new disc to the source list. It will "
"unmount the CD-ROM device, prompt for a disc to be inserted and then proceed "
@@ -2954,7 +2974,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:64
+#: apt-cdrom.8.xml:66
msgid ""
"APT uses a CD-ROM ID to track which disc is currently in the drive and "
"maintains a database of these IDs in <filename>&statedir;/cdroms.list</"
@@ -2966,7 +2986,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:72
+#: apt-cdrom.8.xml:74
msgid ""
"A debugging tool to report the identity of the current disc as well as the "
"stored file name"
@@ -2976,7 +2996,25 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:85
+#: apt-cdrom.8.xml:87
+#, fuzzy
+#| msgid ""
+#| "Mount point; specify the location to mount the CD-ROM. This mount point "
+#| "must be listed in <filename>/etc/fstab</filename> and properly "
+#| "configured. Configuration Item: <literal>Acquire::cdrom::mount</literal>."
+msgid ""
+"Do not try to auto-detect the CD-ROM path. Usually combined with the "
+"<option>--cdrom</option> option. Configuration Item: <literal>Acquire::"
+"cdrom::AutoDetect</literal>."
+msgstr ""
+"Punkt montowania. Podaje lokalizację katalogu, w którym będzie zamontowany "
+"CD-ROM. Musi istnieć odpowiednia konfiguracja dla tego punktu montowania w "
+"pliku <filename>/etc/fstab</filename>. Pozycja w pliku konfiguracyjnym: "
+"<literal>Acquire::cdrom::mount</literal>."
+
+#
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-cdrom.8.xml:95
msgid ""
"Mount point; specify the location to mount the CD-ROM. This mount point must "
"be listed in <filename>/etc/fstab</filename> and properly configured. "
@@ -2989,7 +3027,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:94
+#: apt-cdrom.8.xml:104
msgid ""
"Rename a disc; change the label of a disc or override the disc's given "
"label. This option will cause <command>apt-cdrom</command> to prompt for a "
@@ -3002,7 +3040,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:103
+#: 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::"
@@ -3014,7 +3052,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:111
+#: 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 "
@@ -3029,7 +3067,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:121
+#: 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 "
@@ -3042,7 +3080,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:132
+#: 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: "
@@ -3054,13 +3092,13 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:145
+#: 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:150
+#: apt-cdrom.8.xml:160
msgid ""
"<command>apt-cdrom</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -3069,12 +3107,12 @@ msgstr ""
"- w przypadku błędu."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-config.8.xml:33
+#: apt-config.8.xml:35
msgid "APT Configuration Query program"
msgstr "Program odpytywania konfiguracji APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:39
+#: apt-config.8.xml:41
msgid ""
"<command>apt-config</command> is an internal program used by various "
"portions of the APT suite to provide consistent configurability. It accesses "
@@ -3087,7 +3125,7 @@ msgstr ""
"filename> w sposób łatwy do użycia w programach skryptowych."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:51
+#: apt-config.8.xml:53
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 "
@@ -3102,7 +3140,7 @@ msgstr ""
"Przykład użycia w skrypcie powłoki:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-config.8.xml:59
+#: apt-config.8.xml:61
#, no-wrap
msgid ""
"OPTS=\"-f\"\n"
@@ -3114,7 +3152,7 @@ msgstr ""
"eval $RES\n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:64
+#: apt-config.8.xml:66
msgid ""
"This will set the shell environment variable $OPTS to the value of MyApp::"
"options with a default of <option>-f</option>."
@@ -3123,7 +3161,7 @@ msgstr ""
"zmiennej MojaAplikacja::opcje, z domyślną wartością <option>-f</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:68
+#: apt-config.8.xml:70
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 "
@@ -3134,12 +3172,12 @@ msgstr ""
"jest ujednolicana i weryfikowana."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:77
+#: apt-config.8.xml:79
msgid "Just show the contents of the configuration space."
msgstr "Wyświetla zawartość przestrzeni konfiguracji."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:90
+#: apt-config.8.xml:92
msgid ""
"Include options which have an empty value. This is the default, so use --no-"
"empty to remove them from the output."
@@ -3148,12 +3186,12 @@ msgstr ""
"użyć <literal>--no-empty</literal>, aby usunąć takie opcje z wyjścia."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-config.8.xml:95
+#: apt-config.8.xml:97
msgid "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
msgstr "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:96
+#: apt-config.8.xml:98
msgid ""
"Defines the output of each config option. &percnt;t will be replaced with "
"its individual name, &percnt;f with its full hierarchical name and &percnt;v "
@@ -3172,14 +3210,14 @@ msgstr ""
"używając &percnt;&percnt;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:110 apt-extracttemplates.1.xml:71 apt-sortpkgs.1.xml:64
-#: apt-ftparchive.1.xml:608
+#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66
+#: apt-ftparchive.1.xml:610
msgid "&apt-conf;"
msgstr "&apt-conf;"
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:115
+#: apt-config.8.xml:117
msgid ""
"<command>apt-config</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -3188,27 +3226,27 @@ msgstr ""
"- w przypadku błędu."
#. type: Content of: <refentry><refentryinfo><author><contrib>
-#: apt.conf.5.xml:20
+#: apt.conf.5.xml:22
msgid "Initial documentation of Debug::*."
msgstr "Wstępna dokumentacja hierarchii Debug::*."
#. type: Content of: <refentry><refentryinfo><author><email>
-#: apt.conf.5.xml:21
+#: apt.conf.5.xml:23
msgid "dburrows@debian.org"
msgstr "dburrows@debian.org"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt.conf.5.xml:31 apt_preferences.5.xml:25 sources.list.5.xml:26
+#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28
msgid "5"
msgstr "5"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt.conf.5.xml:38
+#: apt.conf.5.xml:40
msgid "Configuration file for APT"
msgstr "Plik konfiguracyjny dla APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:42
+#: apt.conf.5.xml:44
msgid ""
"<filename>/etc/apt/apt.conf</filename> is the main configuration file shared "
"by all the tools in the APT suite of tools, though it is by no means the "
@@ -3222,7 +3260,7 @@ msgstr ""
"jednolite środowisko pracy."
#. type: Content of: <refentry><refsect1><orderedlist><para>
-#: apt.conf.5.xml:48
+#: apt.conf.5.xml:50
msgid ""
"When an APT tool starts up it will read the configuration files in the "
"following order:"
@@ -3231,7 +3269,7 @@ msgstr ""
"następującym porządku:"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:50
+#: apt.conf.5.xml:52
msgid ""
"the file specified by the <envar>APT_CONFIG</envar> environment variable (if "
"any)"
@@ -3240,7 +3278,7 @@ msgstr ""
"ustawiona)."
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:52
+#: apt.conf.5.xml:54
msgid ""
"all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
"order which have either no or \"<literal>conf</literal>\" as filename "
@@ -3260,14 +3298,14 @@ msgstr ""
"żadnych informacji."
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:59
+#: apt.conf.5.xml:61
msgid ""
"the main configuration file specified by <literal>Dir::Etc::main</literal>"
msgstr ""
"główny plik konfiguracyjny określony przez <literal>Dir::Etc::main</literal>."
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:61
+#: apt.conf.5.xml:63
msgid ""
"the command line options are applied to override the configuration "
"directives or to load even more configuration files."
@@ -3276,12 +3314,12 @@ msgstr ""
"załadowania kolejnych plików konfiguracyjnych."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:65
+#: apt.conf.5.xml:67
msgid "Syntax"
msgstr "Składnia"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:66
+#: apt.conf.5.xml:68
msgid ""
"The configuration file is organized in a tree with options organized into "
"functional groups. Option specification is given with a double colon "
@@ -3296,7 +3334,7 @@ msgstr ""
"dziedziczą ustawień od swoich przodków."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:72
+#: apt.conf.5.xml:74
msgid ""
"Syntactically the configuration language is modeled after what the ISC tools "
"such as bind and dhcp use. Lines starting with <literal>//</literal> are "
@@ -3311,7 +3349,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:85
+#: apt.conf.5.xml:87
#, no-wrap
msgid ""
"APT {\n"
@@ -3329,7 +3367,7 @@ msgstr ""
"};\n"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:93
+#: apt.conf.5.xml:95
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 "
@@ -3337,27 +3375,27 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:98
+#: apt.conf.5.xml:100
#, 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:101
+#: apt.conf.5.xml:103
msgid ""
"In general the sample configuration file &configureindex; is a good guide "
"for how it should look."
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:104
+#: apt.conf.5.xml:106
msgid ""
"Case is not significant in names of configuration items, 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:107
+#: apt.conf.5.xml:109
msgid ""
"Names for the configuration items are optional if a list is defined as can "
"be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If "
@@ -3367,7 +3405,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:112
+#: apt.conf.5.xml:114
msgid ""
"Two special commands are defined: <literal>#include</literal> (which is "
"deprecated and not supported by alternative implementations) and "
@@ -3379,7 +3417,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:122
+#: apt.conf.5.xml:124
msgid ""
"The <literal>#clear</literal> command is the only way to delete a list or a "
"complete scope. Reopening a scope (or using the syntax described below with "
@@ -3389,7 +3427,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:130
+#: apt.conf.5.xml:132
msgid ""
"All of the APT tools take an -o option which allows an arbitrary "
"configuration directive to be specified on the command line. The syntax is a "
@@ -3401,7 +3439,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:138
+#: apt.conf.5.xml:140
msgid ""
"Note that appending items to a list using <literal>::</literal> only works "
"for one item per line, and that you should not use it in combination with "
@@ -3418,19 +3456,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:153
+#: apt.conf.5.xml:155
msgid "The APT Group"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:154
+#: apt.conf.5.xml:156
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><listitem><para>
-#: apt.conf.5.xml:159
+#: apt.conf.5.xml:161
msgid ""
"System Architecture; sets the architecture to use when fetching files and "
"parsing package lists. The internal default is the architecture apt was "
@@ -3438,7 +3476,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:166
+#: apt.conf.5.xml:168
msgid ""
"All Architectures the system supports. For instance, CPUs implementing the "
"<literal>amd64</literal> (also called <literal>x86-64</literal>) "
@@ -3451,7 +3489,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:179
+#: apt.conf.5.xml:181
msgid ""
"Default release to install packages from if more than one version is "
"available. Contains release name, codename or release version. Examples: "
@@ -3460,14 +3498,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:185
+#: apt.conf.5.xml:187
msgid ""
"Ignore held packages; this global option causes the problem resolver to "
"ignore held packages in its decision making."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:190
+#: apt.conf.5.xml:192
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 "
@@ -3476,7 +3514,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:198
+#: apt.conf.5.xml:200
msgid ""
"Defaults to on, which will cause APT to install essential and important "
"packages as soon as possible in an install/upgrade operation, in order to "
@@ -3491,7 +3529,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:210
+#: apt.conf.5.xml:212
msgid ""
"The immediate configuration marker is also applied in the potentially "
"problematic case of circular dependencies, since a dependency with the "
@@ -3508,7 +3546,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:223
+#: apt.conf.5.xml:225
msgid ""
"Before a big operation like <literal>dist-upgrade</literal> is run with this "
"option disabled you should try to explicitly <literal>install</literal> the "
@@ -3519,7 +3557,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:234
+#: apt.conf.5.xml:236
msgid ""
"Never enable this option unless you <emphasis>really</emphasis> know what "
"you are doing. It permits APT to temporarily remove an essential package to "
@@ -3532,7 +3570,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:246
+#: apt.conf.5.xml:248
msgid ""
"APT uses since version 0.7.26 a resizable memory mapped cache file to store "
"the available information. <literal>Cache-Start</literal> acts as a hint of "
@@ -3552,38 +3590,38 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:262
+#: apt.conf.5.xml:264
msgid "Defines which packages are considered essential build dependencies."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:266
+#: apt.conf.5.xml:268
msgid ""
"The Get subsection controls the &apt-get; tool; please see its documentation "
"for more information about the options here."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:271
+#: apt.conf.5.xml:273
msgid ""
"The Cache subsection controls the &apt-cache; tool; please see its "
"documentation for more information about the options here."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:276
+#: apt.conf.5.xml:278
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:282
+#: apt.conf.5.xml:284
msgid "The Acquire Group"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:283
+#: apt.conf.5.xml:285
msgid ""
"The <literal>Acquire</literal> group of options controls the download of "
"packages as well as the various \"acquire methods\" responsible for the "
@@ -3591,7 +3629,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:290
+#: apt.conf.5.xml:292
msgid ""
"Security related option defaulting to true, as giving a Release file's "
"validation an expiration date prevents replay attacks over a long timescale, "
@@ -3604,7 +3642,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:303
+#: apt.conf.5.xml:305
msgid ""
"Maximum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3616,7 +3654,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:315
+#: apt.conf.5.xml:317
msgid ""
"Minimum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3628,7 +3666,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:327
+#: apt.conf.5.xml:329
msgid ""
"Try to download deltas called <literal>PDiffs</literal> for indexes (like "
"<filename>Packages</filename> files) instead of downloading whole ones. True "
@@ -3636,7 +3674,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:330
+#: apt.conf.5.xml:332
msgid ""
"Two sub-options to limit the use of PDiffs are also available: "
"<literal>FileLimit</literal> can be used to specify a maximum number of "
@@ -3647,7 +3685,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:340
+#: apt.conf.5.xml:342
msgid ""
"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
"literal> or <literal>access</literal> which determines how APT parallelizes "
@@ -3657,21 +3695,21 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:348
+#: apt.conf.5.xml:350
msgid ""
"Number of retries to perform. If this is non-zero APT will retry failed "
"files the given number of times."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:353
+#: apt.conf.5.xml:355
msgid ""
"Use symlinks for source archives. If set to true then source archives will "
"be symlinked when possible instead of copying. True is the default."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:358
+#: apt.conf.5.xml:360
msgid ""
"<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. "
"It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</"
@@ -3683,7 +3721,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:366
+#: apt.conf.5.xml:368
msgid ""
"Three settings are provided for cache control with HTTP/1.1 compliant proxy "
"caches. <literal>No-Cache</literal> tells the proxy not to use its cached "
@@ -3695,14 +3733,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:376 apt.conf.5.xml:448
+#: apt.conf.5.xml:378 apt.conf.5.xml:466
msgid ""
"The option <literal>timeout</literal> sets the timeout timer used by the "
"method; this value applies to the connection as well as the data timeout."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:379
+#: apt.conf.5.xml:381
msgid ""
"The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to "
"enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e."
@@ -3714,24 +3752,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:386
+#: apt.conf.5.xml:388
msgid ""
"<literal>Acquire::http::AllowRedirect</literal> controls whether APT will "
"follow redirects, which is enabled by default."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:389
+#: apt.conf.5.xml:391
msgid ""
"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
-"literal> which accepts integer values in kilobytes. The default value is 0 "
-"which deactivates the limit and tries to use all available bandwidth (note "
-"that this option implicitly disables downloading from multiple servers at "
-"the same time.)"
+"literal> which accepts integer values in kilobytes per second. The default "
+"value is 0 which deactivates the limit and tries to use all available "
+"bandwidth. Note that this option implicitly disables downloading from "
+"multiple servers at the same time."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:394
+#: apt.conf.5.xml:398
msgid ""
"<literal>Acquire::http::User-Agent</literal> can be used to set a different "
"User-Agent for the http download method as some proxies allow access for "
@@ -3741,6 +3779,20 @@ msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
#: apt.conf.5.xml:402
msgid ""
+"<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify "
+"an external command to discover the http proxy to use. Apt expects the "
+"command to output the proxy on stdout in the style <literal>http://proxy:"
+"port/</literal>. This will override the generic <literal>Acquire::http::"
+"Proxy</literal> but not any specific host proxy configuration set via "
+"<literal>Acquire::http::Proxy::$HOST</literal>. See the &squid-deb-proxy-"
+"client; package for an example implementation that uses avahi. This option "
+"takes precedence over the legacy option name <literal>ProxyAutoDetect</"
+"literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:420
+msgid ""
"The <literal>Cache-control</literal>, <literal>Timeout</literal>, "
"<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and "
"<literal>proxy</literal> options work for HTTPS URIs in the same way as for "
@@ -3750,7 +3802,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:410
+#: apt.conf.5.xml:428
msgid ""
"<literal>CaInfo</literal> suboption specifies place of file that holds info "
"about trusted certificates. <literal>&lt;host&gt;::CaInfo</literal> is the "
@@ -3772,7 +3824,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:431
+#: apt.conf.5.xml:449
msgid ""
"<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. "
"It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</"
@@ -3791,7 +3843,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:451
+#: apt.conf.5.xml:469
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, "
@@ -3801,7 +3853,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:458
+#: apt.conf.5.xml:476
msgid ""
"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
"envar> environment variable to an HTTP URL - see the discussion of the http "
@@ -3810,7 +3862,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:463
+#: apt.conf.5.xml:481
msgid ""
"The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@ -3820,13 +3872,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:477
+#: apt.conf.5.xml:495
#, no-wrap
msgid "/cdrom/::Mount \"foo\";"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:472
+#: apt.conf.5.xml:490
msgid ""
"For URIs using the <literal>cdrom</literal> method, the only configurable "
"option is the mount point, <literal>cdrom::Mount</literal>, which must be "
@@ -3839,20 +3891,20 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:485
+#: apt.conf.5.xml:503
msgid ""
"For GPGV URIs the only configurable option is <literal>gpgv::Options</"
"literal>, which passes additional parameters to gpgv."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:496
+#: apt.conf.5.xml:514
#, no-wrap
msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:491
+#: apt.conf.5.xml:509
msgid ""
"List of compression types which are understood by the acquire methods. "
"Files like <filename>Packages</filename> can be available in various "
@@ -3864,19 +3916,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:501
+#: apt.conf.5.xml:519
#, no-wrap
msgid "Acquire::CompressionTypes::Order:: \"gz\";"
msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:504
+#: apt.conf.5.xml:522
#, no-wrap
msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:497
+#: apt.conf.5.xml:515
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 "
@@ -3894,13 +3946,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:511
+#: apt.conf.5.xml:529
#, no-wrap
msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:506
+#: apt.conf.5.xml:524
msgid ""
"Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></"
"literal> will be checked at run time. If this option has been set, the "
@@ -3915,7 +3967,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:516
+#: apt.conf.5.xml:534
msgid ""
"The special type <literal>uncompressed</literal> can be used to give "
"uncompressed files a preference, but note that most archives don't provide "
@@ -3923,7 +3975,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:523
+#: apt.conf.5.xml:541
msgid ""
"When downloading <literal>gzip</literal> compressed indexes (Packages, "
"Sources, or Translations), keep them gzip compressed locally instead of "
@@ -3932,7 +3984,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:531
+#: apt.conf.5.xml:549
msgid ""
"The Languages subsection controls which <filename>Translation</filename> "
"files are downloaded and in which order APT tries to display the description-"
@@ -3944,13 +3996,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting>
-#: apt.conf.5.xml:548
+#: apt.conf.5.xml:566
#, no-wrap
msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:536
+#: apt.conf.5.xml:554
msgid ""
"The default list includes \"environment\" and \"en\". "
"\"<literal>environment</literal>\" has a special meaning here: it will be "
@@ -3972,7 +4024,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:549
+#: apt.conf.5.xml:567
msgid ""
"Note: To prevent problems resulting from APT being executed in different "
"environments (e.g. by different users or by other programs) all Translation "
@@ -3981,22 +4033,22 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:558
+#: apt.conf.5.xml:576
msgid "When downloading, force to use only the IPv4 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:564
+#: apt.conf.5.xml:582
msgid "When downloading, force to use only the IPv6 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:571
+#: apt.conf.5.xml:589
msgid "Directories"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:573
+#: apt.conf.5.xml:591
msgid ""
"The <literal>Dir::State</literal> section has directories that pertain to "
"local state information. <literal>lists</literal> is the directory to place "
@@ -4008,7 +4060,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:580
+#: apt.conf.5.xml:598
msgid ""
"<literal>Dir::Cache</literal> contains locations pertaining to local cache "
"information, such as the two package caches <literal>srcpkgcache</literal> "
@@ -4021,7 +4073,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:589
+#: apt.conf.5.xml:607
msgid ""
"<literal>Dir::Etc</literal> contains the location of configuration files, "
"<literal>sourcelist</literal> gives the location of the sourcelist and "
@@ -4031,7 +4083,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:595
+#: apt.conf.5.xml:613
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 "
@@ -4039,7 +4091,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:599
+#: apt.conf.5.xml:617
msgid ""
"Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
"Bin::Methods</literal> specifies the location of the method handlers and "
@@ -4050,7 +4102,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:607
+#: apt.conf.5.xml:625
msgid ""
"The configuration item <literal>RootDir</literal> has a special meaning. If "
"set, all paths in <literal>Dir::</literal> will be relative to "
@@ -4063,7 +4115,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:620
+#: apt.conf.5.xml:638
msgid ""
"The <literal>Ignore-Files-Silently</literal> list can be used to specify "
"which files APT should silently ignore while parsing the files in the "
@@ -4074,12 +4126,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:629
+#: apt.conf.5.xml:647
msgid "APT in DSelect"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:631
+#: apt.conf.5.xml:649
msgid ""
"When APT is used as a &dselect; method several configuration directives "
"control the default behavior. These are in the <literal>DSelect</literal> "
@@ -4087,7 +4139,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:636
+#: apt.conf.5.xml:654
msgid ""
"Cache Clean mode; this value may be one of <literal>always</literal>, "
"<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</"
@@ -4100,40 +4152,40 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:650
+#: apt.conf.5.xml:668
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the install phase."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:655
+#: apt.conf.5.xml:673
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the update phase."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:660
+#: apt.conf.5.xml:678
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:666
+#: apt.conf.5.xml:684
msgid "How APT calls &dpkg;"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:667
+#: apt.conf.5.xml:685
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:672
+#: apt.conf.5.xml:690
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 "
@@ -4141,7 +4193,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:678
+#: apt.conf.5.xml:696
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 "
@@ -4150,46 +4202,68 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:685
+#: apt.conf.5.xml:703
msgid ""
"This is a list of shell commands to run before invoking &dpkg;. Like "
"<literal>options</literal> this must be specified in list notation. The "
"commands are invoked in order using <filename>/bin/sh</filename>; should any "
"fail APT will abort. APT will pass the filenames of all .deb files it is "
-"going to install to the commands, one per line on standard input."
+"going to install to the commands, one per line on the requested file "
+"descriptor, defaulting to standard input."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:691
+#: apt.conf.5.xml:710
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 3 adds the architecture and <literal>MultiArch</"
+"literal> flag to each version being dumped."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:699
+#: apt.conf.5.xml:715
+msgid ""
+"The version of the protocol to be used for the command "
+"<literal><replaceable>cmd</replaceable></literal> can be chosen by setting "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::Version</"
+"literal> accordingly, the default being version 1. If APT isn't supporting "
+"the requested version it will send the information in the highest version it "
+"has support for instead."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:722
+msgid ""
+"The file descriptor to be used to send the information can be requested with "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</"
+"literal> which defaults to <literal>0</literal> for standard input and is "
+"available since version 0.9.11. Support for the option can be detected by "
+"looking for the environment variable <envar>APT_HOOK_INFO_FD</envar> which "
+"contains the number of the used file descriptor as a confirmation."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:732
msgid ""
"APT chdirs to this directory before invoking &dpkg;, the default is "
"<filename>/</filename>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:704
+#: apt.conf.5.xml:737
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:709
+#: apt.conf.5.xml:742
msgid "dpkg trigger usage (and related options)"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:710
+#: apt.conf.5.xml:743
msgid ""
"APT can call &dpkg; in such a way as to let it make aggressive use of "
"triggers over multiple calls of &dpkg;. Without further options &dpkg; will "
@@ -4204,7 +4278,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
-#: apt.conf.5.xml:725
+#: apt.conf.5.xml:758
#, no-wrap
msgid ""
"DPkg::NoTriggers \"true\";\n"
@@ -4218,7 +4292,7 @@ msgstr ""
"DPkg::TriggersPending \"true\";"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:719
+#: apt.conf.5.xml:752
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 "
@@ -4232,7 +4306,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:732
+#: apt.conf.5.xml:765
msgid ""
"Add the no triggers flag to all &dpkg; calls (except the ConfigurePending "
"call). See &dpkg; if you are interested in what this actually means. In "
@@ -4245,7 +4319,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:740
+#: apt.conf.5.xml:773
msgid ""
"Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
"and \"<literal>no</literal>\". The default value is \"<literal>all</literal>"
@@ -4262,7 +4336,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:755
+#: apt.conf.5.xml:788
msgid ""
"If this option is set APT will call <command>dpkg --configure --pending</"
"command> to let &dpkg; handle all required configurations and triggers. This "
@@ -4273,7 +4347,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:762
+#: apt.conf.5.xml:795
msgid ""
"Useful for the <literal>smart</literal> configuration as a package which has "
"pending triggers is not considered as <literal>installed</literal>, and "
@@ -4283,7 +4357,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:775
+#: apt.conf.5.xml:808
#, no-wrap
msgid ""
"OrderList::Score {\n"
@@ -4301,7 +4375,7 @@ msgstr ""
"};"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:768
+#: apt.conf.5.xml:801
msgid ""
"Essential packages (and their dependencies) should be configured immediately "
"after unpacking. It is a good idea to do this quite early in the upgrade "
@@ -4315,12 +4389,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:788
+#: apt.conf.5.xml:821
msgid "Periodic and Archives options"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:789
+#: apt.conf.5.xml:822
msgid ""
"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
"of options configure behavior of apt periodic updates, which is done by the "
@@ -4329,13 +4403,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:797
+#: apt.conf.5.xml:830
#, fuzzy
msgid "Debug options"
msgstr "opcje"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:799
+#: apt.conf.5.xml:832
msgid ""
"Enabling options in the <literal>Debug::</literal> section will cause "
"debugging information to be sent to the standard error stream of the program "
@@ -4346,7 +4420,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:810
+#: apt.conf.5.xml:843
msgid ""
"<literal>Debug::pkgProblemResolver</literal> enables output about the "
"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@ -4354,7 +4428,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:818
+#: apt.conf.5.xml:851
msgid ""
"<literal>Debug::NoLocking</literal> disables all file locking. This can be "
"used to run some operations (for instance, <literal>apt-get -s install</"
@@ -4362,7 +4436,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:827
+#: apt.conf.5.xml:860
msgid ""
"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
"time that <literal>apt</literal> invokes &dpkg;."
@@ -4372,7 +4446,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:835
+#: apt.conf.5.xml:868
#, fuzzy
msgid ""
"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
@@ -4382,59 +4456,59 @@ msgstr ""
"in CDROM IDs."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:845
+#: apt.conf.5.xml:878
msgid "A full list of debugging options to apt follows."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:854
+#: apt.conf.5.xml:887
msgid ""
"Print information related to accessing <literal>cdrom://</literal> sources."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:865
+#: apt.conf.5.xml:898
msgid "Print information related to downloading packages using FTP."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:876
+#: apt.conf.5.xml:909
msgid "Print information related to downloading packages using HTTP."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:887
+#: apt.conf.5.xml:920
msgid "Print information related to downloading packages using HTTPS."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:898
+#: apt.conf.5.xml:931
msgid ""
"Print information related to verifying cryptographic signatures using "
"<literal>gpg</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:909
+#: apt.conf.5.xml:942
msgid ""
"Output information about the process of accessing collections of packages "
"stored on CD-ROMs."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:919
+#: apt.conf.5.xml:952
msgid "Describes the process of resolving build-dependencies in &apt-get;."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:929
+#: apt.conf.5.xml:962
msgid ""
"Output each cryptographic hash that is generated by the <literal>apt</"
"literal> libraries."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:939
+#: apt.conf.5.xml:972
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 "
@@ -4442,53 +4516,53 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:950
+#: apt.conf.5.xml:983
msgid ""
"Disable all file locking. For instance, this will allow two instances of "
"<quote><literal>apt-get update</literal></quote> to run at the same time."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:962
+#: apt.conf.5.xml:995
msgid "Log when items are added to or removed from the global download queue."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:972
+#: apt.conf.5.xml:1005
msgid ""
"Output status messages and errors related to verifying checksums and "
"cryptographic signatures of downloaded files."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:982
+#: apt.conf.5.xml:1015
msgid ""
"Output information about downloading and applying package index list diffs, "
"and errors relating to package index list diffs."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:994
+#: apt.conf.5.xml:1027
msgid ""
"Output information related to patching apt package lists when downloading "
"index diffs instead of full indices."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1005
+#: apt.conf.5.xml:1038
msgid ""
"Log all interactions with the sub-processes that actually perform downloads."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1016
+#: apt.conf.5.xml:1049
msgid ""
"Log events related to the automatically-installed status of packages and to "
"the removal of unused packages."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1026
+#: apt.conf.5.xml:1059
msgid ""
"Generate debug messages describing which packages are being automatically "
"installed to resolve dependencies. This corresponds to the initial auto-"
@@ -4498,7 +4572,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1040
+#: apt.conf.5.xml:1073
msgid ""
"Generate debug messages describing which packages are marked as keep/install/"
"remove while the ProblemResolver does his work. Each addition or deletion "
@@ -4516,46 +4590,46 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1061
+#: apt.conf.5.xml:1094
msgid ""
"When invoking &dpkg;, output the precise command line with which it is being "
"invoked, with arguments separated by a single space character."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1072
+#: apt.conf.5.xml:1105
msgid ""
"Output all the data received from &dpkg; on the status file descriptor and "
"any errors encountered while parsing it."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1083
+#: apt.conf.5.xml:1116
msgid ""
"Generate a trace of the algorithm that decides the order in which "
"<literal>apt</literal> should pass packages to &dpkg;."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1095
+#: apt.conf.5.xml:1128
msgid ""
"Output status messages tracing the steps performed when invoking &dpkg;."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1106
+#: apt.conf.5.xml:1139
msgid "Output the priority of each package list on startup."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1116
+#: apt.conf.5.xml:1149
msgid ""
"Trace the execution of the dependency resolver (this applies only to what "
"happens when a complex dependency problem is encountered)."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1127
+#: apt.conf.5.xml:1160
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 "
@@ -4563,20 +4637,20 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1139
+#: apt.conf.5.xml:1172
msgid ""
"Print information about the vendors read from <filename>/etc/apt/vendors."
"list</filename>."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:1161 apt_preferences.5.xml:545 sources.list.5.xml:211
-#: apt-ftparchive.1.xml:596
+#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:217
+#: apt-ftparchive.1.xml:598
msgid "Examples"
msgstr "Przykłady"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1162
+#: apt.conf.5.xml:1195
msgid ""
"&configureindex; is a configuration file showing example values for all "
"possible options."
@@ -4584,17 +4658,17 @@ msgstr ""
#. ? reading apt.conf
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1174
+#: apt.conf.5.xml:1207
msgid "&apt-cache;, &apt-config;, &apt-preferences;."
msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt_preferences.5.xml:32
+#: apt_preferences.5.xml:34
msgid "Preference control file for APT"
msgstr "Plik kontrolny preferencji APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:37
+#: apt_preferences.5.xml:39
msgid ""
"The APT preferences file <filename>/etc/apt/preferences</filename> and the "
"fragment files in the <filename>/etc/apt/preferences.d/</filename> folder "
@@ -4606,7 +4680,7 @@ msgstr ""
"do określania wersji pakietów wybieranych do instalacji."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:42
+#: apt_preferences.5.xml:44
msgid ""
"Several versions of a package may be available for installation when the "
"&sources-list; file contains references to more than one distribution (for "
@@ -4628,7 +4702,7 @@ msgstr ""
"zainstalowania."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:52
+#: apt_preferences.5.xml:54
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 "
@@ -4643,7 +4717,7 @@ msgstr ""
"wybór instancji, ale na wybór wersji."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:59
+#: apt_preferences.5.xml:61
msgid ""
"Preferences are a strong power in the hands of a system administrator but "
"they can become also their biggest nightmare if used without care! APT will "
@@ -4668,7 +4742,7 @@ msgstr ""
"oczekiwało. Ostrzegamy!"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:70
+#: apt_preferences.5.xml:72
msgid ""
"Note that the files in the <filename>/etc/apt/preferences.d</filename> "
"directory are parsed in alphanumeric ascending order and need to obey the "
@@ -4691,24 +4765,24 @@ msgstr ""
"komunikat."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:79
+#: apt_preferences.5.xml:81
msgid "APT's Default Priority Assignments"
msgstr "Domyślne przypisania priorytetów APT"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:94
+#: apt_preferences.5.xml:96
#, no-wrap
msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n"
msgstr "<command>apt-get install -t testing <replaceable>jakiÅ›-pakiet</replaceable></command>\n"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:97
+#: apt_preferences.5.xml:99
#, 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:81
+#: apt_preferences.5.xml:83
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 "
@@ -4736,7 +4810,7 @@ msgstr ""
"\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:101
+#: apt_preferences.5.xml:103
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:"
@@ -4745,12 +4819,12 @@ msgstr ""
"do ustawiania priorytetów wersjom pakietu. Przypisuje:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:106
+#: apt_preferences.5.xml:108
msgid "priority 1"
msgstr "priorytet 1"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:107
+#: apt_preferences.5.xml:109
msgid ""
"to the versions coming from archives which in their <filename>Release</"
"filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</"
@@ -4763,12 +4837,12 @@ msgstr ""
"<literal>experimental</literal> Debiana."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:113
+#: apt_preferences.5.xml:115
msgid "priority 100"
msgstr "priorytet 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:114
+#: apt_preferences.5.xml:116
msgid ""
"to the version that is already installed (if any) and to the versions coming "
"from archives which in their <filename>Release</filename> files are marked "
@@ -4782,30 +4856,30 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:121
+#: apt_preferences.5.xml:123
msgid "priority 500"
msgstr "priorytet 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:122
+#: apt_preferences.5.xml:124
msgid ""
"to the versions that are not installed and do not belong to the target "
"release."
msgstr "wersjom niezainstalowanym i nienależącym do wydania docelowego."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:126
+#: apt_preferences.5.xml:128
msgid "priority 990"
msgstr "priorytet 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:127
+#: apt_preferences.5.xml:129
msgid ""
"to the versions that are not installed and belong to the target release."
msgstr "wersjom niezainstalowanym i należącym do wydania docelowego."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:132
+#: apt_preferences.5.xml:134
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 "
@@ -4822,7 +4896,7 @@ msgstr ""
"100, jeśli dodatkowo są oznaczone jako \"ButAutomaticUpgrades: yes\"."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:139
+#: apt_preferences.5.xml:141
msgid ""
"APT then applies the following rules, listed in order of precedence, to "
"determine which version of a package to install."
@@ -4831,7 +4905,7 @@ msgstr ""
"następujące reguły wymienione w kolejności, w jakiej są stosowane."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:142
+#: apt_preferences.5.xml:144
msgid ""
"Never downgrade unless the priority of an available version exceeds 1000. "
"(\"Downgrading\" is installing a less recent version of a package in place "
@@ -4846,12 +4920,12 @@ msgstr ""
"Instalowanie wcześniejszych wersji pakietów może być ryzykowną operacją)."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:148
+#: apt_preferences.5.xml:150
msgid "Install the highest priority version."
msgstr "Instaluje wersję o najwyższym priorytecie."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:149
+#: apt_preferences.5.xml:151
msgid ""
"If two or more versions have the same priority, install the most recent one "
"(that is, the one with the higher version number)."
@@ -4860,7 +4934,7 @@ msgstr ""
"wersja nowsza (czyli z większym numerem wersji)."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:152
+#: apt_preferences.5.xml:154
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</"
@@ -4872,7 +4946,7 @@ msgstr ""
"niezainstalowany."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:158
+#: apt_preferences.5.xml:160
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 "
@@ -4887,7 +4961,7 @@ msgstr ""
"upgrade</command> zaktualizujÄ… ten pakiet."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:165
+#: apt_preferences.5.xml:167
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 "
@@ -4901,7 +4975,7 @@ msgstr ""
"wersjÄ…."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:170
+#: apt_preferences.5.xml:172
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 "
@@ -4919,12 +4993,12 @@ msgstr ""
"wersji ma większy priorytet niż wersja zainstalowana."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:179
+#: apt_preferences.5.xml:181
msgid "The Effect of APT Preferences"
msgstr "Efekt stosowania preferencji APT"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:181
+#: apt_preferences.5.xml:183
msgid ""
"The APT preferences file allows the system administrator to control the "
"assignment of priorities. The file consists of one or more multi-line "
@@ -4937,7 +5011,7 @@ msgstr ""
"przyjmować jedną z dwóch postaci: szczegółową i ogólną."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:187
+#: apt_preferences.5.xml:189
msgid ""
"The specific form assigns a priority (a \"Pin-Priority\") to one or more "
"specified packages with a specified version or version range. For example, "
@@ -4954,7 +5028,7 @@ msgstr ""
"rozdzielajÄ…c je od siebie spacjami."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:194
+#: apt_preferences.5.xml:196
#, no-wrap
msgid ""
"Package: perl\n"
@@ -4966,7 +5040,7 @@ msgstr ""
"Pin-Priority: 1001\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:200
+#: apt_preferences.5.xml:202
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 "
@@ -4980,7 +5054,7 @@ msgstr ""
"strony internetowej identyfikowanej przez pełną nazwę domenową strony."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:206
+#: apt_preferences.5.xml:208
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 "
@@ -4991,7 +5065,7 @@ msgstr ""
"wszystkim wersjom pakietów dostępnych na lokalnym komputerze."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:211
+#: apt_preferences.5.xml:213
#, no-wrap
msgid ""
"Package: *\n"
@@ -5003,7 +5077,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:216
+#: apt_preferences.5.xml:218
msgid ""
"A note of caution: the keyword used here is \"<literal>origin</literal>\" "
"which can be used to match a hostname. The following record will assign a "
@@ -5016,7 +5090,7 @@ msgstr ""
"identyfikowanym przez nazwÄ™ komputera \"ftp.de.debian.org\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:220
+#: apt_preferences.5.xml:222
#, no-wrap
msgid ""
"Package: *\n"
@@ -5028,7 +5102,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:224
+#: apt_preferences.5.xml:226
msgid ""
"This should <emphasis>not</emphasis> be confused with the Origin of a "
"distribution as specified in a <filename>Release</filename> file. What "
@@ -5043,7 +5117,7 @@ msgstr ""
"lub \"Ximian\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:229
+#: apt_preferences.5.xml:231
msgid ""
"The following record assigns a low priority to all package versions "
"belonging to any distribution whose Archive name is \"<literal>unstable</"
@@ -5054,7 +5128,7 @@ msgstr ""
"\"<literal>unstable</literal>\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:233
+#: apt_preferences.5.xml:235
#, no-wrap
msgid ""
"Package: *\n"
@@ -5066,7 +5140,7 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:238
+#: apt_preferences.5.xml:240
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any distribution whose Codename is \"<literal>&testing-codename;"
@@ -5077,7 +5151,7 @@ msgstr ""
"\"<literal>&testing-codename;</literal>\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:242
+#: apt_preferences.5.xml:244
#, no-wrap
msgid ""
"Package: *\n"
@@ -5089,7 +5163,7 @@ msgstr ""
"Pin-Priority: 900\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:247
+#: apt_preferences.5.xml:249
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any release whose Archive name is \"<literal>stable</literal>\" "
@@ -5102,7 +5176,7 @@ msgstr ""
"\"<literal>&stable-version;</literal>\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:252
+#: apt_preferences.5.xml:254
#, no-wrap
msgid ""
"Package: *\n"
@@ -5114,12 +5188,12 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:262
+#: apt_preferences.5.xml:264
msgid "Regular expressions and &glob; syntax"
msgstr "Składnia wyrażeń regularnych i &glob;"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:264
+#: apt_preferences.5.xml:266
msgid ""
"APT also supports pinning by &glob; expressions, and regular expressions "
"surrounded by slashes. For example, the following example assigns the "
@@ -5135,7 +5209,7 @@ msgstr ""
"POSIX otoczone ukośnikami)."
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:273
+#: apt_preferences.5.xml:275
#, no-wrap
msgid ""
"Package: gnome* /kde/\n"
@@ -5147,7 +5221,7 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:279
+#: apt_preferences.5.xml:281
msgid ""
"The rule for those expressions is that they can occur anywhere where a "
"string can occur. Thus, the following pin assigns the priority 990 to all "
@@ -5158,7 +5232,7 @@ msgstr ""
"pakietom z wydania o nazwie zaczynajÄ…cej siÄ™ od &ubuntu-codename;."
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:285
+#: apt_preferences.5.xml:287
#, no-wrap
msgid ""
"Package: *\n"
@@ -5170,7 +5244,7 @@ msgstr ""
"Pin-Priority: 990\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:291
+#: apt_preferences.5.xml:293
msgid ""
"If a regular expression occurs in a <literal>Package</literal> field, the "
"behavior is the same as if this regular expression were replaced with a list "
@@ -5189,12 +5263,12 @@ msgstr ""
"<literal>Package</literal> nie jest uznawany za wyrażenie &glob;."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:307
+#: apt_preferences.5.xml:309
msgid "How APT Interprets Priorities"
msgstr "Jak APT interpretuje priorytety"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:310
+#: apt_preferences.5.xml:312
msgid ""
"Priorities (P) assigned in the APT preferences file must be positive or "
"negative integers. They are interpreted as follows (roughly speaking):"
@@ -5204,12 +5278,12 @@ msgstr ""
"rzecz biorÄ…c):"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:315
+#: apt_preferences.5.xml:317
msgid "P &gt;= 1000"
msgstr "P &gt;= 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:316
+#: apt_preferences.5.xml:318
msgid ""
"causes a version to be installed even if this constitutes a downgrade of the "
"package"
@@ -5218,12 +5292,12 @@ msgstr ""
"zastąpienie pakietu jego wcześniejszą wersją."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:320
+#: apt_preferences.5.xml:322
msgid "990 &lt;= P &lt; 1000"
msgstr "990 &lt;= P &lt; 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:321
+#: apt_preferences.5.xml:323
msgid ""
"causes a version to be installed even if it does not come from the target "
"release, unless the installed version is more recent"
@@ -5232,12 +5306,12 @@ msgstr ""
"wydania docelowego, chyba że zainstalowana wersja jest nowsza."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:326
+#: apt_preferences.5.xml:328
msgid "500 &lt;= P &lt; 990"
msgstr "500 &lt;= P &lt; 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:327
+#: apt_preferences.5.xml:329
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"
@@ -5247,12 +5321,12 @@ msgstr ""
"zainstalowana."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:332
+#: apt_preferences.5.xml:334
msgid "100 &lt;= P &lt; 500"
msgstr "100 &lt;= P &lt; 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:333
+#: apt_preferences.5.xml:335
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"
@@ -5261,12 +5335,12 @@ msgstr ""
"należąca do innej dystrybucji lub nowsza wersja jest zainstalowana"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:338
+#: apt_preferences.5.xml:340
msgid "0 &lt; P &lt; 100"
msgstr "0 &lt; P &lt; 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:339
+#: apt_preferences.5.xml:341
msgid ""
"causes a version to be installed only if there is no installed version of "
"the package"
@@ -5275,17 +5349,17 @@ msgstr ""
"pakietu nie jest jeszcze zainstalowana"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:343
+#: apt_preferences.5.xml:345
msgid "P &lt; 0"
msgstr "P &lt; 0"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:344
+#: apt_preferences.5.xml:346
msgid "prevents the version from being installed"
msgstr "zapobiega instalowaniu wersji"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:349
+#: apt_preferences.5.xml:351
msgid ""
"If any specific-form records match an available package version then the "
"first such record determines the priority of the package version. Failing "
@@ -5299,7 +5373,7 @@ msgstr ""
"określany na podstawie pierwszego z takich rekordów."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:355
+#: apt_preferences.5.xml:357
msgid ""
"For example, suppose the APT preferences file contains the three records "
"presented earlier:"
@@ -5308,7 +5382,7 @@ msgstr ""
"wcześniej rekordy:"
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:359
+#: apt_preferences.5.xml:361
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5336,12 +5410,12 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:372
+#: apt_preferences.5.xml:374
msgid "Then:"
msgstr "Wtedy:"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:374
+#: apt_preferences.5.xml:376
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 "
@@ -5357,7 +5431,7 @@ msgstr ""
"&good-perl;*."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:379
+#: apt_preferences.5.xml:381
msgid ""
"A version of any package other than <literal>perl</literal> that is "
"available from the local system has priority over other versions, even "
@@ -5368,7 +5442,7 @@ msgstr ""
"pakietu, włączając w to wersję należącą do wydania docelowego."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:383
+#: apt_preferences.5.xml:385
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</"
@@ -5382,12 +5456,12 @@ msgstr ""
"nie jest jeszcze zainstalowana."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:393
+#: apt_preferences.5.xml:395
msgid "Determination of Package Version and Distribution Properties"
msgstr "Określanie wersji pakietu i właściwości dystrybucji"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:395
+#: apt_preferences.5.xml:397
msgid ""
"The locations listed in the &sources-list; file should provide "
"<filename>Packages</filename> and <filename>Release</filename> files to "
@@ -5398,7 +5472,7 @@ msgstr ""
"pakiety dostępne w danej lokalizacji."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:399
+#: apt_preferences.5.xml:401
msgid ""
"The <filename>Packages</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable>/"
@@ -5417,27 +5491,27 @@ msgstr ""
"priorytetów APT bierze pod uwagę tylko dwie linie z każdego rekordu:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:407
+#: apt_preferences.5.xml:409
msgid "the <literal>Package:</literal> line"
msgstr "linia <literal>Package:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:408
+#: apt_preferences.5.xml:410
msgid "gives the package name"
msgstr "podaje nazwÄ™ pakietu"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:411 apt_preferences.5.xml:461
+#: apt_preferences.5.xml:413 apt_preferences.5.xml:463
msgid "the <literal>Version:</literal> line"
msgstr "linia <literal>Version:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:412
+#: apt_preferences.5.xml:414
msgid "gives the version number for the named package"
msgstr "podaje numer wersji danego pakietu"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:417
+#: apt_preferences.5.xml:419
msgid ""
"The <filename>Release</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
@@ -5460,12 +5534,12 @@ msgstr ""
"priorytetów APT:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:428
+#: apt_preferences.5.xml:430
msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
msgstr "linia <literal>Archive:</literal> lub <literal>Suite:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:429
+#: apt_preferences.5.xml:431
msgid ""
"names the archive to which all the packages in the directory tree belong. "
"For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@ -5482,18 +5556,18 @@ msgstr ""
"następujący sposób:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:439
+#: apt_preferences.5.xml:441
#, 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:445
+#: apt_preferences.5.xml:447
msgid "the <literal>Codename:</literal> line"
msgstr "linia <literal>Codename:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:446
+#: apt_preferences.5.xml:448
msgid ""
"names the codename to which all the packages in the directory tree belong. "
"For example, the line \"Codename: &testing-codename;\" specifies that all of "
@@ -5510,13 +5584,13 @@ msgstr ""
"następujący sposób:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:455
+#: apt_preferences.5.xml:457
#, no-wrap
msgid "Pin: release n=&testing-codename;\n"
msgstr "Pin: release n=&testing-codename;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:462
+#: apt_preferences.5.xml:464
msgid ""
"names the release version. For example, the packages in the tree might "
"belong to Debian release version &stable-version;. Note that there is "
@@ -5533,7 +5607,7 @@ msgstr ""
"sposób:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:471
+#: apt_preferences.5.xml:473
#, no-wrap
msgid ""
"Pin: release v=&stable-version;\n"
@@ -5545,12 +5619,12 @@ msgstr ""
"Pin: release &stable-version;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:480
+#: apt_preferences.5.xml:482
msgid "the <literal>Component:</literal> line"
msgstr "linia <literal>Component:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:481
+#: apt_preferences.5.xml:483
msgid ""
"names the licensing component associated with the packages in the directory "
"tree of the <filename>Release</filename> file. For example, the line "
@@ -5568,18 +5642,18 @@ msgstr ""
"następujący sposób:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:490
+#: apt_preferences.5.xml:492
#, 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:496
+#: apt_preferences.5.xml:498
msgid "the <literal>Origin:</literal> line"
msgstr "linia <literal>Origin:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:497
+#: apt_preferences.5.xml:499
msgid ""
"names the originator of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -5591,18 +5665,18 @@ msgstr ""
"można podać w pliku preferencji APT w następujący sposób:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:503
+#: apt_preferences.5.xml:505
#, 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:509
+#: apt_preferences.5.xml:511
msgid "the <literal>Label:</literal> line"
msgstr "linia <literal>Label:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:510
+#: apt_preferences.5.xml:512
msgid ""
"names the label of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -5614,13 +5688,13 @@ msgstr ""
"podać w pliku preferencji APT w następujący sposób:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:516
+#: apt_preferences.5.xml:518
#, 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:523
+#: apt_preferences.5.xml:525
msgid ""
"All of the <filename>Packages</filename> and <filename>Release</filename> "
"files retrieved from locations listed in the &sources-list; file are stored "
@@ -5645,12 +5719,12 @@ msgstr ""
"dystrybucji <literal>unstable</literal> ."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:536
+#: apt_preferences.5.xml:538
msgid "Optional Lines in an APT Preferences Record"
msgstr "Opcjonalne linie w rekordzie preferencji APT"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:538
+#: apt_preferences.5.xml:540
msgid ""
"Each record in the APT preferences file can optionally begin with one or "
"more lines beginning with the word <literal>Explanation:</literal>. This "
@@ -5661,12 +5735,12 @@ msgstr ""
"literal> (tj. objaśnienie). Pozwala to na dodawanie komentarzy do rekordów."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:547
+#: apt_preferences.5.xml:549
msgid "Tracking Stable"
msgstr "Åšledzenie dystrybucji stabilnej"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:555
+#: apt_preferences.5.xml:557
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated\n"
@@ -5690,7 +5764,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:549
+#: apt_preferences.5.xml:551
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 "
@@ -5705,8 +5779,8 @@ msgstr ""
"type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:572 apt_preferences.5.xml:618
-#: apt_preferences.5.xml:676
+#: apt_preferences.5.xml:574 apt_preferences.5.xml:620
+#: apt_preferences.5.xml:678
#, no-wrap
msgid ""
"apt-get install <replaceable>package-name</replaceable>\n"
@@ -5718,7 +5792,7 @@ msgstr ""
"apt-get dist-upgrade\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:567
+#: apt_preferences.5.xml:569
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 "
@@ -5731,13 +5805,13 @@ msgstr ""
"type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:584
+#: apt_preferences.5.xml:586
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/testing\n"
msgstr "apt-get install <replaceable>pakiet</replaceable>/testing\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:578
+#: apt_preferences.5.xml:580
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>testing</literal> distribution; the package "
@@ -5750,12 +5824,12 @@ msgstr ""
"<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:590
+#: apt_preferences.5.xml:592
msgid "Tracking Testing or Unstable"
msgstr "Åšledzenie dystrybucji testowej lub niestabilnej"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:599
+#: apt_preferences.5.xml:601
#, no-wrap
msgid ""
"Package: *\n"
@@ -5783,7 +5857,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:592
+#: apt_preferences.5.xml:594
msgid ""
"The following APT preferences file will cause APT to assign a high priority "
"to package versions from the <literal>testing</literal> distribution, a "
@@ -5800,7 +5874,7 @@ msgstr ""
"id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:613
+#: apt_preferences.5.xml:615
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 "
@@ -5813,13 +5887,13 @@ msgstr ""
"type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:633
+#: apt_preferences.5.xml:635
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
msgstr "apt-get install <replaceable>pakiet</replaceable>/unstable\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:624
+#: apt_preferences.5.xml:626
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>unstable</literal> distribution. "
@@ -5839,12 +5913,12 @@ msgstr ""
"\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:640
+#: apt_preferences.5.xml:642
msgid "Tracking the evolution of a codename release"
msgstr "Åšledzenie ewolucji wydania o danej nazwie kodowej"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:654
+#: apt_preferences.5.xml:656
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@ -5878,7 +5952,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:642
+#: apt_preferences.5.xml:644
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 "
@@ -5904,7 +5978,7 @@ msgstr ""
"\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:671
+#: apt_preferences.5.xml:673
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 "
@@ -5917,13 +5991,13 @@ msgstr ""
"literal>. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:691
+#: apt_preferences.5.xml:693
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/sid\n"
msgstr "apt-get install <replaceable>pakiet</replaceable>/sid\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:682
+#: apt_preferences.5.xml:684
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>sid</literal> distribution. Thereafter, "
@@ -5943,17 +6017,17 @@ msgstr ""
"id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:706
+#: apt_preferences.5.xml:708
msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: sources.list.5.xml:33
+#: sources.list.5.xml:35
msgid "List of configured APT data sources"
msgstr "Lista skonfigurowanych źródeł danych APT"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:38
+#: sources.list.5.xml:40
msgid ""
"The source list <filename>/etc/apt/sources.list</filename> is designed to "
"support any number of active sources and a variety of source media. The file "
@@ -5971,7 +6045,7 @@ msgstr ""
"programu użytkowego będącego interfejsem do systemu APT)."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:45
+#: sources.list.5.xml:47
msgid ""
"Each line specifying a source starts with type (e.g. <literal>deb-src</"
"literal>) followed by options and arguments for this type. Individual "
@@ -5986,12 +6060,12 @@ msgstr ""
"dalsza część linii stanowi komentarz."
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:53
+#: sources.list.5.xml:55
msgid "sources.list.d"
msgstr "sources.list.d"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:54
+#: sources.list.5.xml:56
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 "
@@ -6013,12 +6087,12 @@ msgstr ""
"wypisze odpowiedni komunikat."
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:65
+#: sources.list.5.xml:67
msgid "The deb and deb-src types"
msgstr "Typy deb i deb-src"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:66
+#: sources.list.5.xml:68
msgid ""
"The <literal>deb</literal> type references a typical two-level Debian "
"archive, <filename>distribution/component</filename>. The "
@@ -6044,7 +6118,7 @@ msgstr ""
"źródłowych."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:78
+#: sources.list.5.xml:80
msgid ""
"The format for a <filename>sources.list</filename> entry using the "
"<literal>deb</literal> and <literal>deb-src</literal> types is:"
@@ -6053,13 +6127,13 @@ msgstr ""
"<literal>deb</literal> i <literal>deb-src</literal> jest następujący:"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:81
+#: sources.list.5.xml:83
#, no-wrap
msgid "deb [ options ] uri distribution [component1] [component2] [...]"
msgstr "deb [ opcje ] uri dystrybucja [komponent1] [komponent2] [...]"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:83
+#: sources.list.5.xml:85
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. "
@@ -6080,7 +6154,7 @@ msgstr ""
"<literal>komponent</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:92
+#: sources.list.5.xml:94
msgid ""
"<literal>distribution</literal> may also contain a variable, <literal>"
"$(ARCH)</literal> which expands to the Debian architecture (such as "
@@ -6100,7 +6174,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:100
+#: sources.list.5.xml:102
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 "
@@ -6127,7 +6201,7 @@ msgstr ""
"sieciach o niskiej przepustowości łączy."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:112
+#: sources.list.5.xml:114
msgid ""
"<literal>options</literal> is always optional and needs to be surrounded by "
"square brackets. It can consist of multiple settings in the form "
@@ -6144,7 +6218,7 @@ msgstr ""
"wypisywania żadnego ostrzeżenia):"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:117
+#: sources.list.5.xml:120
msgid ""
"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
"replaceable>,…</literal> can be used to specify for which architectures "
@@ -6159,7 +6233,28 @@ msgstr ""
"w opcji konfiguracji <literal>APT::Architectures</literal>."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:121
+#: sources.list.5.xml:124
+#, fuzzy
+#| msgid ""
+#| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+#| "replaceable>,…</literal> can be used to specify for which architectures "
+#| "information should be downloaded. If this option is not set all "
+#| "architectures defined by the <literal>APT::Architectures</literal> option "
+#| "will be downloaded."
+msgid ""
+"<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>,"
+"<replaceable>arch2</replaceable>,…</literal> which can be used to add/remove "
+"architectures from the set which will be downloaded."
+msgstr ""
+"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> może zostać użyte do podania architektur, dla "
+"których będą pobierane informacje o pakietach. Jeśli ta opcja nie jest "
+"ustawiona, będą pobierane informacje dla wszystkich architektur określonych "
+"w opcji konfiguracji <literal>APT::Architectures</literal>."
+
+#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
+#: sources.list.5.xml:127
msgid ""
"<literal>trusted=yes</literal> can be set to indicate that packages from "
"this source are always authenticated even if the <filename>Release</"
@@ -6177,7 +6272,7 @@ msgstr ""
"niezautentykowane."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:128
+#: sources.list.5.xml:134
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 "
@@ -6191,12 +6286,12 @@ msgstr ""
"komputerami w Internecie)."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:133
+#: sources.list.5.xml:139
msgid "Some examples:"
msgstr "Kilka przykładów:"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:135
+#: sources.list.5.xml:141
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@ -6208,17 +6303,17 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:141
+#: sources.list.5.xml:147
msgid "URI specification"
msgstr "Określanie URI"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:143
+#: sources.list.5.xml:149
msgid "The currently recognized URI types are:"
msgstr "Obecnie rozpoznawane są następujące typy URI:"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:147
+#: sources.list.5.xml:153
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 "
@@ -6229,7 +6324,7 @@ msgstr ""
"archiwów."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:154
+#: sources.list.5.xml:160
msgid ""
"The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. "
"Use the &apt-cdrom; program to create cdrom entries in the source list."
@@ -6239,7 +6334,7 @@ msgstr ""
"list."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:161
+#: sources.list.5.xml:167
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:"
@@ -6256,7 +6351,7 @@ msgstr ""
"bezpieczny."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:172
+#: sources.list.5.xml:178
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. "
@@ -6276,7 +6371,7 @@ msgstr ""
"konfiguracyjnym serwery proxy używające HTTP zostaną zignorowane."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:184
+#: sources.list.5.xml:190
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. "
@@ -6289,7 +6384,7 @@ msgstr ""
"do skopiowania plików przy użyciu APT."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:191
+#: sources.list.5.xml:197
msgid ""
"The rsh/ssh method invokes RSH/SSH to connect to a remote host and access "
"the files as a given user. Prior configuration of rhosts or RSA keys is "
@@ -6303,12 +6398,12 @@ msgstr ""
"przetransferowania plików ze zdalnego komputera."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
-#: sources.list.5.xml:198
+#: sources.list.5.xml:204
msgid "adding more recognizable URI types"
msgstr "dodawanie innych rozpoznawanych typów URI"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:200
+#: sources.list.5.xml:206
msgid ""
"APT can be extended with more methods shipped in other optional packages, "
"which should follow the naming scheme <package>apt-transport-"
@@ -6327,7 +6422,7 @@ msgstr ""
"zobaczyć &apt-transport-debtorrent;."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:212
+#: sources.list.5.xml:218
msgid ""
"Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
"stable/main, stable/contrib, and stable/non-free."
@@ -6336,36 +6431,36 @@ msgstr ""
"debian dla zasobów stable/main, stable/contrib i stable/non-free."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:214
+#: sources.list.5.xml:220
#, 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:216
+#: sources.list.5.xml:222
msgid "As above, except this uses the unstable (development) distribution."
msgstr ""
"Jak wyżej, z tą różnicą że używa dystrybucji niestabilnej (deweloperskiej)."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:217
+#: sources.list.5.xml:223
#, 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:219
+#: sources.list.5.xml:225
msgid "Source line for the above"
msgstr "Linie źródeł dla powyższego przykładu"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:220
+#: sources.list.5.xml:226
#, 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:222
+#: sources.list.5.xml:228
msgid ""
"The first line gets package information for the architectures in "
"<literal>APT::Architectures</literal> while the second always retrieves "
@@ -6376,7 +6471,7 @@ msgstr ""
"literal> i <literal>armel</literal>."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:224
+#: sources.list.5.xml:230
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main\n"
@@ -6386,7 +6481,7 @@ msgstr ""
"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:227
+#: sources.list.5.xml:233
msgid ""
"Uses HTTP to access the archive at archive.debian.org, and uses only the "
"hamm/main area."
@@ -6395,13 +6490,13 @@ msgstr ""
"org i dystrybucji hamm/main."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:229
+#: sources.list.5.xml:235
#, 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:231
+#: sources.list.5.xml:237
msgid ""
"Uses FTP to access the archive at ftp.debian.org, under the debian "
"directory, and uses only the &stable-codename;/contrib area."
@@ -6410,13 +6505,13 @@ msgstr ""
"katalogu debian i używa tylko dystrybucji &stable-codename;/contrib."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:233
+#: sources.list.5.xml:239
#, no-wrap
msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:235
+#: sources.list.5.xml:241
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 "
@@ -6429,19 +6524,19 @@ msgstr ""
"to pojedyncza sesja FTP będzie użyta w celu uzyskania dostępu do obu zasobów."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:239
+#: sources.list.5.xml:245
#, 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><literallayout>
-#: sources.list.5.xml:248
+#: sources.list.5.xml:254
#, no-wrap
msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:241
+#: sources.list.5.xml:247
msgid ""
"Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
"directory, and uses only files found under <filename>unstable/binary-i386</"
@@ -6460,17 +6555,17 @@ msgstr ""
"nie zawiera takiej struktury). <placeholder type=\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:253
+#: sources.list.5.xml:259
msgid "&apt-cache; &apt-conf;"
msgstr "&apt-cache;, &apt-conf;"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-extracttemplates.1.xml:26 apt-sortpkgs.1.xml:26 apt-ftparchive.1.xml:26
+#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28
msgid "1"
msgstr "1"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-extracttemplates.1.xml:33
+#: apt-extracttemplates.1.xml:35
msgid ""
"Utility to extract <command>debconf</command> config and templates from "
"Debian packages"
@@ -6479,7 +6574,7 @@ msgstr ""
"<command>debconf</command>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:39
+#: apt-extracttemplates.1.xml:41
msgid ""
"<command>apt-extracttemplates</command> will take one or more Debian package "
"files as input and write out (to a temporary directory) all associated "
@@ -6493,12 +6588,12 @@ msgstr ""
"te skrypty i szablony, zostanie wypisana linia w następującym formacie:"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:44
+#: apt-extracttemplates.1.xml:46
msgid "package version template-file config-script"
msgstr "pakiet wersja plik-template skrypt-config"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:45
+#: apt-extracttemplates.1.xml:47
msgid ""
"template-file and config-script are written to the temporary directory "
"specified by the <option>-t</option> or <option>--tempdir</option> "
@@ -6513,7 +6608,7 @@ msgstr ""
"config.XXXX</filename>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-extracttemplates.1.xml:58
+#: apt-extracttemplates.1.xml:60
msgid ""
"Temporary directory in which to write extracted <command>debconf</command> "
"template files and config scripts. Configuration Item: <literal>APT::"
@@ -6525,7 +6620,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:75
+#: apt-extracttemplates.1.xml:77
msgid ""
"<command>apt-extracttemplates</command> returns zero on normal operation, "
"decimal 100 on error."
@@ -6535,12 +6630,12 @@ msgstr ""
#
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-sortpkgs.1.xml:33
+#: apt-sortpkgs.1.xml:35
msgid "Utility to sort package index files"
msgstr "Narzędzie użytkowe do sortowania plików indeksu"
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:39
+#: apt-sortpkgs.1.xml:41
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 "
@@ -6552,7 +6647,7 @@ msgstr ""
"zgodnie z wewnętrznymi zasadami sortowania."
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:45
+#: apt-sortpkgs.1.xml:47
msgid ""
"All output is sent to standard output; the input must be a seekable file."
msgstr ""
@@ -6561,7 +6656,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-sortpkgs.1.xml:54
+#: apt-sortpkgs.1.xml:56
msgid ""
"Use source index field ordering. Configuration Item: <literal>APT::"
"SortPkgs::Source</literal>."
@@ -6571,7 +6666,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:68
+#: apt-sortpkgs.1.xml:70
msgid ""
"<command>apt-sortpkgs</command> returns zero on normal operation, decimal "
"100 on error."
@@ -6580,12 +6675,12 @@ msgstr ""
"100 - w przypadku błędu."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-ftparchive.1.xml:33
+#: apt-ftparchive.1.xml:35
msgid "Utility to generate index files"
msgstr "Narzędzie użytkowe do generowania plików indeksu"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:39
+#: apt-ftparchive.1.xml:41
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 "
@@ -6598,7 +6693,7 @@ msgstr ""
"on the content of that site."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:43
+#: apt-ftparchive.1.xml:45
msgid ""
"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; "
"program, incorporating its entire functionality via the <literal>packages</"
@@ -6608,7 +6703,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:49
+#: apt-ftparchive.1.xml:51
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 "
@@ -6618,7 +6713,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:60
+#: apt-ftparchive.1.xml:62
msgid ""
"The packages command generates a package file from a directory tree. It "
"takes the given directory and recursively searches it for .deb files, "
@@ -6627,13 +6722,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:65 apt-ftparchive.1.xml:89
+#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91
msgid ""
"The option <option>--db</option> can be used to specify a binary caching DB."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:70
+#: apt-ftparchive.1.xml:72
msgid ""
"The <literal>sources</literal> command generates a source index file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -6642,7 +6737,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:75
+#: apt-ftparchive.1.xml:77
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 "
@@ -6650,7 +6745,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:82
+#: apt-ftparchive.1.xml:84
msgid ""
"The <literal>contents</literal> command generates a contents file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -6661,7 +6756,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:94
+#: apt-ftparchive.1.xml:96
msgid ""
"The <literal>release</literal> command generates a Release file from a "
"directory tree. It recursively searches the given directory for uncompressed "
@@ -6676,7 +6771,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:104
+#: apt-ftparchive.1.xml:106
msgid ""
"Values for the additional metadata fields in the Release file are taken from "
"the corresponding variables under <literal>APT::FTPArchive::Release</"
@@ -6689,7 +6784,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:117
+#: apt-ftparchive.1.xml:119
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 "
@@ -6699,20 +6794,20 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:126
+#: apt-ftparchive.1.xml:128
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:132
+#: apt-ftparchive.1.xml:134
#, fuzzy
msgid "The Generate Configuration"
msgstr "Plik konfiguracyjny"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:134
+#: apt-ftparchive.1.xml:136
msgid ""
"The <literal>generate</literal> command uses a configuration file to "
"describe the archives that are going to be generated. It follows the typical "
@@ -6723,20 +6818,20 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:142
+#: apt-ftparchive.1.xml:144
msgid ""
"The generate configuration has four separate sections, each described below."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:144
+#: apt-ftparchive.1.xml:146
#, fuzzy
#| msgid "the <literal>Origin:</literal> line"
msgid "<literal>Dir</literal> Section"
msgstr "linia <literal>Origin:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:146
+#: apt-ftparchive.1.xml:148
msgid ""
"The <literal>Dir</literal> section defines the standard directories needed "
"to locate the files required during the generation process. These "
@@ -6745,7 +6840,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:153
+#: apt-ftparchive.1.xml:155
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 "
@@ -6753,31 +6848,31 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:160
+#: apt-ftparchive.1.xml:162
msgid "Specifies the location of the override files."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:165
+#: apt-ftparchive.1.xml:167
msgid "Specifies the location of the cache files."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:170
+#: apt-ftparchive.1.xml:172
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:176
+#: apt-ftparchive.1.xml:178
#, fuzzy
#| msgid "the <literal>Label:</literal> line"
msgid "<literal>Default</literal> Section"
msgstr "linia <literal>Label:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:178
+#: apt-ftparchive.1.xml:180
msgid ""
"The <literal>Default</literal> section specifies default values, and "
"settings that control the operation of the generator. Other sections may "
@@ -6785,7 +6880,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:184
+#: apt-ftparchive.1.xml:186
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 "
@@ -6794,42 +6889,42 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:192
+#: apt-ftparchive.1.xml:194
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><listitem><para>
-#: apt-ftparchive.1.xml:198
+#: apt-ftparchive.1.xml:200
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><listitem><para>
-#: apt-ftparchive.1.xml:204
+#: apt-ftparchive.1.xml:206
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><listitem><para>
-#: apt-ftparchive.1.xml:210
+#: apt-ftparchive.1.xml:212
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><listitem><para>
-#: apt-ftparchive.1.xml:216
+#: apt-ftparchive.1.xml:218
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Translation-en master file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:222
+#: apt-ftparchive.1.xml:224
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-"
@@ -6837,14 +6932,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:229
+#: apt-ftparchive.1.xml:231
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><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:236 apt-ftparchive.1.xml:382
+#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384
msgid ""
"Specifies whether long descriptions should be included in the "
"<filename>Packages</filename> file or split out into a master "
@@ -6852,14 +6947,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:242
+#: apt-ftparchive.1.xml:244
#, fuzzy
#| msgid "the <literal>Label:</literal> line"
msgid "<literal>TreeDefault</literal> Section"
msgstr "linia <literal>Label:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:244
+#: apt-ftparchive.1.xml:246
msgid ""
"Sets defaults specific to <literal>Tree</literal> sections. All of these "
"variables are substitution variables and have the strings $(DIST), "
@@ -6867,7 +6962,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:251
+#: apt-ftparchive.1.xml:253
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 "
@@ -6875,7 +6970,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:258
+#: apt-ftparchive.1.xml:260
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. "
@@ -6886,35 +6981,35 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:269
+#: apt-ftparchive.1.xml:271
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><listitem><para>
-#: apt-ftparchive.1.xml:275
+#: apt-ftparchive.1.xml:277
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><listitem><para>
-#: apt-ftparchive.1.xml:281
+#: apt-ftparchive.1.xml:283
msgid ""
"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/"
"binary-$(ARCH)/Packages</filename>"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:287
+#: apt-ftparchive.1.xml:289
msgid ""
"Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/"
"source/Sources</filename>"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:293
+#: apt-ftparchive.1.xml:295
msgid ""
"Sets the output Translation-en master file with the long descriptions if "
"they should be not included in the Packages file. Defaults to <filename>"
@@ -6922,7 +7017,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:300
+#: apt-ftparchive.1.xml:302
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)/</"
@@ -6930,7 +7025,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:307
+#: apt-ftparchive.1.xml:309
msgid ""
"Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/"
"Contents-$(ARCH)</filename>. If this setting causes multiple Packages files "
@@ -6940,19 +7035,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:316
+#: apt-ftparchive.1.xml:318
msgid "Sets header file to prepend to the contents output."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:321
+#: apt-ftparchive.1.xml:323
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><listitem><para>
-#: apt-ftparchive.1.xml:327
+#: apt-ftparchive.1.xml:329
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -6960,7 +7055,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:334
+#: apt-ftparchive.1.xml:336
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -6969,14 +7064,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:342
+#: apt-ftparchive.1.xml:344
#, fuzzy
#| msgid "the <literal>Label:</literal> line"
msgid "<literal>Tree</literal> Section"
msgstr "linia <literal>Label:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:344
+#: apt-ftparchive.1.xml:346
msgid ""
"The <literal>Tree</literal> section defines a standard Debian file tree "
"which consists of a base directory, then multiple sections in that base "
@@ -6986,7 +7081,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:349
+#: apt-ftparchive.1.xml:351
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 "
@@ -6995,7 +7090,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:354
+#: apt-ftparchive.1.xml:356
msgid ""
"All of the settings defined in the <literal>TreeDefault</literal> section "
"can be used in a <literal>Tree</literal> section as well as three new "
@@ -7003,7 +7098,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt-ftparchive.1.xml:360
+#: apt-ftparchive.1.xml:362
#, no-wrap
msgid ""
"for i in Sections do \n"
@@ -7017,7 +7112,7 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:357
+#: apt-ftparchive.1.xml:359
msgid ""
"When processing a <literal>Tree</literal> section <command>apt-ftparchive</"
"command> performs an operation similar to: <placeholder type=\"programlisting"
@@ -7025,7 +7120,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:368
+#: apt-ftparchive.1.xml:370
msgid ""
"This is a space separated list of sections which appear under the "
"distribution; typically this is something like <literal>main contrib non-"
@@ -7033,7 +7128,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:375
+#: apt-ftparchive.1.xml:377
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 "
@@ -7041,38 +7136,38 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:388
+#: apt-ftparchive.1.xml:390
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><listitem><para>
-#: apt-ftparchive.1.xml:394
+#: apt-ftparchive.1.xml:396
msgid ""
"Sets the source override file. The override file contains section "
"information."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:400 apt-ftparchive.1.xml:446
+#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448
msgid "Sets the binary extra override file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:405 apt-ftparchive.1.xml:451
+#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453
msgid "Sets the source extra override file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:410
+#: apt-ftparchive.1.xml:412
#, fuzzy
#| msgid "the <literal>Component:</literal> line"
msgid "<literal>BinDirectory</literal> Section"
msgstr "linia <literal>Component:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:412
+#: apt-ftparchive.1.xml:414
msgid ""
"The <literal>bindirectory</literal> section defines a binary directory tree "
"with no special structure. The scope tag specifies the location of the "
@@ -7082,55 +7177,55 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:420
+#: apt-ftparchive.1.xml:422
msgid "Sets the Packages file output."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:425
+#: apt-ftparchive.1.xml:427
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:431
+#: apt-ftparchive.1.xml:433
msgid "Sets the Contents file output (optional)."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:436
+#: apt-ftparchive.1.xml:438
msgid "Sets the binary override file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:441
+#: apt-ftparchive.1.xml:443
msgid "Sets the source override file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:456
+#: apt-ftparchive.1.xml:458
msgid "Sets the cache DB."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:461
+#: apt-ftparchive.1.xml:463
msgid "Appends a path to all the output paths."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:466
+#: apt-ftparchive.1.xml:468
msgid "Specifies the file list file."
msgstr "Określa plik zawierający listę plików."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:473
+#: apt-ftparchive.1.xml:475
#, fuzzy
msgid "The Binary Override File"
msgstr "Wprowadzenie"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:474
+#: apt-ftparchive.1.xml:476
msgid ""
"The binary override file is fully compatible with &dpkg-scanpackages;. It "
"contains four fields separated by spaces. The first field is the package "
@@ -7140,19 +7235,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:480
+#: apt-ftparchive.1.xml:482
#, no-wrap
msgid "old [// oldn]* => new"
msgstr "old [// oldn]* => new"
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:482
+#: apt-ftparchive.1.xml:484
#, no-wrap
msgid "new"
msgstr "new"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:479
+#: apt-ftparchive.1.xml:481
msgid ""
"The general form of the maintainer field is: <placeholder type="
"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" "
@@ -7163,13 +7258,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:490
+#: apt-ftparchive.1.xml:492
#, fuzzy
msgid "The Source Override File"
msgstr "Wprowadzenie"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:492
+#: apt-ftparchive.1.xml:494
msgid ""
"The source override file is fully compatible with &dpkg-scansources;. It "
"contains two fields separated by spaces. The first field is the source "
@@ -7177,12 +7272,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:497
+#: apt-ftparchive.1.xml:499
msgid "The Extra Override File"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:499
+#: apt-ftparchive.1.xml:501
msgid ""
"The extra override file allows any arbitrary tag to be added or replaced in "
"the output. It has three columns, the first is the package, the second is "
@@ -7190,7 +7285,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:510
+#: apt-ftparchive.1.xml:512
msgid ""
"Generate the given checksum. These options default to on, when turned off "
"the generated index files will not have the checksum fields where possible. "
@@ -7205,7 +7300,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:521
+#: apt-ftparchive.1.xml:523
#, fuzzy
msgid ""
"Use a binary caching DB. This has no effect on the generate command. "
@@ -7216,7 +7311,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:527
+#: apt-ftparchive.1.xml:529
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 "
@@ -7231,7 +7326,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:535
+#: apt-ftparchive.1.xml:537
#, fuzzy
msgid ""
"Perform Delinking. If the <literal>External-Links</literal> setting is used "
@@ -7245,7 +7340,7 @@ msgstr ""
"<literal>APT::Cache::Generate</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:543
+#: apt-ftparchive.1.xml:545
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 "
@@ -7256,7 +7351,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:553
+#: apt-ftparchive.1.xml:555
#, fuzzy
msgid ""
"Select the source override file to use with the <literal>sources</literal> "
@@ -7269,7 +7364,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:559
+#: apt-ftparchive.1.xml:561
#, fuzzy
msgid ""
"Make the caching databases read only. Configuration Item: <literal>APT::"
@@ -7279,7 +7374,7 @@ msgstr ""
"pliku konfiguracyjnym: <literal>APT::Cache::NamesOnly</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:564
+#: apt-ftparchive.1.xml:566
#, fuzzy
#| msgid ""
#| "If the command is either <literal>install</literal> or <literal>remove</"
@@ -7299,7 +7394,7 @@ msgstr ""
"AutomaticRemove</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:572
+#: apt-ftparchive.1.xml:574
msgid ""
"&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
"packages are recompiled and/or republished with the same version again, this "
@@ -7313,7 +7408,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:584
+#: apt-ftparchive.1.xml:586
msgid ""
"This configuration option defaults to \"<literal>true</literal>\" and should "
"only be set to <literal>\"false\"</literal> if the Archive generated with "
@@ -7323,13 +7418,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><programlisting>
-#: apt-ftparchive.1.xml:602
+#: apt-ftparchive.1.xml:604
#, 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>katalog</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:598
+#: apt-ftparchive.1.xml:600
msgid ""
"To create a compressed Packages file for a directory containing binary "
"packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@ -7337,7 +7432,7 @@ msgstr ""
#
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:612
+#: apt-ftparchive.1.xml:614
msgid ""
"<command>apt-ftparchive</command> returns zero on normal operation, decimal "
"100 on error."
diff --git a/doc/po/pt.po b/doc/po/pt.po
index b06026154..1f3bbcc50 100644
--- a/doc/po/pt.po
+++ b/doc/po/pt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.9.7.1\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-06-13 13:46+0300\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-09-03 01:53+0100\n"
"Last-Translator: Américo Monteiro <a_monteiro@netcabo.pt>\n"
"Language-Team: Portuguese <l10n@debianpt.org>\n"
@@ -660,36 +660,36 @@ msgstr ""
"export 473041FA --> <!ENTITY synopsis-keyid \"id_de_chave\">"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-get.8.xml:26 apt-cache.8.xml:26 apt-key.8.xml:25 apt-mark.8.xml:26
-#: apt-secure.8.xml:25 apt-cdrom.8.xml:25 apt-config.8.xml:26
+#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28
+#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28
msgid "8"
msgstr "8"
#. type: Content of: <refentry><refmeta><refmiscinfo>
-#: apt-get.8.xml:27 apt-cache.8.xml:27 apt-key.8.xml:26 apt-mark.8.xml:27
-#: apt-secure.8.xml:26 apt-cdrom.8.xml:26 apt-config.8.xml:27
-#: apt.conf.5.xml:32 apt_preferences.5.xml:26 sources.list.5.xml:27
-#: apt-extracttemplates.1.xml:27 apt-sortpkgs.1.xml:27 apt-ftparchive.1.xml:27
+#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29
+#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29
+#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29
+#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29
msgid "APT"
msgstr "APT"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-get.8.xml:33
+#: apt-get.8.xml:35
msgid "APT package handling utility -- command-line interface"
msgstr ""
"Utilitário de manuseamento de pacotes do APT -- interface de linha de "
"comandos"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:38 apt-cache.8.xml:38 apt-key.8.xml:37 apt-mark.8.xml:38
-#: apt-secure.8.xml:50 apt-cdrom.8.xml:37 apt-config.8.xml:38
-#: apt.conf.5.xml:41 apt_preferences.5.xml:36 sources.list.5.xml:36
-#: apt-extracttemplates.1.xml:38 apt-sortpkgs.1.xml:38 apt-ftparchive.1.xml:38
+#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40
+#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40
+#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38
+#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40
msgid "Description"
msgstr "Descrição"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:39
+#: apt-get.8.xml:41
msgid ""
"<command>apt-get</command> is the command-line tool for handling packages, "
"and may be considered the user's \"back-end\" to other tools using the APT "
@@ -702,8 +702,8 @@ msgstr ""
"\"front-end\" como o &dselect;, &aptitude;, &synaptic; e &wajig;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:44 apt-cache.8.xml:44 apt-cdrom.8.xml:51 apt-config.8.xml:44
-#: apt-ftparchive.1.xml:54
+#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46
+#: apt-ftparchive.1.xml:56
msgid ""
"Unless the <option>-h</option>, or <option>--help</option> option is given, "
"one of the commands below must be present."
@@ -712,7 +712,7 @@ msgstr ""
"fornecida, um dos comandos abaixo têm que estar presentes."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:49
+#: apt-get.8.xml:51
msgid ""
"<literal>update</literal> is used to resynchronize the package index files "
"from their sources. The indexes of available packages are fetched from the "
@@ -736,7 +736,7 @@ msgstr ""
"ficheiros de pacotes não pode ser conhecido com antecedência."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:61
+#: apt-get.8.xml:63
msgid ""
"<literal>upgrade</literal> is used to install the newest versions of all "
"packages currently installed on the system from the sources enumerated in "
@@ -762,7 +762,7 @@ msgstr ""
"novas versões de pacotes."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:74
+#: apt-get.8.xml:76
msgid ""
"<literal>dist-upgrade</literal> in addition to performing the function of "
"<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@ -787,7 +787,7 @@ msgstr ""
"sobrepor as definições gerais em pacotes individuais."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:87
+#: apt-get.8.xml:89
msgid ""
"<literal>dselect-upgrade</literal> is used in conjunction with the "
"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@ -803,7 +803,7 @@ msgstr ""
"estado (por exemplo, a remoção de pacotes antigos e a instalação de novos)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:98
+#: apt-get.8.xml:100
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 "
@@ -833,7 +833,7 @@ msgstr ""
"de resolução de conflitos do apt-get."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:116
+#: apt-get.8.xml:118
msgid ""
"A specific version of a package can be selected for installation by "
"following the package name with an equals and the version of the package to "
@@ -850,7 +850,7 @@ msgstr ""
"versão da distribuição ou o nome de Arquivo (stable, testing, unstable)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:123
+#: apt-get.8.xml:125
msgid ""
"Both of the version selection mechanisms can downgrade packages and must be "
"used with care."
@@ -859,7 +859,7 @@ msgstr ""
"e devem ser usados com cuidado."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:126
+#: apt-get.8.xml:128
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. "
@@ -879,7 +879,7 @@ msgstr ""
"descarregadas e instaladas."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:137
+#: apt-get.8.xml:139
msgid ""
"Finally, the &apt-preferences; mechanism allows you to create an alternative "
"installation policy for individual packages."
@@ -888,7 +888,7 @@ msgstr ""
"instalação alternativa para pacotes individuais."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:141
+#: apt-get.8.xml:143
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 "
@@ -907,7 +907,7 @@ msgstr ""
"caractere '^' ou '$', para criar uma expressão regular mais específica."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:151
+#: apt-get.8.xml:153
msgid ""
"<literal>remove</literal> is identical to <literal>install</literal> except "
"that packages are removed instead of installed. Note that removing a package "
@@ -922,7 +922,7 @@ msgstr ""
"pacote identificado será instalado em vez de removido."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:159
+#: apt-get.8.xml:161
msgid ""
"<literal>purge</literal> is identical to <literal>remove</literal> except "
"that packages are removed and purged (any configuration files are deleted "
@@ -933,7 +933,7 @@ msgstr ""
"configuração são também apagados)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:164
+#: apt-get.8.xml:166
msgid ""
"<literal>source</literal> causes <command>apt-get</command> to fetch source "
"packages. APT will examine the available packages to decide which source "
@@ -952,7 +952,7 @@ msgstr ""
"<literal>pkg/release</literal>, se possível."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:172
+#: apt-get.8.xml:174
msgid ""
"Source packages are tracked separately from binary packages via <literal>deb-"
"src</literal> lines in the &sources-list; file. This means that you will "
@@ -967,7 +967,7 @@ msgstr ""
"de fonte erradas (muito antigas/muito novas) ou mesmo nenhuma."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:178
+#: apt-get.8.xml:180
msgid ""
"If the <option>--compile</option> option is specified then the package will "
"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
@@ -982,7 +982,7 @@ msgstr ""
"então o pacote fonte não será desempacotado."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:185
+#: apt-get.8.xml:187
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 "
@@ -997,7 +997,7 @@ msgstr ""
"Only-Source</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:191
+#: apt-get.8.xml:193
msgid ""
"Note that source packages are not installed and tracked in the "
"<command>dpkg</command> database like binary packages; they are simply "
@@ -1008,7 +1008,7 @@ msgstr ""
"descarregados para o directório actual, como tarballs fonte."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:197
+#: apt-get.8.xml:199
msgid ""
"<literal>build-dep</literal> causes apt-get to install/remove packages in an "
"attempt to satisfy the build dependencies for a source package. By default "
@@ -1023,7 +1023,7 @@ msgstr ""
"arquitectura-anfitriã com a opção <option>--host-architecture</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:204
+#: apt-get.8.xml:206
msgid ""
"<literal>check</literal> is a diagnostic tool; it updates the package cache "
"and checks for broken dependencies."
@@ -1032,7 +1032,7 @@ msgstr ""
"de pacotes e verifica por dependências quebradas."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:209
+#: apt-get.8.xml:211
msgid ""
"<literal>download</literal> will download the given binary package into the "
"current directory."
@@ -1041,7 +1041,7 @@ msgstr ""
"directório actual."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:215
+#: apt-get.8.xml:217
msgid ""
"<literal>clean</literal> clears out the local repository of retrieved "
"package files. It removes everything but the lock file from "
@@ -1060,7 +1060,7 @@ msgstr ""
"libertar espaço do disco."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:225
+#: apt-get.8.xml:227
msgid ""
"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
"local repository of retrieved package files. The difference is that it only "
@@ -1079,7 +1079,7 @@ msgstr ""
"pacotes instalados sejam apagados se estiver definida para 'off'."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:235
+#: apt-get.8.xml:237
msgid ""
"<literal>autoremove</literal> is used to remove packages that were "
"automatically installed to satisfy dependencies for other packages and are "
@@ -1090,7 +1090,7 @@ msgstr ""
"que já não são necessários."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:240
+#: apt-get.8.xml:242
msgid ""
"<literal>changelog</literal> downloads a package changelog and displays it "
"through <command>sensible-pager</command>. The server name and base "
@@ -1113,14 +1113,14 @@ msgstr ""
"para o comando <option>install</option>."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:258 apt-cache.8.xml:248 apt-mark.8.xml:108
-#: apt-config.8.xml:84 apt-extracttemplates.1.xml:52 apt-sortpkgs.1.xml:48
-#: apt-ftparchive.1.xml:504
+#: apt-get.8.xml:260 apt-cache.8.xml:250 apt-mark.8.xml:110
+#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50
+#: apt-ftparchive.1.xml:506
msgid "options"
msgstr "opções"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:263
+#: apt-get.8.xml:265
msgid ""
"Do not consider recommended packages as a dependency for installing. "
"Configuration Item: <literal>APT::Install-Recommends</literal>."
@@ -1129,7 +1129,7 @@ msgstr ""
"de Configuração: <literal>APT::Install-Recommends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:268
+#: apt-get.8.xml:270
msgid ""
"Consider suggested packages as a dependency for installing. Configuration "
"Item: <literal>APT::Install-Suggests</literal>."
@@ -1138,7 +1138,7 @@ msgstr ""
"Configuração: <literal>APT::Install-Suggests</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:273
+#: apt-get.8.xml:275
msgid ""
"Download only; package files are only retrieved, not unpacked or installed. "
"Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@ -1148,7 +1148,7 @@ msgstr ""
"Download-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:278
+#: apt-get.8.xml:280
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 "
@@ -1176,7 +1176,7 @@ msgstr ""
"<literal>APT::Get::Fix-Broken</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:293
+#: apt-get.8.xml:295
msgid ""
"Ignore missing packages; if packages cannot be retrieved or fail the "
"integrity check after retrieval (corrupted package files), hold back those "
@@ -1195,7 +1195,7 @@ msgstr ""
"de Configuração: <literal>APT::Get::Fix-Missing</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:304
+#: apt-get.8.xml:306
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 "
@@ -1206,7 +1206,7 @@ msgstr ""
"descarregados. Item de Configuração: <literal>APT::Get::Download</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:311
+#: apt-get.8.xml:313
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 "
@@ -1226,7 +1226,7 @@ msgstr ""
"<literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:326
+#: apt-get.8.xml:328
msgid ""
"No action; perform a simulation of events that would occur but do not "
"actually change the system. Configuration Item: <literal>APT::Get::"
@@ -1237,7 +1237,7 @@ msgstr ""
"Simulate</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:330
+#: apt-get.8.xml:332
msgid ""
"Simulated runs performed as a user will automatically deactivate locking "
"(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::"
@@ -1256,7 +1256,7 @@ msgstr ""
"avisos do <literal>apt-get</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:338
+#: apt-get.8.xml:340
msgid ""
"Simulated runs print out a series of lines, each representing a "
"<command>dpkg</command> operation: configure (<literal>Conf</literal>), "
@@ -1271,7 +1271,7 @@ msgstr ""
"indicam quebras que não têm consequência (raro)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:346
+#: apt-get.8.xml:348
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 "
@@ -1287,7 +1287,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:354
+#: apt-get.8.xml:356
msgid ""
"Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::"
"Assume-No</literal>."
@@ -1296,7 +1296,7 @@ msgstr ""
"<literal>APT::Get::Assume-No</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:359
+#: apt-get.8.xml:361
msgid ""
"Show upgraded packages; print out a list of all packages that are to be "
"upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@ -1306,7 +1306,7 @@ msgstr ""
"Upgraded</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:365
+#: apt-get.8.xml:367
msgid ""
"Show full versions for upgraded and installed packages. Configuration Item: "
"<literal>APT::Get::Show-Versions</literal>."
@@ -1315,7 +1315,7 @@ msgstr ""
"Configuração: <literal>APT::Get::Show-Versions</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:371
+#: apt-get.8.xml:373
msgid ""
"This option controls the architecture packages are built for by <command>apt-"
"get source --compile</command> and how cross-builddependencies are "
@@ -1332,7 +1332,7 @@ msgstr ""
"item de Configuração: <literal>APT::Get::Host-Architecture</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:381
+#: apt-get.8.xml:383
msgid ""
"Compile source packages after downloading them. Configuration Item: "
"<literal>APT::Get::Compile</literal>."
@@ -1341,7 +1341,7 @@ msgstr ""
"<literal>APT::Get::Compile</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:386
+#: apt-get.8.xml:388
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 "
@@ -1354,7 +1354,19 @@ msgstr ""
"Item de Configuração: <literal>APT::Ignore-Hold</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:393
+#: apt-get.8.xml:395
+msgid ""
+"Allow installing new packages when used in conjunction with "
+"<literal>upgrade</literal>. This is useful if the update of a installed "
+"package requires new dependencies to be installed. Instead of holding the "
+"package back <literal>upgrade</literal> will upgrade the package and install "
+"the new dependencies. Note that <literal>upgrade</literal> with this option "
+"will never remove packages, only allow adding new ones. Configuration Item: "
+"<literal>APT::Get::Upgrade-Allow-New</literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:407
msgid ""
"Do not upgrade packages; when used in conjunction with <literal>install</"
"literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@ -1367,7 +1379,7 @@ msgstr ""
"Configuração: <literal>APT::Get::Upgrade</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:400
+#: apt-get.8.xml:414
msgid ""
"Do not install new packages; when used in conjunction with <literal>install</"
"literal>, <literal>only-upgrade</literal> will install upgrades for already "
@@ -1380,7 +1392,7 @@ msgstr ""
"Item de Configuração: <literal>APT::Get::Only-Upgrade</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:408
+#: apt-get.8.xml:422
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 "
@@ -1395,7 +1407,7 @@ msgstr ""
"<literal>APT::Get::force-yes</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:416
+#: apt-get.8.xml:430
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 "
@@ -1416,7 +1428,7 @@ msgstr ""
"Configuração: <literal>APT::Get::Print-URIs</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:427
+#: apt-get.8.xml:441
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. "
@@ -1429,7 +1441,7 @@ msgstr ""
"option>. Item de Configuração: <literal>APT::Get::Purge</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:435
+#: apt-get.8.xml:449
msgid ""
"Re-install packages that are already installed and at the newest version. "
"Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@ -1438,7 +1450,7 @@ msgstr ""
"Configuração: <literal>APT::Get::ReInstall</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:440
+#: apt-get.8.xml:454
msgid ""
"This option is on by default; use <literal>--no-list-cleanup</literal> to "
"turn it off. When it is on, <command>apt-get</command> will automatically "
@@ -1455,7 +1467,7 @@ msgstr ""
"fontes. Item de Configuração: <literal>APT::Get::List-Cleanup</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:450
+#: apt-get.8.xml:464
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 "
@@ -1478,7 +1490,7 @@ msgstr ""
"Release</literal>; veja também o manual &apt-preferences;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:465
+#: apt-get.8.xml:479
msgid ""
"Only perform operations that are 'trivial'. Logically this can be considered "
"related to <option>--assume-yes</option>; where <option>--assume-yes</"
@@ -1492,7 +1504,7 @@ msgstr ""
"Trivial-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:472
+#: apt-get.8.xml:486
msgid ""
"If any packages are to be removed apt-get immediately aborts without "
"prompting. Configuration Item: <literal>APT::Get::Remove</literal>."
@@ -1502,7 +1514,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:478
+#: apt-get.8.xml:492
msgid ""
"If the command is either <literal>install</literal> or <literal>remove</"
"literal>, then this option acts like running the <literal>autoremove</"
@@ -1515,7 +1527,7 @@ msgstr ""
"Configuração: <literal>APT::Get::AutomaticRemove</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:485
+#: apt-get.8.xml:499
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 "
@@ -1534,7 +1546,7 @@ msgstr ""
"<literal>APT::Get::Only-Source</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:496
+#: apt-get.8.xml:510
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</"
@@ -1545,7 +1557,7 @@ msgstr ""
"Only</literal>, e <literal>APT::Get::Tar-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:502
+#: apt-get.8.xml:516
msgid ""
"Only process architecture-dependent build-dependencies. Configuration Item: "
"<literal>APT::Get::Arch-Only</literal>."
@@ -1554,7 +1566,7 @@ msgstr ""
"de Configuração: <literal>APT::Get::Arch-Only</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:507
+#: apt-get.8.xml:521
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::"
@@ -1564,23 +1576,33 @@ msgstr ""
"é útil para ferramentas como o pbuilder. Item de Configuração: <literal>APT::"
"Get::AllowUnauthenticated</literal>."
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:527
+msgid ""
+"Show user friendly progress information in the terminal window when packages "
+"are installed, upgraded or removed. For a machine parsable version of this "
+"data see README.progress-reporting in the apt doc directory. Configuration "
+"Item: <literal>DpkgPM::Progress</literal> and <literal>Dpkg::Progress-Fancy</"
+"literal>."
+msgstr ""
+
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125
-#: apt.conf.5.xml:1167 apt_preferences.5.xml:698
+#: apt-get.8.xml:540 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127
+#: apt.conf.5.xml:1200 apt_preferences.5.xml:700
msgid "Files"
msgstr "Ficheiros"
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131
-#: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109
-#: apt.conf.5.xml:1173 apt_preferences.5.xml:705 sources.list.5.xml:252
-#: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63
-#: apt-ftparchive.1.xml:607
+#: apt-get.8.xml:550 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133
+#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111
+#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:258
+#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65
+#: apt-ftparchive.1.xml:609
msgid "See Also"
msgstr "Veja também"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:529
+#: apt-get.8.xml:551
msgid ""
"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@ -1591,14 +1613,14 @@ msgstr ""
"&guidesdir;, &apt-preferences;, o Howto do APT."
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:534 apt-cache.8.xml:355 apt-mark.8.xml:135
-#: apt-cdrom.8.xml:149 apt-config.8.xml:114 apt-extracttemplates.1.xml:74
-#: apt-sortpkgs.1.xml:67 apt-ftparchive.1.xml:611
+#: apt-get.8.xml:556 apt-cache.8.xml:357 apt-mark.8.xml:137
+#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76
+#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613
msgid "Diagnostics"
msgstr "Diagnóstico"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:535
+#: apt-get.8.xml:557
msgid ""
"<command>apt-get</command> returns zero on normal operation, decimal 100 on "
"error."
@@ -1607,12 +1629,12 @@ msgstr ""
"erro."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cache.8.xml:33
+#: apt-cache.8.xml:35
msgid "query the APT cache"
msgstr "pesquisa a cache do APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:39
+#: apt-cache.8.xml:41
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 "
@@ -1625,7 +1647,7 @@ msgstr ""
"a partir dos metadados do pacote."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:49
+#: apt-cache.8.xml:51
msgid ""
"<literal>gencaches</literal> creates APT's package cache. This is done "
"implicitly by all commands needing this cache if it is missing or outdated."
@@ -1635,14 +1657,14 @@ msgstr ""
"estiver em falta ou desactualizada."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:53 apt-cache.8.xml:142 apt-cache.8.xml:163
-#: apt-cache.8.xml:185 apt-cache.8.xml:190 apt-cache.8.xml:206
-#: apt-cache.8.xml:224 apt-cache.8.xml:236
+#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165
+#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208
+#: apt-cache.8.xml:226 apt-cache.8.xml:238
msgid "&synopsis-pkg;"
msgstr "&synopsis-pkg;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:54
+#: apt-cache.8.xml:56
msgid ""
"<literal>showpkg</literal> displays information about the packages listed on "
"the command line. Remaining arguments are package names. The available "
@@ -1666,7 +1688,7 @@ msgstr ""
"ao seguinte:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-cache.8.xml:66
+#: apt-cache.8.xml:68
#, no-wrap
msgid ""
"Package: libreadline2\n"
@@ -1692,7 +1714,7 @@ msgstr ""
"Fornecimentos Reversos: \n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:78
+#: apt-cache.8.xml:80
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, "
@@ -1711,7 +1733,7 @@ msgstr ""
"consultar o código fonte do apt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:87
+#: apt-cache.8.xml:89
msgid ""
"<literal>stats</literal> displays some statistics about the cache. No "
"further arguments are expected. Statistics reported are:"
@@ -1720,7 +1742,7 @@ msgstr ""
"são esperados mais argumentos. As estatísticas reportadas são:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:90
+#: apt-cache.8.xml:92
msgid ""
"<literal>Total package names</literal> is the number of package names found "
"in the cache."
@@ -1729,7 +1751,7 @@ msgstr ""
"encontrados na cache."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:94
+#: apt-cache.8.xml:96
msgid ""
"<literal>Normal packages</literal> is the number of regular, ordinary "
"package names; these are packages that bear a one-to-one correspondence "
@@ -1742,7 +1764,7 @@ msgstr ""
"dependências. A maioria dos pacotes caem nesta categoria."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:100
+#: apt-cache.8.xml:102
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 "
@@ -1759,7 +1781,7 @@ msgstr ""
"mas não existe um existe um pacote chamado \"mail-transport-agent\"."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:108
+#: apt-cache.8.xml:110
msgid ""
"<literal>Single virtual packages</literal> is the number of packages with "
"only one package providing a particular virtual package. For example, in the "
@@ -1772,7 +1794,7 @@ msgstr ""
"pacote, xless, disponibiliza \"X11-text-viewer\"."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:114
+#: apt-cache.8.xml:116
msgid ""
"<literal>Mixed virtual packages</literal> is the number of packages that "
"either provide a particular virtual package or have the virtual package name "
@@ -1785,7 +1807,7 @@ msgstr ""
"um pacote real, como também disponibilizado pelo pacote debconf-tiny."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:121
+#: apt-cache.8.xml:123
msgid ""
"<literal>Missing</literal> is the number of package names that were "
"referenced in a dependency but were not provided by any package. Missing "
@@ -1801,7 +1823,7 @@ msgstr ""
"declarações de Conflitos ou Breaks."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:128
+#: apt-cache.8.xml:130
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 "
@@ -1816,7 +1838,7 @@ msgstr ""
"consideravelmente maior que o número do total de nomes de pacotes."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:135
+#: apt-cache.8.xml:137
msgid ""
"<literal>Total dependencies</literal> is the number of dependency "
"relationships claimed by all of the packages in the cache."
@@ -1825,7 +1847,7 @@ msgstr ""
"dependências reivindicadas por todos os pacotes na cache."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:143
+#: apt-cache.8.xml:145
msgid ""
"<literal>showsrc</literal> displays all the source package records that "
"match the given package names. All versions are shown, as well as all "
@@ -1837,7 +1859,7 @@ msgstr ""
"pacote binário."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:149
+#: apt-cache.8.xml:151
msgid ""
"<literal>dump</literal> shows a short listing of every package in the cache. "
"It is primarily for debugging."
@@ -1846,7 +1868,7 @@ msgstr ""
"cache. É principalmente para depuração."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:154
+#: apt-cache.8.xml:156
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."
@@ -1856,7 +1878,7 @@ msgstr ""
"&dselect;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:159
+#: apt-cache.8.xml:161
msgid ""
"<literal>unmet</literal> displays a summary of all unmet dependencies in the "
"package cache."
@@ -1865,7 +1887,7 @@ msgstr ""
"insatisfeitas na cache do pacote."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:164
+#: apt-cache.8.xml:166
msgid ""
"<literal>show</literal> performs a function similar to <command>dpkg --print-"
"avail</command>; it displays the package records for the named packages."
@@ -1874,12 +1896,12 @@ msgstr ""
"print-avail</command>; mostra os registos do pacote para os pacotes nomeados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:169
+#: apt-cache.8.xml:171
msgid "&synopsis-regex;"
msgstr "&synopsis-regex;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:170
+#: apt-cache.8.xml:172
msgid ""
"<literal>search</literal> performs a full text search on all available "
"package lists for the POSIX regex pattern given, see &regex;. It searches "
@@ -1900,7 +1922,7 @@ msgstr ""
"então não há procura na descrição longa, apenas no nome do pacote."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:181
+#: apt-cache.8.xml:183
msgid ""
"Separate arguments can be used to specify multiple search patterns that are "
"and'ed together."
@@ -1909,7 +1931,7 @@ msgstr ""
"busca os quais são lidados em conjunto."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:186
+#: apt-cache.8.xml:188
msgid ""
"<literal>depends</literal> shows a listing of each dependency a package has "
"and all the possible other packages that can fulfill that dependency."
@@ -1919,7 +1941,7 @@ msgstr ""
"dependência."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:191
+#: apt-cache.8.xml:193
msgid ""
"<literal>rdepends</literal> shows a listing of each reverse dependency a "
"package has."
@@ -1928,12 +1950,12 @@ msgstr ""
"que um pacote tem."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:195
+#: apt-cache.8.xml:197
msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:196
+#: apt-cache.8.xml:198
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 "
@@ -1948,7 +1970,7 @@ msgstr ""
"opção <option>--generate</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:201
+#: apt-cache.8.xml:203
msgid ""
"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 "
@@ -1959,7 +1981,7 @@ msgstr ""
"também são listados na lista gerada."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:207
+#: apt-cache.8.xml:209
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."
@@ -1980,7 +2002,7 @@ msgstr ""
"defina a opção <literal>APT::Cache::GivenOnly</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:216
+#: apt-cache.8.xml:218
msgid ""
"The resulting nodes will have several shapes; normal packages are boxes, "
"pure virtual packages are triangles, mixed virtual packages are diamonds, "
@@ -1994,14 +2016,14 @@ msgstr ""
"dependências, linhas verdes são conflitos."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:221
+#: apt-cache.8.xml:223
msgid "Caution, dotty cannot graph larger sets of packages."
msgstr ""
"Atenção, o dotty não consegue fazer gráficos com grandes conjuntos de "
"pacotes."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:225
+#: apt-cache.8.xml:227
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>."
@@ -2011,12 +2033,12 @@ msgstr ""
"VCG</ulink>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-cache.8.xml:229
+#: apt-cache.8.xml:231
msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:230
+#: apt-cache.8.xml:232
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 "
@@ -2029,7 +2051,7 @@ msgstr ""
"acerca da selecção de prioridade do pacote nomeado."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:237
+#: apt-cache.8.xml:239
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 "
@@ -2048,7 +2070,7 @@ msgstr ""
"Architecture</literal>)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:253
+#: apt-cache.8.xml:255
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::"
@@ -2059,7 +2081,7 @@ msgstr ""
"<literal>Dir::Cache::pkgcache</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:259
+#: apt-cache.8.xml:261
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 "
@@ -2074,7 +2096,7 @@ msgstr ""
"pacote. Item de Configuração: <literal>Dir::Cache::srcpkgcache</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:267
+#: apt-cache.8.xml:269
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 "
@@ -2088,7 +2110,7 @@ msgstr ""
"Configuração: <literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:274
+#: apt-cache.8.xml:276
msgid ""
"Print only important dependencies; for use with <literal>unmet</literal> and "
"<literal>depends</literal>. Causes only Depends and Pre-Depends relations to "
@@ -2100,7 +2122,7 @@ msgstr ""
"Important</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:288
+#: apt-cache.8.xml:290
msgid ""
"Per default the <literal>depends</literal> and <literal>rdepends</literal> "
"print all dependencies. This can be tweaked with these flags which will omit "
@@ -2115,7 +2137,7 @@ msgstr ""
"replaceable></literal> ex. <literal>APT::Cache::ShowRecommends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:295
+#: apt-cache.8.xml:297
msgid ""
"Print full package records when searching. Configuration Item: "
"<literal>APT::Cache::ShowFull</literal>."
@@ -2124,7 +2146,7 @@ msgstr ""
"<literal>APT::Cache::ShowFull</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:300
+#: apt-cache.8.xml:302
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-"
@@ -2141,7 +2163,7 @@ msgstr ""
"Configuração: <literal>APT::Cache::AllVersions</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:309
+#: apt-cache.8.xml:311
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</"
@@ -2153,7 +2175,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:315
+#: apt-cache.8.xml:317
msgid ""
"Only search on the package names, not the long descriptions. Configuration "
"Item: <literal>APT::Cache::NamesOnly</literal>."
@@ -2162,7 +2184,7 @@ msgstr ""
"Configuração: <literal>APT::Cache::NamesOnly</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:320
+#: apt-cache.8.xml:322
msgid ""
"Make <literal>pkgnames</literal> print all names, including virtual packages "
"and missing dependencies. Configuration Item: <literal>APT::Cache::"
@@ -2173,7 +2195,7 @@ msgstr ""
"<literal>APT::Cache::AllNames</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:326
+#: apt-cache.8.xml:328
msgid ""
"Make <literal>depends</literal> and <literal>rdepends</literal> recursive so "
"that all packages mentioned are printed once. Configuration Item: "
@@ -2184,7 +2206,7 @@ msgstr ""
"Configuração <literal>APT::Cache::RecurseDepends</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:333
+#: apt-cache.8.xml:335
msgid ""
"Limit the output of <literal>depends</literal> and <literal>rdepends</"
"literal> to packages which are currently installed. Configuration Item: "
@@ -2195,12 +2217,12 @@ msgstr ""
"<literal>APT::Cache::Installed</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:351
+#: apt-cache.8.xml:353
msgid "&apt-conf;, &sources-list;, &apt-get;"
msgstr "&apt-conf;, &sources-list;, &apt-get;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:356
+#: apt-cache.8.xml:358
msgid ""
"<command>apt-cache</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -2209,12 +2231,12 @@ msgstr ""
"erro."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-key.8.xml:32
+#: apt-key.8.xml:34
msgid "APT key management utility"
msgstr "Utilitário de gestão de chaves do APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:39
+#: apt-key.8.xml:41
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 "
@@ -2225,12 +2247,12 @@ msgstr ""
"estas chaves serão considerados de confiança."
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:45
+#: apt-key.8.xml:47
msgid "Commands"
msgstr "Comandos"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:50
+#: apt-key.8.xml:52
msgid ""
"Add a new key to the list of trusted keys. The key is read from the "
"filename given with the parameter &synopsis-param-filename; or if the "
@@ -2241,32 +2263,32 @@ msgstr ""
"se o nome do ficheiro for <literal>-</literal> a partir da entrada standard."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:63
+#: apt-key.8.xml:65
msgid "Remove a key from the list of trusted keys."
msgstr "Remove uma chave da lista de chaves de confiança."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:74
+#: apt-key.8.xml:76
msgid "Output the key &synopsis-param-keyid; to standard output."
msgstr "Escreve o &synopsis-param-keyid; da chave na saída standard."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:85
+#: apt-key.8.xml:87
msgid "Output all trusted keys to standard output."
msgstr "Escreve todas as chaves de confiança na saída standard."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:96
+#: apt-key.8.xml:98
msgid "List trusted keys."
msgstr "Lista as chaves de confiança."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:107
+#: apt-key.8.xml:109
msgid "List fingerprints of trusted keys."
msgstr "Lista as fingerprints das chaves de confiança."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:118
+#: apt-key.8.xml:120
msgid ""
"Pass advanced options to gpg. With adv --recv-key you can download the "
"public key."
@@ -2275,13 +2297,12 @@ msgstr ""
"chave pública."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:130
+#: apt-key.8.xml:132
msgid ""
"Update the local keyring with the archive keyring and remove from the local "
"keyring the archive keys which are no longer valid. The archive keyring is "
"shipped in the <literal>archive-keyring</literal> package of your "
-"distribution, e.g. the &keyring-package; package in "
-"&keyring-distro;."
+"distribution, e.g. the &keyring-package; package in &keyring-distro;."
msgstr ""
"Actualiza o chaveiro local com o chaveiro do arquivo e remove do chaveiro "
"local as chaves de arquivo que já não são válidas. O chaveiro do arquivo é "
@@ -2289,7 +2310,7 @@ msgstr ""
"por exemplo o pacote &keyring-package; em &keyring-distro;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:144
+#: apt-key.8.xml:146
msgid ""
"Perform an update working similarly to the <command>update</command> command "
"above, but get the archive keyring from a URI instead and validate it "
@@ -2307,12 +2328,12 @@ msgstr ""
"lo."
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:160 apt-cdrom.8.xml:80
+#: apt-key.8.xml:162 apt-cdrom.8.xml:82
msgid "Options"
msgstr "Opções"
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:161
+#: apt-key.8.xml:163
msgid ""
"Note that options need to be defined before the commands described in the "
"previous section."
@@ -2321,7 +2342,7 @@ msgstr ""
"secção prévia."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:164
+#: apt-key.8.xml:166
msgid ""
"With this option it is possible to specify a particular keyring file the "
"command should operate on. The default is that a command is executed on the "
@@ -2338,49 +2359,48 @@ msgstr ""
"chaves são adicionadas a este."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:179
+#: apt-key.8.xml:181
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:180
+#: apt-key.8.xml:182
msgid "Local trust database of archive keys."
msgstr "Base de dados local de confiança de chaves de arquivos."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:183
+#: apt-key.8.xml:185
msgid "&keyring-filename;"
msgstr "&keyring-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:184
+#: apt-key.8.xml:186
msgid "Keyring of &keyring-distro; archive trusted keys."
msgstr "Chaveiro das chaves de confiança dos arquivos &keyring-distro;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:187
-msgid ""
-"&keyring-removed-filename;"
-msgstr ""
-"&keyring-removed-filename;"
+#: apt-key.8.xml:189
+msgid "&keyring-removed-filename;"
+msgstr "&keyring-removed-filename;"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:188
+#: apt-key.8.xml:190
msgid "Keyring of &keyring-distro; archive removed trusted keys."
-msgstr "Chaveiro das chaves de confiança removidas dos arquivos &keyring-distro;."
+msgstr ""
+"Chaveiro das chaves de confiança removidas dos arquivos &keyring-distro;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:197
+#: apt-key.8.xml:199
msgid "&apt-get;, &apt-secure;"
msgstr "&apt-get;, &apt-secure;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-mark.8.xml:33
+#: apt-mark.8.xml:35
msgid "mark/unmark a package as being automatically-installed"
msgstr "marca/desmarca um pacote como sendo instalado automaticamente"
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:39
+#: apt-mark.8.xml:41
msgid ""
"<command>apt-mark</command> will change whether a package has been marked as "
"being automatically installed."
@@ -2389,7 +2409,7 @@ msgstr ""
"sendo instalado automaticamente."
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:43
+#: apt-mark.8.xml:45
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 "
@@ -2405,7 +2425,7 @@ msgstr ""
"command> ou <command>aptitude</command> (exemplos)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:52
+#: apt-mark.8.xml:54
msgid ""
"<literal>auto</literal> is used to mark a package as being automatically "
"installed, which will cause the package to be removed when no more manually "
@@ -2416,7 +2436,7 @@ msgstr ""
"pacote instalado manualmente depender deste pacote."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:60
+#: apt-mark.8.xml:62
msgid ""
"<literal>manual</literal> is used to mark a package as being manually "
"installed, which will prevent the package from being automatically removed "
@@ -2427,7 +2447,7 @@ msgstr ""
"se nenhum outro pacote depender dele."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:68
+#: apt-mark.8.xml:70
msgid ""
"<literal>hold</literal> is used to mark a package as held back, which will "
"prevent the package from being automatically installed, upgraded or "
@@ -2442,7 +2462,7 @@ msgstr ""
"pela opção <option>--file</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:78
+#: apt-mark.8.xml:80
msgid ""
"<literal>unhold</literal> is used to cancel a previously set hold on a "
"package to allow all actions again."
@@ -2451,7 +2471,7 @@ msgstr ""
"definido num pacote para permitir de novo todas as acções."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:84
+#: apt-mark.8.xml:86
msgid ""
"<literal>showauto</literal> is used to print a list of automatically "
"installed packages with each package on a new line. All automatically "
@@ -2465,7 +2485,7 @@ msgstr ""
"automaticamente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:92
+#: apt-mark.8.xml:94
msgid ""
"<literal>showmanual</literal> can be used in the same way as "
"<literal>showauto</literal> except that it will print a list of manually "
@@ -2476,7 +2496,7 @@ msgstr ""
"instalados manualmente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:99
+#: apt-mark.8.xml:101
msgid ""
"<literal>showhold</literal> is used to print a list of packages on hold in "
"the same way as for the other show commands."
@@ -2485,7 +2505,7 @@ msgstr ""
"retenção do mesmo modo que os outros comandos show."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:115
+#: apt-mark.8.xml:117
msgid ""
"Read/Write package stats from the filename given with the parameter "
"&synopsis-param-filename; instead of from the default location, which is "
@@ -2498,7 +2518,7 @@ msgstr ""
"directório definido pelo Item de Configuração: <literal>Dir::State</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:136
+#: apt-mark.8.xml:138
msgid ""
"<command>apt-mark</command> returns zero on normal operation, non-zero on "
"error."
@@ -2507,12 +2527,12 @@ msgstr ""
"erro."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-secure.8.xml:47
+#: apt-secure.8.xml:49
msgid "Archive authentication support for APT"
msgstr "Suporte de autenticação de arquivos para o APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:52
+#: apt-secure.8.xml:54
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 "
@@ -2525,7 +2545,7 @@ msgstr ""
"não têm acesso à chave de assinatura do ficheiro Release."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:60
+#: apt-secure.8.xml:62
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 "
@@ -2541,7 +2561,7 @@ msgstr ""
"verificadas antes de descarregar pacotes delas."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:69
+#: apt-secure.8.xml:71
msgid ""
"The package frontends &apt-get;, &aptitude; and &synaptic; support this new "
"authentication feature."
@@ -2550,12 +2570,12 @@ msgstr ""
"nova funcionalidade de autenticação."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:74
+#: apt-secure.8.xml:76
msgid "Trusted archives"
msgstr "Arquivos de confiança"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:77
+#: apt-secure.8.xml:79
msgid ""
"The chain of trust from an apt archive to the end user is made up of several "
"steps. <command>apt-secure</command> is the last step in this chain; "
@@ -2572,7 +2592,7 @@ msgstr ""
"assegurar que a integridade do arquivo está correcta."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:85
+#: apt-secure.8.xml:87
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 "
@@ -2585,7 +2605,7 @@ msgstr ""
"verify e devscripts respectivamente)."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:92
+#: apt-secure.8.xml:94
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. In order to become "
@@ -2603,28 +2623,29 @@ msgstr ""
"para assegurar a identidade do dono da chave."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:102
+#: apt-secure.8.xml:104
msgid ""
"Once the uploaded package is verified and included in the archive, the "
"maintainer signature is stripped off, and checksums of the package are "
"computed and put in the Packages file. The checksums 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 for this &keyring-distro; release, and distributed "
-"alongside the packages and the Packages files on &keyring-distro; mirrors. The keys "
-"are in the &keyring-distro; archive keyring available in the &keyring-package; "
-"package."
+"then signed by the archive key for this &keyring-distro; release, and "
+"distributed alongside the packages and the Packages files on &keyring-"
+"distro; mirrors. The keys are in the &keyring-distro; archive keyring "
+"available in the &keyring-package; package."
msgstr ""
"Assim que o pacote submetido é verificado e incluído no arquivo, a "
"assinatura do responsável é despojada, são computados sumários de "
"verificação do pacote e colocado no ficheiro Packages. Os sumários de "
"verificação de todos os ficheiros Packages são então computados e colocados "
"no ficheiro Release. O ficheiro Release é então assinado pela chave de "
-"arquivo para este lançamento de &keyring-distro;, e distribuído juntamente com os "
-"pacotes e os ficheiros Packages em mirrors de &keyring-distro;. As chaves estão no "
-"chaveiro do arquivo &keyring-distro; no pacote &keyring-package;."
+"arquivo para este lançamento de &keyring-distro;, e distribuído juntamente "
+"com os pacotes e os ficheiros Packages em mirrors de &keyring-distro;. As "
+"chaves estão no chaveiro do arquivo &keyring-distro; no pacote &keyring-"
+"package;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:113
+#: apt-secure.8.xml:115
msgid ""
"End users can check the signature of the Release file, extract a checksum of "
"a package from it and compare it with the checksum of the package they "
@@ -2636,7 +2657,7 @@ msgstr ""
"confiar no APT que faz isto automaticamente."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:118
+#: apt-secure.8.xml:120
msgid ""
"Notice that this is distinct from checking signatures on a per package "
"basis. It is designed to prevent two possible attacks:"
@@ -2645,7 +2666,7 @@ msgstr ""
"desenhado para prevenir dois ataques possíveis:"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:123
+#: apt-secure.8.xml:125
msgid ""
"<literal>Network \"man in the middle\" attacks</literal>. Without signature "
"checking, malicious agents can introduce themselves into the package "
@@ -2660,7 +2681,7 @@ msgstr ""
"um servidor impostor (através de ataques de fraude de ARP ou DNS)."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:131
+#: apt-secure.8.xml:133
msgid ""
"<literal>Mirror network compromise</literal>. Without signature checking, a "
"malicious agent can compromise a mirror host and modify the files in it to "
@@ -2673,7 +2694,7 @@ msgstr ""
"descarregam pacotes a partir dessa máquina."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:138
+#: apt-secure.8.xml:140
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 "
@@ -2686,12 +2707,12 @@ msgstr ""
"mecanismo pode complementar uma assinatura por-pacote."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:144
+#: apt-secure.8.xml:146
msgid "User configuration"
msgstr "Configuração do utilizador"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:146
+#: apt-secure.8.xml:148
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 "
@@ -2705,7 +2726,7 @@ msgstr ""
"pacotes Debian."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:153
+#: apt-secure.8.xml:155
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 "
@@ -2722,12 +2743,12 @@ msgstr ""
"<filename>Release.gpg</filename> dos arquivos que você configurou."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:162
+#: apt-secure.8.xml:164
msgid "Archive configuration"
msgstr "Configuração de arquivos"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:164
+#: apt-secure.8.xml:166
msgid ""
"If you want to provide archive signatures in an archive under your "
"maintenance you have to:"
@@ -2736,7 +2757,7 @@ msgstr ""
"manutenção, você tem que:"
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:169
+#: apt-secure.8.xml:171
msgid ""
"<emphasis>Create a toplevel Release file</emphasis>, if it does not exist "
"already. You can do this by running <command>apt-ftparchive release</"
@@ -2747,7 +2768,7 @@ msgstr ""
"command> (disponibilizado no apt-utils)."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:174
+#: apt-secure.8.xml:176
msgid ""
"<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --"
"clearsign -o InRelease Release</command> and <command>gpg -abs -o Release."
@@ -2758,7 +2779,7 @@ msgstr ""
"gpg Release</command>."
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:178
+#: apt-secure.8.xml:180
msgid ""
"<emphasis>Publish the key fingerprint</emphasis>, that way your users will "
"know what key they need to import in order to authenticate the files in the "
@@ -2769,7 +2790,7 @@ msgstr ""
"autenticar os ficheiros no arquivo."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:185
+#: apt-secure.8.xml:187
msgid ""
"Whenever the contents of the archive change (new packages are added or "
"removed) the archive maintainer has to follow the first two steps outlined "
@@ -2780,7 +2801,7 @@ msgstr ""
"previamente delineados."
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:193
+#: apt-secure.8.xml:195
msgid ""
"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, "
"&debsign; &debsig-verify;, &gpg;"
@@ -2789,7 +2810,7 @@ msgstr ""
"&debsign; &debsig-verify;, &gpg;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:197
+#: apt-secure.8.xml:199
msgid ""
"For more background information you might want to review the <ulink url="
"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian "
@@ -2806,12 +2827,12 @@ msgstr ""
"ulink> de V. Alex Brennen."
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:210
+#: apt-secure.8.xml:212
msgid "Manpage Authors"
msgstr "Autores do manual"
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:212
+#: apt-secure.8.xml:214
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."
@@ -2820,12 +2841,12 @@ msgstr ""
"Jones, Colin Walters, Florian Weimer e Michael Vogt."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cdrom.8.xml:32
+#: apt-cdrom.8.xml:34
msgid "APT CD-ROM management utility"
msgstr "Utilitário de gestão de CD-ROM do APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:38
+#: apt-cdrom.8.xml:40
msgid ""
"<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of "
"available sources. <command>apt-cdrom</command> takes care of determining "
@@ -2838,7 +2859,7 @@ msgstr ""
"e verificar os ficheiros de índice."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:45
+#: apt-cdrom.8.xml:47
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 disc in a multi-CD set "
@@ -2850,7 +2871,7 @@ msgstr ""
"conta possíveis falhas."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:56
+#: apt-cdrom.8.xml:58
msgid ""
"<literal>add</literal> is used to add a new disc to the source list. It will "
"unmount the CD-ROM device, prompt for a disc to be inserted and then proceed "
@@ -2865,7 +2886,7 @@ msgstr ""
"lhe-à pedido um título descritivo."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:64
+#: apt-cdrom.8.xml:66
msgid ""
"APT uses a CD-ROM ID to track which disc is currently in the drive and "
"maintains a database of these IDs in <filename>&statedir;/cdroms.list</"
@@ -2876,7 +2897,7 @@ msgstr ""
"list</filename>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:72
+#: apt-cdrom.8.xml:74
msgid ""
"A debugging tool to report the identity of the current disc as well as the "
"stored file name"
@@ -2885,7 +2906,24 @@ msgstr ""
"assim como o nome de ficheiro armazenado"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:85
+#: apt-cdrom.8.xml:87
+#, fuzzy
+#| msgid ""
+#| "Mount point; specify the location to mount the CD-ROM. This mount point "
+#| "must be listed in <filename>/etc/fstab</filename> and properly "
+#| "configured. Configuration Item: <literal>Acquire::cdrom::mount</literal>."
+msgid ""
+"Do not try to auto-detect the CD-ROM path. Usually combined with the "
+"<option>--cdrom</option> option. Configuration Item: <literal>Acquire::"
+"cdrom::AutoDetect</literal>."
+msgstr ""
+"Ponto de Montagem; especifica a localização para montar o cdrom. Este ponto "
+"de montagem deve estar listado em <filename>/etc/fstab</filename> e "
+"configurado apropriadamente. Item de configuração: <literal>Acquire::cdrom::"
+"mount</literal>."
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-cdrom.8.xml:95
msgid ""
"Mount point; specify the location to mount the CD-ROM. This mount point must "
"be listed in <filename>/etc/fstab</filename> and properly configured. "
@@ -2897,7 +2935,7 @@ msgstr ""
"mount</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:94
+#: apt-cdrom.8.xml:104
msgid ""
"Rename a disc; change the label of a disc or override the disc's given "
"label. This option will cause <command>apt-cdrom</command> to prompt for a "
@@ -2909,7 +2947,7 @@ msgstr ""
"CDROM::Rename</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:103
+#: 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::"
@@ -2920,7 +2958,7 @@ msgstr ""
"NoMount</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:111
+#: 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 "
@@ -2933,7 +2971,7 @@ msgstr ""
"configuração: <literal>APT::CDROM::Fast</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:121
+#: 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 "
@@ -2944,7 +2982,7 @@ msgstr ""
"estranhos. Demora muito mais tempo a sondar o CD mas irá apanhá-los a todos."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:132
+#: 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: "
@@ -2955,12 +2993,12 @@ msgstr ""
"configuração: <literal>APT::CDROM::NoAct</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:145
+#: 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:150
+#: apt-cdrom.8.xml:160
msgid ""
"<command>apt-cdrom</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -2969,12 +3007,12 @@ msgstr ""
"erro."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-config.8.xml:33
+#: apt-config.8.xml:35
msgid "APT Configuration Query program"
msgstr "Programa de Consulta de Configuração do APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:39
+#: apt-config.8.xml:41
msgid ""
"<command>apt-config</command> is an internal program used by various "
"portions of the APT suite to provide consistent configurability. It accesses "
@@ -2987,7 +3025,7 @@ msgstr ""
"um modo que é fácil de usar para aplicações em script."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:51
+#: apt-config.8.xml:53
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 "
@@ -3002,7 +3040,7 @@ msgstr ""
"script shell deverá ser usado como se segue:"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-config.8.xml:59
+#: apt-config.8.xml:61
#, no-wrap
msgid ""
"OPTS=\"-f\"\n"
@@ -3014,7 +3052,7 @@ msgstr ""
"eval $RES\n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:64
+#: apt-config.8.xml:66
msgid ""
"This will set the shell environment variable $OPTS to the value of MyApp::"
"options with a default of <option>-f</option>."
@@ -3023,7 +3061,7 @@ msgstr ""
"options com uma predefinição de <option>-f</option>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:68
+#: apt-config.8.xml:70
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 "
@@ -3035,12 +3073,12 @@ msgstr ""
"verificado internamente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:77
+#: apt-config.8.xml:79
msgid "Just show the contents of the configuration space."
msgstr "Apenas mostra o conteúdo do espaço de configuração."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:90
+#: apt-config.8.xml:92
msgid ""
"Include options which have an empty value. This is the default, so use --no-"
"empty to remove them from the output."
@@ -3049,12 +3087,12 @@ msgstr ""
"empty para removê-las dos resultados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-config.8.xml:95
+#: apt-config.8.xml:97
msgid "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
msgstr "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:96
+#: apt-config.8.xml:98
msgid ""
"Defines the output of each config option. &percnt;t will be replaced with "
"its individual name, &percnt;f with its full hierarchical name and &percnt;v "
@@ -3072,13 +3110,13 @@ msgstr ""
"pode ser escrito ao usar &percnt;&percnt;."
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:110 apt-extracttemplates.1.xml:71 apt-sortpkgs.1.xml:64
-#: apt-ftparchive.1.xml:608
+#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66
+#: apt-ftparchive.1.xml:610
msgid "&apt-conf;"
msgstr "&apt-conf;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:115
+#: apt-config.8.xml:117
msgid ""
"<command>apt-config</command> returns zero on normal operation, decimal 100 "
"on error."
@@ -3087,27 +3125,27 @@ msgstr ""
"em erro."
#. type: Content of: <refentry><refentryinfo><author><contrib>
-#: apt.conf.5.xml:20
+#: apt.conf.5.xml:22
msgid "Initial documentation of Debug::*."
msgstr "Documentação inicial do Debug::*."
#. type: Content of: <refentry><refentryinfo><author><email>
-#: apt.conf.5.xml:21
+#: apt.conf.5.xml:23
msgid "dburrows@debian.org"
msgstr "dburrows@debian.org"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt.conf.5.xml:31 apt_preferences.5.xml:25 sources.list.5.xml:26
+#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28
msgid "5"
msgstr "5"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt.conf.5.xml:38
+#: apt.conf.5.xml:40
msgid "Configuration file for APT"
msgstr "Ficheiro de configuração para o APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:42
+#: apt.conf.5.xml:44
msgid ""
"<filename>/etc/apt/apt.conf</filename> is the main configuration file shared "
"by all the tools in the APT suite of tools, though it is by no means the "
@@ -3121,7 +3159,7 @@ msgstr ""
"para disponibilizar um ambiente uniforme."
#. type: Content of: <refentry><refsect1><orderedlist><para>
-#: apt.conf.5.xml:48
+#: apt.conf.5.xml:50
msgid ""
"When an APT tool starts up it will read the configuration files in the "
"following order:"
@@ -3130,7 +3168,7 @@ msgstr ""
"seguinte ordem:"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:50
+#: apt.conf.5.xml:52
msgid ""
"the file specified by the <envar>APT_CONFIG</envar> environment variable (if "
"any)"
@@ -3139,7 +3177,7 @@ msgstr ""
"(se existir)"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:52
+#: apt.conf.5.xml:54
msgid ""
"all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
"order which have either no or \"<literal>conf</literal>\" as filename "
@@ -3158,7 +3196,7 @@ msgstr ""
"literal> - que então nesse caso será ignorado em silêncio."
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:59
+#: apt.conf.5.xml:61
msgid ""
"the main configuration file specified by <literal>Dir::Etc::main</literal>"
msgstr ""
@@ -3166,7 +3204,7 @@ msgstr ""
"main</literal>"
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:61
+#: apt.conf.5.xml:63
msgid ""
"the command line options are applied to override the configuration "
"directives or to load even more configuration files."
@@ -3175,12 +3213,12 @@ msgstr ""
"configuração ou para carregar mais ficheiros de configuração."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:65
+#: apt.conf.5.xml:67
msgid "Syntax"
msgstr "Sintaxe"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:66
+#: apt.conf.5.xml:68
msgid ""
"The configuration file is organized in a tree with options organized into "
"functional groups. Option specification is given with a double colon "
@@ -3195,7 +3233,7 @@ msgstr ""
"ferramenta Get. A opções não herdam dos seus grupos parentes."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:72
+#: apt.conf.5.xml:74
msgid ""
"Syntactically the configuration language is modeled after what the ISC tools "
"such as bind and dhcp use. Lines starting with <literal>//</literal> are "
@@ -3220,7 +3258,7 @@ msgstr ""
"\"/-:._+\". Um novo scope pode ser aberto com chavetas, assim:"
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:85
+#: apt.conf.5.xml:87
#, no-wrap
msgid ""
"APT {\n"
@@ -3238,7 +3276,7 @@ msgstr ""
"};\n"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:93
+#: apt.conf.5.xml:95
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 "
@@ -3250,13 +3288,13 @@ msgstr ""
"por um ponto e vírgula (;)."
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:98
+#: apt.conf.5.xml:100
#, 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:101
+#: apt.conf.5.xml:103
msgid ""
"In general the sample configuration file &configureindex; is a good guide "
"for how it should look."
@@ -3265,7 +3303,7 @@ msgstr ""
"guia de como deve ficar."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:104
+#: apt.conf.5.xml:106
msgid ""
"Case is not significant in names of configuration items, so in the previous "
"example you could use <literal>dpkg::pre-install-pkgs</literal>."
@@ -3275,7 +3313,7 @@ msgstr ""
"pre-install-pkgs</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:107
+#: apt.conf.5.xml:109
msgid ""
"Names for the configuration items are optional if a list is defined as can "
"be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If "
@@ -3291,7 +3329,7 @@ msgstr ""
"opção."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:112
+#: apt.conf.5.xml:114
msgid ""
"Two special commands are defined: <literal>#include</literal> (which is "
"deprecated and not supported by alternative implementations) and "
@@ -3311,7 +3349,7 @@ msgstr ""
"acabar com um 'ponto e vírgula' (;) .)"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:122
+#: apt.conf.5.xml:124
msgid ""
"The <literal>#clear</literal> command is the only way to delete a list or a "
"complete scope. Reopening a scope (or using the syntax described below with "
@@ -3327,7 +3365,7 @@ msgstr ""
"sobrepostos, apenas limpos."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:130
+#: apt.conf.5.xml:132
msgid ""
"All of the APT tools take an -o option which allows an arbitrary "
"configuration directive to be specified on the command line. The syntax is a "
@@ -3346,7 +3384,7 @@ msgstr ""
"ser usada na linha de comandos.)"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:138
+#: apt.conf.5.xml:140
msgid ""
"Note that appending items to a list using <literal>::</literal> only works "
"for one item per line, and that you should not use it in combination with "
@@ -3376,12 +3414,12 @@ msgstr ""
"explicitamente delas."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:153
+#: apt.conf.5.xml:155
msgid "The APT Group"
msgstr "O Grupo APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:154
+#: apt.conf.5.xml:156
msgid ""
"This group of options controls general APT behavior as well as holding the "
"options for all of the tools."
@@ -3390,7 +3428,7 @@ msgstr ""
"as opções para todas as ferramentas."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:159
+#: apt.conf.5.xml:161
msgid ""
"System Architecture; sets the architecture to use when fetching files and "
"parsing package lists. The internal default is the architecture apt was "
@@ -3401,7 +3439,7 @@ msgstr ""
"qual o APT foi compilado."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:166
+#: apt.conf.5.xml:168
msgid ""
"All Architectures the system supports. For instance, CPUs implementing the "
"<literal>amd64</literal> (also called <literal>x86-64</literal>) "
@@ -3423,7 +3461,7 @@ msgstr ""
"<command>dpkg --add-architecture</command>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:179
+#: apt.conf.5.xml:181
msgid ""
"Default release to install packages from if more than one version is "
"available. Contains release name, codename or release version. Examples: "
@@ -3436,7 +3474,7 @@ msgstr ""
"'&testing-codename;', '4.0', '5.0*'. Veja também &apt-preferences;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:185
+#: apt.conf.5.xml:187
msgid ""
"Ignore held packages; this global option causes the problem resolver to "
"ignore held packages in its decision making."
@@ -3445,7 +3483,7 @@ msgstr ""
"os pacotes segurados sejam ignorados na sua decisão de marcação."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:190
+#: apt.conf.5.xml:192
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 "
@@ -3459,7 +3497,7 @@ msgstr ""
"directo de os reinstalar."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:198
+#: apt.conf.5.xml:200
msgid ""
"Defaults to on, which will cause APT to install essential and important "
"packages as soon as possible in an install/upgrade operation, in order to "
@@ -3486,7 +3524,7 @@ msgstr ""
"de A não está mais satisfeita."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:210
+#: apt.conf.5.xml:212
msgid ""
"The immediate configuration marker is also applied in the potentially "
"problematic case of circular dependencies, since a dependency with the "
@@ -3515,7 +3553,7 @@ msgstr ""
"que pode ajudar a prevenir."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:223
+#: apt.conf.5.xml:225
msgid ""
"Before a big operation like <literal>dist-upgrade</literal> is run with this "
"option disabled you should try to explicitly <literal>install</literal> the "
@@ -3532,7 +3570,7 @@ msgstr ""
"eles possa trabalhar em melhorar ou corrigir o processo de actualização."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:234
+#: apt.conf.5.xml:236
msgid ""
"Never enable this option unless you <emphasis>really</emphasis> know what "
"you are doing. It permits APT to temporarily remove an essential package to "
@@ -3553,7 +3591,7 @@ msgstr ""
"command> ou nada de que esses pacotes dependam."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:246
+#: apt.conf.5.xml:248
msgid ""
"APT uses since version 0.7.26 a resizable memory mapped cache file to store "
"the available information. <literal>Cache-Start</literal> acts as a hint of "
@@ -3590,13 +3628,13 @@ msgstr ""
"da cache é desactivado."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:262
+#: apt.conf.5.xml:264
msgid "Defines which packages are considered essential build dependencies."
msgstr ""
"Define quais pacotes são considerados dependências essenciais de compilação."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:266
+#: apt.conf.5.xml:268
msgid ""
"The Get subsection controls the &apt-get; tool; please see its documentation "
"for more information about the options here."
@@ -3605,7 +3643,7 @@ msgstr ""
"documentação para mais informação acerca das opções daqui."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:271
+#: apt.conf.5.xml:273
msgid ""
"The Cache subsection controls the &apt-cache; tool; please see its "
"documentation for more information about the options here."
@@ -3614,7 +3652,7 @@ msgstr ""
"documentação para mais informação acerca das opções daqui."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:276
+#: apt.conf.5.xml:278
msgid ""
"The CDROM subsection controls the &apt-cdrom; tool; please see its "
"documentation for more information about the options here."
@@ -3623,12 +3661,12 @@ msgstr ""
"documentação para mais informação acerca das opções de aqui."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:282
+#: apt.conf.5.xml:284
msgid "The Acquire Group"
msgstr "O Grupo Acquire"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:283
+#: apt.conf.5.xml:285
msgid ""
"The <literal>Acquire</literal> group of options controls the download of "
"packages as well as the various \"acquire methods\" responsible for the "
@@ -3639,7 +3677,7 @@ msgstr ""
"descarga (veja também &sources-list;)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:290
+#: apt.conf.5.xml:292
msgid ""
"Security related option defaulting to true, as giving a Release file's "
"validation an expiration date prevents replay attacks over a long timescale, "
@@ -3661,7 +3699,7 @@ msgstr ""
"seguinte."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:303
+#: apt.conf.5.xml:305
msgid ""
"Maximum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3681,7 +3719,7 @@ msgstr ""
"nome da opção."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:315
+#: apt.conf.5.xml:317
msgid ""
"Minimum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -3701,7 +3739,7 @@ msgstr ""
"arquivo ao nome da opção."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:327
+#: apt.conf.5.xml:329
msgid ""
"Try to download deltas called <literal>PDiffs</literal> for indexes (like "
"<filename>Packages</filename> files) instead of downloading whole ones. True "
@@ -3712,7 +3750,7 @@ msgstr ""
"por inteiro. Verdadeiro por predefinição."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:330
+#: apt.conf.5.xml:332
msgid ""
"Two sub-options to limit the use of PDiffs are also available: "
"<literal>FileLimit</literal> can be used to specify a maximum number of "
@@ -3730,7 +3768,7 @@ msgstr ""
"completo em vez das patches."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:340
+#: apt.conf.5.xml:342
msgid ""
"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
"literal> or <literal>access</literal> which determines how APT parallelizes "
@@ -3745,7 +3783,7 @@ msgstr ""
"aberta uma ligação por tipo de URI."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:348
+#: apt.conf.5.xml:350
msgid ""
"Number of retries to perform. If this is non-zero APT will retry failed "
"files the given number of times."
@@ -3754,7 +3792,7 @@ msgstr ""
"tentar, no número fornecido de vezes, obter ficheiros falhados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:353
+#: apt.conf.5.xml:355
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."
@@ -3764,7 +3802,7 @@ msgstr ""
"A predefinição é verdadeiro."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:358
+#: apt.conf.5.xml:360
msgid ""
"<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. "
"It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</"
@@ -3783,7 +3821,7 @@ msgstr ""
"variável de ambiente <envar>http_proxy</envar>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:366
+#: apt.conf.5.xml:368
msgid ""
"Three settings are provided for cache control with HTTP/1.1 compliant proxy "
"caches. <literal>No-Cache</literal> tells the proxy not to use its cached "
@@ -3803,7 +3841,7 @@ msgstr ""
"(grandes) ficheiros .deb."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:376 apt.conf.5.xml:448
+#: apt.conf.5.xml:378 apt.conf.5.xml:466
msgid ""
"The option <literal>timeout</literal> sets the timeout timer used by the "
"method; this value applies to the connection as well as the data timeout."
@@ -3813,7 +3851,7 @@ msgstr ""
"dados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:379
+#: apt.conf.5.xml:381
msgid ""
"The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to "
"enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e."
@@ -3832,7 +3870,7 @@ msgstr ""
"web e proxies que escolheram não respeitar a especificação HTTP/1.1."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:386
+#: apt.conf.5.xml:388
msgid ""
"<literal>Acquire::http::AllowRedirect</literal> controls whether APT will "
"follow redirects, which is enabled by default."
@@ -3841,13 +3879,20 @@ msgstr ""
"os redireccionamentos, o que está activo por predefinição."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:389
+#: apt.conf.5.xml:391
+#, fuzzy
+#| msgid ""
+#| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
+#| "literal> which accepts integer values in kilobytes. The default value is "
+#| "0 which deactivates the limit and tries to use all available bandwidth "
+#| "(note that this option implicitly disables downloading from multiple "
+#| "servers at the same time.)"
msgid ""
"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
-"literal> which accepts integer values in kilobytes. The default value is 0 "
-"which deactivates the limit and tries to use all available bandwidth (note "
-"that this option implicitly disables downloading from multiple servers at "
-"the same time.)"
+"literal> which accepts integer values in kilobytes per second. The default "
+"value is 0 which deactivates the limit and tries to use all available "
+"bandwidth. Note that this option implicitly disables downloading from "
+"multiple servers at the same time."
msgstr ""
"A largura de banda usada pode ser limitada com <literal>Acquire::http::Dl-"
"Limit</literal> que aceita valores inteiros em kilobytes. O valor "
@@ -3856,7 +3901,7 @@ msgstr ""
"de múltiplos servidores ao mesmo tempo.)"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:394
+#: apt.conf.5.xml:398
msgid ""
"<literal>Acquire::http::User-Agent</literal> can be used to set a different "
"User-Agent for the http download method as some proxies allow access for "
@@ -3870,6 +3915,20 @@ msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
#: apt.conf.5.xml:402
msgid ""
+"<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify "
+"an external command to discover the http proxy to use. Apt expects the "
+"command to output the proxy on stdout in the style <literal>http://proxy:"
+"port/</literal>. This will override the generic <literal>Acquire::http::"
+"Proxy</literal> but not any specific host proxy configuration set via "
+"<literal>Acquire::http::Proxy::$HOST</literal>. See the &squid-deb-proxy-"
+"client; package for an example implementation that uses avahi. This option "
+"takes precedence over the legacy option name <literal>ProxyAutoDetect</"
+"literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:420
+msgid ""
"The <literal>Cache-control</literal>, <literal>Timeout</literal>, "
"<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and "
"<literal>proxy</literal> options work for HTTPS URIs in the same way as for "
@@ -3885,7 +3944,7 @@ msgstr ""
"literal> ainda não é suportada."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:410
+#: apt.conf.5.xml:428
msgid ""
"<literal>CaInfo</literal> suboption specifies place of file that holds info "
"about trusted certificates. <literal>&lt;host&gt;::CaInfo</literal> is the "
@@ -3924,7 +3983,7 @@ msgstr ""
"host&gt;::SslForceVersion</literal> é a opção 'por máquina' correspondente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:431
+#: apt.conf.5.xml:449
msgid ""
"<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. "
"It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</"
@@ -3958,7 +4017,7 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:451
+#: apt.conf.5.xml:469
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, "
@@ -3974,7 +4033,7 @@ msgstr ""
"específica (veja a amostra de ficheiro de configuração para exemplos)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:458
+#: apt.conf.5.xml:476
msgid ""
"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
"envar> environment variable to an HTTP URL - see the discussion of the http "
@@ -3988,7 +4047,7 @@ msgstr ""
"eficiência."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:463
+#: apt.conf.5.xml:481
msgid ""
"The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@ -4003,13 +4062,13 @@ msgstr ""
"ligações IPv4. Note que a maioria dos servidores FTP não suporta RFC2428."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:477
+#: apt.conf.5.xml:495
#, no-wrap
msgid "/cdrom/::Mount \"foo\";"
msgstr "/cdrom/::Mount \"foo\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:472
+#: apt.conf.5.xml:490
msgid ""
"For URIs using the <literal>cdrom</literal> method, the only configurable "
"option is the mount point, <literal>cdrom::Mount</literal>, which must be "
@@ -4030,7 +4089,7 @@ msgstr ""
"barra final. Comandos para desmontar podem ser especificados usando o UMount."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:485
+#: apt.conf.5.xml:503
msgid ""
"For GPGV URIs the only configurable option is <literal>gpgv::Options</"
"literal>, which passes additional parameters to gpgv."
@@ -4039,13 +4098,13 @@ msgstr ""
"literal>, a qual passa parâmetros adicionais ao gpgv."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:496
+#: apt.conf.5.xml:514
#, no-wrap
msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
msgstr "Acquire::CompressionTypes::<replaceable>Extensão de Ficheiro</replaceable> \"<replaceable>Nome de método</replaceable>\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:491
+#: apt.conf.5.xml:509
msgid ""
"List of compression types which are understood by the acquire methods. "
"Files like <filename>Packages</filename> can be available in various "
@@ -4064,19 +4123,19 @@ msgstr ""
"alterado. A sintaxe para isto é: <placeholder type=\"synopsis\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:501
+#: apt.conf.5.xml:519
#, no-wrap
msgid "Acquire::CompressionTypes::Order:: \"gz\";"
msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:504
+#: apt.conf.5.xml:522
#, no-wrap
msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:497
+#: apt.conf.5.xml:515
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 "
@@ -4108,13 +4167,13 @@ msgstr ""
"automaticamente."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:511
+#: apt.conf.5.xml:529
#, no-wrap
msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:506
+#: apt.conf.5.xml:524
msgid ""
"Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></"
"literal> will be checked at run time. If this option has been set, the "
@@ -4140,7 +4199,7 @@ msgstr ""
"prefixar a lista com este tipo."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:516
+#: apt.conf.5.xml:534
msgid ""
"The special type <literal>uncompressed</literal> can be used to give "
"uncompressed files a preference, but note that most archives don't provide "
@@ -4152,7 +4211,7 @@ msgstr ""
"maioritariamente apenas para mirrors locais."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:523
+#: apt.conf.5.xml:541
msgid ""
"When downloading <literal>gzip</literal> compressed indexes (Packages, "
"Sources, or Translations), keep them gzip compressed locally instead of "
@@ -4165,7 +4224,7 @@ msgstr ""
"CPU quando constrói as caches de pacotes locais. Falso por predefinição."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:531
+#: apt.conf.5.xml:549
msgid ""
"The Languages subsection controls which <filename>Translation</filename> "
"files are downloaded and in which order APT tries to display the description-"
@@ -4185,13 +4244,13 @@ msgstr ""
"especialmenteraros."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting>
-#: apt.conf.5.xml:548
+#: apt.conf.5.xml:566
#, no-wrap
msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:536
+#: apt.conf.5.xml:554
msgid ""
"The default list includes \"environment\" and \"en\". "
"\"<literal>environment</literal>\" has a special meaning here: it will be "
@@ -4230,7 +4289,7 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:549
+#: apt.conf.5.xml:567
msgid ""
"Note: To prevent problems resulting from APT being executed in different "
"environments (e.g. by different users or by other programs) all Translation "
@@ -4244,22 +4303,22 @@ msgstr ""
"literal>\" implícito)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:558
+#: apt.conf.5.xml:576
msgid "When downloading, force to use only the IPv4 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:564
+#: apt.conf.5.xml:582
msgid "When downloading, force to use only the IPv6 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:571
+#: apt.conf.5.xml:589
msgid "Directories"
msgstr "Directórios"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:573
+#: apt.conf.5.xml:591
msgid ""
"The <literal>Dir::State</literal> section has directories that pertain to "
"local state information. <literal>lists</literal> is the directory to place "
@@ -4278,7 +4337,7 @@ msgstr ""
"items que não começam com <filename>/</filename> ou <filename>./</filename>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:580
+#: apt.conf.5.xml:598
msgid ""
"<literal>Dir::Cache</literal> contains locations pertaining to local cache "
"information, such as the two package caches <literal>srcpkgcache</literal> "
@@ -4300,7 +4359,7 @@ msgstr ""
"literal>"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:589
+#: apt.conf.5.xml:607
msgid ""
"<literal>Dir::Etc</literal> contains the location of configuration files, "
"<literal>sourcelist</literal> gives the location of the sourcelist and "
@@ -4315,7 +4374,7 @@ msgstr ""
"ficheiro de configuração especificado por <envar>APT_CONFIG</envar>)."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:595
+#: apt.conf.5.xml:613
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 "
@@ -4326,7 +4385,7 @@ msgstr ""
"estar feito então é carregado o ficheiro de configuração principal."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:599
+#: apt.conf.5.xml:617
msgid ""
"Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
"Bin::Methods</literal> specifies the location of the method handlers and "
@@ -4344,7 +4403,7 @@ msgstr ""
"respectivos programas."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:607
+#: apt.conf.5.xml:625
msgid ""
"The configuration item <literal>RootDir</literal> has a special meaning. If "
"set, all paths in <literal>Dir::</literal> will be relative to "
@@ -4365,7 +4424,7 @@ msgstr ""
"procurado em <filename>/tmp/staging/var/lib/dpkg/status</filename>."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:620
+#: apt.conf.5.xml:638
msgid ""
"The <literal>Ignore-Files-Silently</literal> list can be used to specify "
"which files APT should silently ignore while parsing the files in the "
@@ -4383,12 +4442,12 @@ msgstr ""
"expressão regular."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:629
+#: apt.conf.5.xml:647
msgid "APT in DSelect"
msgstr "APT em DSelect"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:631
+#: apt.conf.5.xml:649
msgid ""
"When APT is used as a &dselect; method several configuration directives "
"control the default behavior. These are in the <literal>DSelect</literal> "
@@ -4399,7 +4458,7 @@ msgstr ""
"<literal>DSelect</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:636
+#: apt.conf.5.xml:654
msgid ""
"Cache Clean mode; this value may be one of <literal>always</literal>, "
"<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</"
@@ -4421,7 +4480,7 @@ msgstr ""
"pacotes."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:650
+#: apt.conf.5.xml:668
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the install phase."
@@ -4430,7 +4489,7 @@ msgstr ""
"comandos quando é corrido para a fase de instalação."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:655
+#: apt.conf.5.xml:673
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the update phase."
@@ -4439,7 +4498,7 @@ msgstr ""
"comandos quando é executado para a fase de actualização."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:660
+#: apt.conf.5.xml:678
msgid ""
"If true the [U]pdate operation in &dselect; will always prompt to continue. "
"The default is to prompt only on error."
@@ -4448,12 +4507,12 @@ msgstr ""
"continuar. A predefinição é avisar apenas em caso de erro."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:666
+#: apt.conf.5.xml:684
msgid "How APT calls &dpkg;"
msgstr "Como o APT chama o &dpkg;"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:667
+#: apt.conf.5.xml:685
msgid ""
"Several configuration directives control how APT invokes &dpkg;. These are "
"in the <literal>DPkg</literal> section."
@@ -4462,7 +4521,7 @@ msgstr ""
"&dpkg;. Estas estão na secção <literal>DPkg</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:672
+#: apt.conf.5.xml:690
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 "
@@ -4473,7 +4532,7 @@ msgstr ""
"um argumento único ao &dpkg;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:678
+#: apt.conf.5.xml:696
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 "
@@ -4486,13 +4545,21 @@ msgstr ""
"bin/sh</filename>, caso algum deles falhe, o APT irá abortar."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:685
+#: apt.conf.5.xml:703
+#, fuzzy
+#| msgid ""
+#| "This is a list of shell commands to run before invoking &dpkg;. Like "
+#| "<literal>options</literal> this must be specified in list notation. The "
+#| "commands are invoked in order using <filename>/bin/sh</filename>; should "
+#| "any fail APT will abort. APT will pass the filenames of all .deb files it "
+#| "is going to install to the commands, one per line on standard input."
msgid ""
"This is a list of shell commands to run before invoking &dpkg;. Like "
"<literal>options</literal> this must be specified in list notation. The "
"commands are invoked in order using <filename>/bin/sh</filename>; should any "
"fail APT will abort. APT will pass the filenames of all .deb files it is "
-"going to install to the commands, one per line on standard input."
+"going to install to the commands, one per line on the requested file "
+"descriptor, defaulting to standard input."
msgstr ""
"Isto é uma lista de comandos shell para executar antes de invocar o &dpkg;. "
"Tal como as <literal>opções</literal> isto tem que ser especificado em "
@@ -4502,13 +4569,19 @@ msgstr ""
"instalar, um por cada linha na entrada standard."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:691
+#: apt.conf.5.xml:710
+#, fuzzy
+#| msgid ""
+#| "Version 2 of this protocol dumps more information, including the protocol "
+#| "version, the APT configuration space and the packages, files and versions "
+#| "being changed. Version 2 is enabled by setting <literal>DPkg::Tools::"
+#| "options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command "
+#| "given to <literal>Pre-Install-Pkgs</literal>."
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 3 adds the architecture and <literal>MultiArch</"
+"literal> flag to each version being dumped."
msgstr ""
"A versão 2 deste protocolo despeja mais informação, incluindo a versão de "
"protocolo, o espaço de configuração do APT e os pacotes, ficheiros e versões "
@@ -4517,7 +4590,29 @@ msgstr ""
"dado ao <literal>Pre-Install-Pkgs</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:699
+#: apt.conf.5.xml:715
+msgid ""
+"The version of the protocol to be used for the command "
+"<literal><replaceable>cmd</replaceable></literal> can be chosen by setting "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::Version</"
+"literal> accordingly, the default being version 1. If APT isn't supporting "
+"the requested version it will send the information in the highest version it "
+"has support for instead."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:722
+msgid ""
+"The file descriptor to be used to send the information can be requested with "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</"
+"literal> which defaults to <literal>0</literal> for standard input and is "
+"available since version 0.9.11. Support for the option can be detected by "
+"looking for the environment variable <envar>APT_HOOK_INFO_FD</envar> which "
+"contains the number of the used file descriptor as a confirmation."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:732
msgid ""
"APT chdirs to this directory before invoking &dpkg;, the default is "
"<filename>/</filename>."
@@ -4526,7 +4621,7 @@ msgstr ""
"predefinição é <filename>/</filename>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:704
+#: apt.conf.5.xml:737
msgid ""
"These options are passed to &dpkg-buildpackage; when compiling packages; the "
"default is to disable signing and produce all binaries."
@@ -4535,12 +4630,12 @@ msgstr ""
"predefinição é desactivar a assinatura e produzir todos os binários."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt.conf.5.xml:709
+#: apt.conf.5.xml:742
msgid "dpkg trigger usage (and related options)"
msgstr "Utilização trigger do dpkg (e opções relacionadas)"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:710
+#: apt.conf.5.xml:743
msgid ""
"APT can call &dpkg; in such a way as to let it make aggressive use of "
"triggers over multiple calls of &dpkg;. Without further options &dpkg; will "
@@ -4566,7 +4661,7 @@ msgstr ""
"100% enquanto na realidade está a configurar todos os pacotes."
#. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
-#: apt.conf.5.xml:725
+#: apt.conf.5.xml:758
#, no-wrap
msgid ""
"DPkg::NoTriggers \"true\";\n"
@@ -4580,7 +4675,7 @@ msgstr ""
"DPkg::TriggersPending \"true\";"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:719
+#: apt.conf.5.xml:752
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 "
@@ -4604,7 +4699,7 @@ msgstr ""
"\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:732
+#: apt.conf.5.xml:765
msgid ""
"Add the no triggers flag to all &dpkg; calls (except the ConfigurePending "
"call). See &dpkg; if you are interested in what this actually means. In "
@@ -4626,7 +4721,7 @@ msgstr ""
"chamadas unpack e remove."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:740
+#: apt.conf.5.xml:773
msgid ""
"Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
"and \"<literal>no</literal>\". The default value is \"<literal>all</literal>"
@@ -4656,7 +4751,7 @@ msgstr ""
"arrancar."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:755
+#: apt.conf.5.xml:788
msgid ""
"If this option is set APT will call <command>dpkg --configure --pending</"
"command> to let &dpkg; handle all required configurations and triggers. This "
@@ -4674,7 +4769,7 @@ msgstr ""
"esta opção em todas excepto na última execução."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:762
+#: apt.conf.5.xml:795
msgid ""
"Useful for the <literal>smart</literal> configuration as a package which has "
"pending triggers is not considered as <literal>installed</literal>, and "
@@ -4690,7 +4785,7 @@ msgstr ""
"configurar este pacote."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:775
+#: apt.conf.5.xml:808
#, no-wrap
msgid ""
"OrderList::Score {\n"
@@ -4708,7 +4803,7 @@ msgstr ""
"};"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:768
+#: apt.conf.5.xml:801
msgid ""
"Essential packages (and their dependencies) should be configured immediately "
"after unpacking. It is a good idea to do this quite early in the upgrade "
@@ -4732,12 +4827,12 @@ msgstr ""
"predefinidos. <placeholder type=\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:788
+#: apt.conf.5.xml:821
msgid "Periodic and Archives options"
msgstr "Opções Periodic e Archives"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:789
+#: apt.conf.5.xml:822
msgid ""
"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
"of options configure behavior of apt periodic updates, which is done by the "
@@ -4750,12 +4845,12 @@ msgstr ""
"Veja o cabeçalho deste script para uma breve documentação das suas opções."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:797
+#: apt.conf.5.xml:830
msgid "Debug options"
msgstr "Opções de depuração"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:799
+#: apt.conf.5.xml:832
msgid ""
"Enabling options in the <literal>Debug::</literal> section will cause "
"debugging information to be sent to the standard error stream of the program "
@@ -4772,7 +4867,7 @@ msgstr ""
"interesse para o utilizador normal, mas algumas podem ter:"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:810
+#: apt.conf.5.xml:843
msgid ""
"<literal>Debug::pkgProblemResolver</literal> enables output about the "
"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@ -4783,7 +4878,7 @@ msgstr ""
"remove, purge</literal>."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:818
+#: apt.conf.5.xml:851
msgid ""
"<literal>Debug::NoLocking</literal> disables all file locking. This can be "
"used to run some operations (for instance, <literal>apt-get -s install</"
@@ -4794,7 +4889,7 @@ msgstr ""
"<literal>apt-get -s install</literal>) como um utilizador não root."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:827
+#: apt.conf.5.xml:860
msgid ""
"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
"time that <literal>apt</literal> invokes &dpkg;."
@@ -4806,7 +4901,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:835
+#: apt.conf.5.xml:868
msgid ""
"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
"in CD-ROM IDs."
@@ -4815,12 +4910,12 @@ msgstr ""
"IDs de CD-ROM."
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:845
+#: apt.conf.5.xml:878
msgid "A full list of debugging options to apt follows."
msgstr "Segue-se uma lista completa de opções de depuração para o apt."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:854
+#: apt.conf.5.xml:887
msgid ""
"Print information related to accessing <literal>cdrom://</literal> sources."
msgstr ""
@@ -4828,25 +4923,25 @@ msgstr ""
"literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:865
+#: apt.conf.5.xml:898
msgid "Print information related to downloading packages using FTP."
msgstr ""
"Escreve informação relacionada com o descarregamento de pacotes usando FTP."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:876
+#: apt.conf.5.xml:909
msgid "Print information related to downloading packages using HTTP."
msgstr ""
"Escreve informação relacionada com o descarregamento de pacotes usando HTTP."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:887
+#: apt.conf.5.xml:920
msgid "Print information related to downloading packages using HTTPS."
msgstr ""
"Escreve informação relacionada com o descarregamento de pacotes usando HTTPS."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:898
+#: apt.conf.5.xml:931
msgid ""
"Print information related to verifying cryptographic signatures using "
"<literal>gpg</literal>."
@@ -4855,7 +4950,7 @@ msgstr ""
"criptográficas usando <literal>gpg</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:909
+#: apt.conf.5.xml:942
msgid ""
"Output information about the process of accessing collections of packages "
"stored on CD-ROMs."
@@ -4864,13 +4959,13 @@ msgstr ""
"armazenados em CD-ROMs."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:919
+#: apt.conf.5.xml:952
msgid "Describes the process of resolving build-dependencies in &apt-get;."
msgstr ""
"Descreve os processos de resolver dependências de compilação no &apt-get;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:929
+#: apt.conf.5.xml:962
msgid ""
"Output each cryptographic hash that is generated by the <literal>apt</"
"literal> libraries."
@@ -4879,7 +4974,7 @@ msgstr ""
"<literal>apt</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:939
+#: apt.conf.5.xml:972
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 "
@@ -4890,7 +4985,7 @@ msgstr ""
"para um CD-ROM."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:950
+#: apt.conf.5.xml:983
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."
@@ -4900,14 +4995,14 @@ msgstr ""
"literal></quote> ao mesmo tempo."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:962
+#: apt.conf.5.xml:995
msgid "Log when items are added to or removed from the global download queue."
msgstr ""
"Regista no log quando os items são adicionados ou removidos da fila de "
"download global."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:972
+#: apt.conf.5.xml:1005
msgid ""
"Output status messages and errors related to verifying checksums and "
"cryptographic signatures of downloaded files."
@@ -4916,7 +5011,7 @@ msgstr ""
"checksums e assinaturas criptográficas dos ficheiros descarregados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:982
+#: apt.conf.5.xml:1015
msgid ""
"Output information about downloading and applying package index list diffs, "
"and errors relating to package index list diffs."
@@ -4926,7 +5021,7 @@ msgstr ""
"pacote."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:994
+#: apt.conf.5.xml:1027
msgid ""
"Output information related to patching apt package lists when downloading "
"index diffs instead of full indices."
@@ -4935,7 +5030,7 @@ msgstr ""
"do apt quando se descarrega diffs de índice em vez de índices completos."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1005
+#: apt.conf.5.xml:1038
msgid ""
"Log all interactions with the sub-processes that actually perform downloads."
msgstr ""
@@ -4943,7 +5038,7 @@ msgstr ""
"downloads."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1016
+#: apt.conf.5.xml:1049
msgid ""
"Log events related to the automatically-installed status of packages and to "
"the removal of unused packages."
@@ -4952,7 +5047,7 @@ msgstr ""
"de pacotes e com a remoção de pacotes não utilizados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1026
+#: apt.conf.5.xml:1059
msgid ""
"Generate debug messages describing which packages are being automatically "
"installed to resolve dependencies. This corresponds to the initial auto-"
@@ -4967,7 +5062,7 @@ msgstr ""
"literal>; veja <literal>Debug::pkgProblemResolver</literal> para isso."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1040
+#: apt.conf.5.xml:1073
msgid ""
"Generate debug messages describing which packages are marked as keep/install/"
"remove while the ProblemResolver does his work. Each addition or deletion "
@@ -4998,7 +5093,7 @@ msgstr ""
"pacote aparece."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1061
+#: apt.conf.5.xml:1094
msgid ""
"When invoking &dpkg;, output the precise command line with which it is being "
"invoked, with arguments separated by a single space character."
@@ -5008,7 +5103,7 @@ msgstr ""
"único."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1072
+#: apt.conf.5.xml:1105
msgid ""
"Output all the data received from &dpkg; on the status file descriptor and "
"any errors encountered while parsing it."
@@ -5017,7 +5112,7 @@ msgstr ""
"estado e quaisquer erros encontrados enquanto os analisa."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1083
+#: apt.conf.5.xml:1116
msgid ""
"Generate a trace of the algorithm that decides the order in which "
"<literal>apt</literal> should pass packages to &dpkg;."
@@ -5026,7 +5121,7 @@ msgstr ""
"literal> deve passar os pacotes ao &dpkg;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1095
+#: apt.conf.5.xml:1128
msgid ""
"Output status messages tracing the steps performed when invoking &dpkg;."
msgstr ""
@@ -5034,12 +5129,12 @@ msgstr ""
"&dpkg;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1106
+#: apt.conf.5.xml:1139
msgid "Output the priority of each package list on startup."
msgstr "Escreve a prioridade da cada lista de pacote no arranque."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1116
+#: apt.conf.5.xml:1149
msgid ""
"Trace the execution of the dependency resolver (this applies only to what "
"happens when a complex dependency problem is encountered)."
@@ -5048,7 +5143,7 @@ msgstr ""
"acontece quando é encontrado um problema de dependências complexo)."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1127
+#: apt.conf.5.xml:1160
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 "
@@ -5059,7 +5154,7 @@ msgstr ""
"mesma que é descrita em <literal>Debug::pkgDepCache::Marker</literal>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1139
+#: apt.conf.5.xml:1172
msgid ""
"Print information about the vendors read from <filename>/etc/apt/vendors."
"list</filename>."
@@ -5068,13 +5163,13 @@ msgstr ""
"vendors.list</filename>."
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:1161 apt_preferences.5.xml:545 sources.list.5.xml:211
-#: apt-ftparchive.1.xml:596
+#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:217
+#: apt-ftparchive.1.xml:598
msgid "Examples"
msgstr "Exemplos"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1162
+#: apt.conf.5.xml:1195
msgid ""
"&configureindex; is a configuration file showing example values for all "
"possible options."
@@ -5084,17 +5179,17 @@ msgstr ""
#. ? reading apt.conf
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1174
+#: apt.conf.5.xml:1207
msgid "&apt-cache;, &apt-config;, &apt-preferences;."
msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt_preferences.5.xml:32
+#: apt_preferences.5.xml:34
msgid "Preference control file for APT"
msgstr "Ficheiro de controle de preferências para o APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:37
+#: apt_preferences.5.xml:39
msgid ""
"The APT preferences file <filename>/etc/apt/preferences</filename> and the "
"fragment files in the <filename>/etc/apt/preferences.d/</filename> folder "
@@ -5107,7 +5202,7 @@ msgstr ""
"ser seleccionadas para instalação."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:42
+#: apt_preferences.5.xml:44
msgid ""
"Several versions of a package may be available for installation when the "
"&sources-list; file contains references to more than one distribution (for "
@@ -5129,7 +5224,7 @@ msgstr ""
"para instalação."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:52
+#: apt_preferences.5.xml:54
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 "
@@ -5144,7 +5239,7 @@ msgstr ""
"escolha da instância, apenas a escolha da versão."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:59
+#: apt_preferences.5.xml:61
msgid ""
"Preferences are a strong power in the hands of a system administrator but "
"they can become also their biggest nightmare if used without care! APT will "
@@ -5168,7 +5263,7 @@ msgstr ""
"foi avisado."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:70
+#: apt_preferences.5.xml:72
msgid ""
"Note that the files in the <filename>/etc/apt/preferences.d</filename> "
"directory are parsed in alphanumeric ascending order and need to obey the "
@@ -5190,24 +5285,24 @@ msgstr ""
"em silêncio."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:79
+#: apt_preferences.5.xml:81
msgid "APT's Default Priority Assignments"
msgstr "Atribuições de Prioridade Predefinidas do APT"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:94
+#: apt_preferences.5.xml:96
#, no-wrap
msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n"
msgstr "<command>apt-get install -t testing <replaceable>algum-pacote</replaceable></command>\n"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:97
+#: apt_preferences.5.xml:99
#, 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:81
+#: apt_preferences.5.xml:83
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 "
@@ -5235,7 +5330,7 @@ msgstr ""
"\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:101
+#: apt_preferences.5.xml:103
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:"
@@ -5244,12 +5339,12 @@ msgstr ""
"algoritmo para definir as prioridades das versões de um pacote. Atribuir:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:106
+#: apt_preferences.5.xml:108
msgid "priority 1"
msgstr "priority 1"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:107
+#: apt_preferences.5.xml:109
msgid ""
"to the versions coming from archives which in their <filename>Release</"
"filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</"
@@ -5262,12 +5357,12 @@ msgstr ""
"<literal>experimental</literal> da Debian."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:113
+#: apt_preferences.5.xml:115
msgid "priority 100"
msgstr "priority 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:114
+#: apt_preferences.5.xml:116
msgid ""
"to the version that is already installed (if any) and to the versions coming "
"from archives which in their <filename>Release</filename> files are marked "
@@ -5280,12 +5375,12 @@ msgstr ""
"backports da Debian desde <literal>squeeze-backports</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:121
+#: apt_preferences.5.xml:123
msgid "priority 500"
msgstr "priority 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:122
+#: apt_preferences.5.xml:124
msgid ""
"to the versions that are not installed and do not belong to the target "
"release."
@@ -5294,19 +5389,19 @@ msgstr ""
"destinado."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:126
+#: apt_preferences.5.xml:128
msgid "priority 990"
msgstr "priority 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:127
+#: apt_preferences.5.xml:129
msgid ""
"to the versions that are not installed and belong to the target release."
msgstr ""
"para as versões que não estão instaladas e pertencem ao lançamento destinado."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:132
+#: apt_preferences.5.xml:134
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 "
@@ -5324,7 +5419,7 @@ msgstr ""
"yes\"."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:139
+#: apt_preferences.5.xml:141
msgid ""
"APT then applies the following rules, listed in order of precedence, to "
"determine which version of a package to install."
@@ -5333,7 +5428,7 @@ msgstr ""
"para determinar qual versão de um pacote deve instalar."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:142
+#: apt_preferences.5.xml:144
msgid ""
"Never downgrade unless the priority of an available version exceeds 1000. "
"(\"Downgrading\" is installing a less recent version of a package in place "
@@ -5349,12 +5444,12 @@ msgstr ""
"arriscado.)"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:148
+#: apt_preferences.5.xml:150
msgid "Install the highest priority version."
msgstr "Instala a versão de prioridade mais alta."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:149
+#: apt_preferences.5.xml:151
msgid ""
"If two or more versions have the same priority, install the most recent one "
"(that is, the one with the higher version number)."
@@ -5363,7 +5458,7 @@ msgstr ""
"(isto é, aquela com o número de versão mais alto)."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:152
+#: apt_preferences.5.xml:154
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</"
@@ -5374,7 +5469,7 @@ msgstr ""
"reinstall</literal> é fornecida, instala a que foi desinstalada."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:158
+#: apt_preferences.5.xml:160
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 "
@@ -5389,7 +5484,7 @@ msgstr ""
"replaceable></command> ou <command>apt-get upgrade</command>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:165
+#: apt_preferences.5.xml:167
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 "
@@ -5403,7 +5498,7 @@ msgstr ""
"get upgrade</command>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:170
+#: apt_preferences.5.xml:172
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 "
@@ -5422,12 +5517,12 @@ msgstr ""
"prioridade mais alta que a versão instalada."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:179
+#: apt_preferences.5.xml:181
msgid "The Effect of APT Preferences"
msgstr "O Efeito das Preferências do APT"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:181
+#: apt_preferences.5.xml:183
msgid ""
"The APT preferences file allows the system administrator to control the "
"assignment of priorities. The file consists of one or more multi-line "
@@ -5440,7 +5535,7 @@ msgstr ""
"um ou dois formatos, um formato específico e um formato geral."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:187
+#: apt_preferences.5.xml:189
msgid ""
"The specific form assigns a priority (a \"Pin-Priority\") to one or more "
"specified packages with a specified version or version range. For example, "
@@ -5457,7 +5552,7 @@ msgstr ""
"por espaços."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:194
+#: apt_preferences.5.xml:196
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5469,7 +5564,7 @@ msgstr ""
"Pin-Priority: 1001\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:200
+#: apt_preferences.5.xml:202
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 "
@@ -5484,7 +5579,7 @@ msgstr ""
"nome de domínio totalmente qualificado do site."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:206
+#: apt_preferences.5.xml:208
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 "
@@ -5496,7 +5591,7 @@ msgstr ""
"local."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:211
+#: apt_preferences.5.xml:213
#, no-wrap
msgid ""
"Package: *\n"
@@ -5508,7 +5603,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:216
+#: apt_preferences.5.xml:218
msgid ""
"A note of caution: the keyword used here is \"<literal>origin</literal>\" "
"which can be used to match a hostname. The following record will assign a "
@@ -5521,7 +5616,7 @@ msgstr ""
"servidor identificadas pelo nome de máquina \"ftp.de.debian.org\""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:220
+#: apt_preferences.5.xml:222
#, no-wrap
msgid ""
"Package: *\n"
@@ -5533,7 +5628,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:224
+#: apt_preferences.5.xml:226
msgid ""
"This should <emphasis>not</emphasis> be confused with the Origin of a "
"distribution as specified in a <filename>Release</filename> file. What "
@@ -5548,7 +5643,7 @@ msgstr ""
"como \"Debian\" ou \"Ximian\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:229
+#: apt_preferences.5.xml:231
msgid ""
"The following record assigns a low priority to all package versions "
"belonging to any distribution whose Archive name is \"<literal>unstable</"
@@ -5559,7 +5654,7 @@ msgstr ""
"\"<literal>unstable</literal>\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:233
+#: apt_preferences.5.xml:235
#, no-wrap
msgid ""
"Package: *\n"
@@ -5571,7 +5666,7 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:238
+#: apt_preferences.5.xml:240
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any distribution whose Codename is \"<literal>&testing-codename;"
@@ -5582,7 +5677,7 @@ msgstr ""
"\"<literal>&testing-codename;</literal>\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:242
+#: apt_preferences.5.xml:244
#, no-wrap
msgid ""
"Package: *\n"
@@ -5594,7 +5689,7 @@ msgstr ""
"Pin-Priority: 900\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:247
+#: apt_preferences.5.xml:249
msgid ""
"The following record assigns a high priority to all package versions "
"belonging to any release whose Archive name is \"<literal>stable</literal>\" "
@@ -5606,7 +5701,7 @@ msgstr ""
"version;</literal>\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:252
+#: apt_preferences.5.xml:254
#, no-wrap
msgid ""
"Package: *\n"
@@ -5618,12 +5713,12 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:262
+#: apt_preferences.5.xml:264
msgid "Regular expressions and &glob; syntax"
msgstr "Expressões regulares e sintaxe &glob;"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:264
+#: apt_preferences.5.xml:266
msgid ""
"APT also supports pinning by &glob; expressions, and regular expressions "
"surrounded by slashes. For example, the following example assigns the "
@@ -5638,7 +5733,7 @@ msgstr ""
"regular extensa do POSIX rodeada de barras)."
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:273
+#: apt_preferences.5.xml:275
#, no-wrap
msgid ""
"Package: gnome* /kde/\n"
@@ -5650,7 +5745,7 @@ msgstr ""
"Pin-Priority: 500\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:279
+#: apt_preferences.5.xml:281
msgid ""
"The rule for those expressions is that they can occur anywhere where a "
"string can occur. Thus, the following pin assigns the priority 990 to all "
@@ -5661,7 +5756,7 @@ msgstr ""
"a todos os pacotes de um lançamento que começa com &ubuntu-codename;."
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:285
+#: apt_preferences.5.xml:287
#, no-wrap
msgid ""
"Package: *\n"
@@ -5673,7 +5768,7 @@ msgstr ""
"Pin-Priority: 990\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:291
+#: apt_preferences.5.xml:293
msgid ""
"If a regular expression occurs in a <literal>Package</literal> field, the "
"behavior is the same as if this regular expression were replaced with a list "
@@ -5691,12 +5786,12 @@ msgstr ""
"considerado uma expressão &glob; em si próprio."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:307
+#: apt_preferences.5.xml:309
msgid "How APT Interprets Priorities"
msgstr "Como o APT Interpreta as Prioridades"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:310
+#: apt_preferences.5.xml:312
msgid ""
"Priorities (P) assigned in the APT preferences file must be positive or "
"negative integers. They are interpreted as follows (roughly speaking):"
@@ -5706,12 +5801,12 @@ msgstr ""
"(falando grosso):"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:315
+#: apt_preferences.5.xml:317
msgid "P &gt;= 1000"
msgstr "P &gt;= 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:316
+#: apt_preferences.5.xml:318
msgid ""
"causes a version to be installed even if this constitutes a downgrade of the "
"package"
@@ -5720,12 +5815,12 @@ msgstr ""
"na versão do pacote (downgrade)"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:320
+#: apt_preferences.5.xml:322
msgid "990 &lt;= P &lt; 1000"
msgstr "990 &lt;= P &lt; 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:321
+#: apt_preferences.5.xml:323
msgid ""
"causes a version to be installed even if it does not come from the target "
"release, unless the installed version is more recent"
@@ -5734,12 +5829,12 @@ msgstr ""
"destino, a menos que a versão instalada seja mais recente"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:326
+#: apt_preferences.5.xml:328
msgid "500 &lt;= P &lt; 990"
msgstr "500 &lt;= P &lt; 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:327
+#: apt_preferences.5.xml:329
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"
@@ -5749,12 +5844,12 @@ msgstr ""
"mais recente"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:332
+#: apt_preferences.5.xml:334
msgid "100 &lt;= P &lt; 500"
msgstr "100 &lt;= P &lt; 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:333
+#: apt_preferences.5.xml:335
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"
@@ -5764,12 +5859,12 @@ msgstr ""
"recente"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:338
+#: apt_preferences.5.xml:340
msgid "0 &lt; P &lt; 100"
msgstr "0 &lt; P &lt; 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:339
+#: apt_preferences.5.xml:341
msgid ""
"causes a version to be installed only if there is no installed version of "
"the package"
@@ -5778,17 +5873,17 @@ msgstr ""
"instalada do pacote"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:343
+#: apt_preferences.5.xml:345
msgid "P &lt; 0"
msgstr "P &lt; 0"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:344
+#: apt_preferences.5.xml:346
msgid "prevents the version from being installed"
msgstr "previne a instalação da versão"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:349
+#: apt_preferences.5.xml:351
msgid ""
"If any specific-form records match an available package version then the "
"first such record determines the priority of the package version. Failing "
@@ -5802,7 +5897,7 @@ msgstr ""
"determina a prioridade da versão de pacote."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:355
+#: apt_preferences.5.xml:357
msgid ""
"For example, suppose the APT preferences file contains the three records "
"presented earlier:"
@@ -5811,7 +5906,7 @@ msgstr ""
"registos apresentados atrás:"
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:359
+#: apt_preferences.5.xml:361
#, no-wrap
msgid ""
"Package: perl\n"
@@ -5839,12 +5934,12 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:372
+#: apt_preferences.5.xml:374
msgid "Then:"
msgstr "Então:"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:374
+#: apt_preferences.5.xml:376
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 "
@@ -5859,7 +5954,7 @@ msgstr ""
"perl;*, então será feito um downgrade ao <literal>perl</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:379
+#: apt_preferences.5.xml:381
msgid ""
"A version of any package other than <literal>perl</literal> that is "
"available from the local system has priority over other versions, even "
@@ -5870,7 +5965,7 @@ msgstr ""
"versões, mesmo versões que pertencem ao lançamento de destino."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:383
+#: apt_preferences.5.xml:385
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</"
@@ -5883,12 +5978,12 @@ msgstr ""
"instalação e se nenhuma versão do pacote já estiver instalada."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:393
+#: apt_preferences.5.xml:395
msgid "Determination of Package Version and Distribution Properties"
msgstr "Determinação da Versão do Pacote e Propriedades da Distribuição"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:395
+#: apt_preferences.5.xml:397
msgid ""
"The locations listed in the &sources-list; file should provide "
"<filename>Packages</filename> and <filename>Release</filename> files to "
@@ -5899,7 +5994,7 @@ msgstr ""
"descrever os pacotes disponíveis nessa localização."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:399
+#: apt_preferences.5.xml:401
msgid ""
"The <filename>Packages</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable>/"
@@ -5919,27 +6014,27 @@ msgstr ""
"definir prioridades do APT:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:407
+#: apt_preferences.5.xml:409
msgid "the <literal>Package:</literal> line"
msgstr "a linha <literal>Package:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:408
+#: apt_preferences.5.xml:410
msgid "gives the package name"
msgstr "fornece o nome do pacote"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:411 apt_preferences.5.xml:461
+#: apt_preferences.5.xml:413 apt_preferences.5.xml:463
msgid "the <literal>Version:</literal> line"
msgstr "a linha <literal>Version:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:412
+#: apt_preferences.5.xml:414
msgid "gives the version number for the named package"
msgstr "fornece o número de versão do pacote nomeado"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:417
+#: apt_preferences.5.xml:419
msgid ""
"The <filename>Release</filename> file is normally found in the directory "
"<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
@@ -5961,12 +6056,12 @@ msgstr ""
"APT:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:428
+#: apt_preferences.5.xml:430
msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
msgstr "a linha <literal>Archive:</literal> ou <literal>Suite:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:429
+#: apt_preferences.5.xml:431
msgid ""
"names the archive to which all the packages in the directory tree belong. "
"For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@ -5983,18 +6078,18 @@ msgstr ""
"requerer a linha:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:439
+#: apt_preferences.5.xml:441
#, 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:445
+#: apt_preferences.5.xml:447
msgid "the <literal>Codename:</literal> line"
msgstr "a linha <literal>Codename:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:446
+#: apt_preferences.5.xml:448
msgid ""
"names the codename to which all the packages in the directory tree belong. "
"For example, the line \"Codename: &testing-codename;\" specifies that all of "
@@ -6011,13 +6106,13 @@ msgstr ""
"preferências do APT requer a linha:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:455
+#: apt_preferences.5.xml:457
#, no-wrap
msgid "Pin: release n=&testing-codename;\n"
msgstr "Pin: release n=&testing-codename;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:462
+#: apt_preferences.5.xml:464
msgid ""
"names the release version. For example, the packages in the tree might "
"belong to Debian release version &stable-version;. Note that there is "
@@ -6034,7 +6129,7 @@ msgstr ""
"seguintes linhas:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:471
+#: apt_preferences.5.xml:473
#, no-wrap
msgid ""
"Pin: release v=&stable-version;\n"
@@ -6046,12 +6141,12 @@ msgstr ""
"Pin: release &stable-version;\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:480
+#: apt_preferences.5.xml:482
msgid "the <literal>Component:</literal> line"
msgstr "a linha <literal>Component:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:481
+#: apt_preferences.5.xml:483
msgid ""
"names the licensing component associated with the packages in the directory "
"tree of the <filename>Release</filename> file. For example, the line "
@@ -6069,18 +6164,18 @@ msgstr ""
"a linha:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:490
+#: apt_preferences.5.xml:492
#, 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:496
+#: apt_preferences.5.xml:498
msgid "the <literal>Origin:</literal> line"
msgstr "a linha <literal>Origin:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:497
+#: apt_preferences.5.xml:499
msgid ""
"names the originator of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -6093,18 +6188,18 @@ msgstr ""
"linha:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:503
+#: apt_preferences.5.xml:505
#, 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:509
+#: apt_preferences.5.xml:511
msgid "the <literal>Label:</literal> line"
msgstr "a linha <literal>Label:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:510
+#: apt_preferences.5.xml:512
msgid ""
"names the label of the packages in the directory tree of the "
"<filename>Release</filename> file. Most commonly, this is <literal>Debian</"
@@ -6117,13 +6212,13 @@ msgstr ""
"linha:"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:516
+#: apt_preferences.5.xml:518
#, 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:523
+#: apt_preferences.5.xml:525
msgid ""
"All of the <filename>Packages</filename> and <filename>Release</filename> "
"files retrieved from locations listed in the &sources-list; file are stored "
@@ -6148,12 +6243,12 @@ msgstr ""
"literal> da distribuição <literal>unstable</literal>."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:536
+#: apt_preferences.5.xml:538
msgid "Optional Lines in an APT Preferences Record"
msgstr "Linhas Opcionais num Registo de Preferências do APT"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:538
+#: apt_preferences.5.xml:540
msgid ""
"Each record in the APT preferences file can optionally begin with one or "
"more lines beginning with the word <literal>Explanation:</literal>. This "
@@ -6164,12 +6259,12 @@ msgstr ""
"literal>. Isto disponibiliza um espaço para comentários."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:547
+#: apt_preferences.5.xml:549
msgid "Tracking Stable"
msgstr "Acompanhando Stable"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:555
+#: apt_preferences.5.xml:557
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated\n"
@@ -6193,7 +6288,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:549
+#: apt_preferences.5.xml:551
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 "
@@ -6209,8 +6304,8 @@ msgstr ""
"\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:572 apt_preferences.5.xml:618
-#: apt_preferences.5.xml:676
+#: apt_preferences.5.xml:574 apt_preferences.5.xml:620
+#: apt_preferences.5.xml:678
#, no-wrap
msgid ""
"apt-get install <replaceable>package-name</replaceable>\n"
@@ -6222,7 +6317,7 @@ msgstr ""
"apt-get dist-upgrade\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:567
+#: apt_preferences.5.xml:569
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 "
@@ -6235,13 +6330,13 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:584
+#: apt_preferences.5.xml:586
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/testing\n"
msgstr "apt-get install <replaceable>pacote</replaceable>/testing\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:578
+#: apt_preferences.5.xml:580
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>testing</literal> distribution; the package "
@@ -6254,12 +6349,12 @@ msgstr ""
"outra vez. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:590
+#: apt_preferences.5.xml:592
msgid "Tracking Testing or Unstable"
msgstr "Acompanhando Testing ou Unstable"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:599
+#: apt_preferences.5.xml:601
#, no-wrap
msgid ""
"Package: *\n"
@@ -6287,7 +6382,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:592
+#: apt_preferences.5.xml:594
msgid ""
"The following APT preferences file will cause APT to assign a high priority "
"to package versions from the <literal>testing</literal> distribution, a "
@@ -6304,7 +6399,7 @@ msgstr ""
"<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:613
+#: apt_preferences.5.xml:615
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 "
@@ -6317,13 +6412,13 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:633
+#: apt_preferences.5.xml:635
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
msgstr "apt-get install <replaceable>pacote</replaceable>/unstable\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:624
+#: apt_preferences.5.xml:626
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>unstable</literal> distribution. "
@@ -6342,12 +6437,12 @@ msgstr ""
"versão instalada. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:640
+#: apt_preferences.5.xml:642
msgid "Tracking the evolution of a codename release"
msgstr "Acompanhando a evolução de um nome de código de lançamento"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:654
+#: apt_preferences.5.xml:656
#, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@ -6381,7 +6476,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:642
+#: apt_preferences.5.xml:644
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 "
@@ -6407,7 +6502,7 @@ msgstr ""
"<placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:671
+#: apt_preferences.5.xml:673
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 "
@@ -6420,13 +6515,13 @@ msgstr ""
"codename;</literal>. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:691
+#: apt_preferences.5.xml:693
#, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/sid\n"
msgstr "apt-get install <replaceable>pacote</replaceable>/sid\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:682
+#: apt_preferences.5.xml:684
msgid ""
"The following command will cause APT to upgrade the specified package to the "
"latest version from the <literal>sid</literal> distribution. Thereafter, "
@@ -6445,17 +6540,17 @@ msgstr ""
"instalada. <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:706
+#: apt_preferences.5.xml:708
msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: sources.list.5.xml:33
+#: sources.list.5.xml:35
msgid "List of configured APT data sources"
msgstr "Lista das fontes de dados APT configuradas"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:38
+#: sources.list.5.xml:40
msgid ""
"The source list <filename>/etc/apt/sources.list</filename> is designed to "
"support any number of active sources and a variety of source media. The file "
@@ -6472,7 +6567,7 @@ msgstr ""
"comando equivalente de outra interface \"front-end\" do APT)."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:45
+#: sources.list.5.xml:47
msgid ""
"Each line specifying a source starts with type (e.g. <literal>deb-src</"
"literal>) followed by options and arguments for this type. Individual "
@@ -6487,12 +6582,12 @@ msgstr ""
"numa linha marca o restante dessa linha como um comentário."
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:53
+#: sources.list.5.xml:55
msgid "sources.list.d"
msgstr "sources.list.d"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:54
+#: sources.list.5.xml:56
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 "
@@ -6514,12 +6609,12 @@ msgstr ""
"neste caso serão ignorados em silêncio."
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:65
+#: sources.list.5.xml:67
msgid "The deb and deb-src types"
msgstr "Os tipos deb e deb-src"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:66
+#: sources.list.5.xml:68
msgid ""
"The <literal>deb</literal> type references a typical two-level Debian "
"archive, <filename>distribution/component</filename>. The "
@@ -6544,7 +6639,7 @@ msgstr ""
"linha <literal>deb-src</literal> para obter índices das fontes."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:78
+#: sources.list.5.xml:80
msgid ""
"The format for a <filename>sources.list</filename> entry using the "
"<literal>deb</literal> and <literal>deb-src</literal> types is:"
@@ -6553,13 +6648,13 @@ msgstr ""
"tipos <literal>deb</literal> e <literal>deb-src</literal> é:"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:81
+#: sources.list.5.xml:83
#, no-wrap
msgid "deb [ options ] uri distribution [component1] [component2] [...]"
msgstr "deb [ opções ] uri distribuição [componente1] [componente2] [...]"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:83
+#: sources.list.5.xml:85
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. "
@@ -6581,7 +6676,7 @@ msgstr ""
"presente."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:92
+#: sources.list.5.xml:94
msgid ""
"<literal>distribution</literal> may also contain a variable, <literal>"
"$(ARCH)</literal> which expands to the Debian architecture (such as "
@@ -6600,7 +6695,7 @@ msgstr ""
"gerar automaticamente um URI com a arquitectura actual."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:100
+#: sources.list.5.xml:102
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 "
@@ -6626,7 +6721,7 @@ msgstr ""
"sites com baixa largura de banda."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:112
+#: sources.list.5.xml:114
msgid ""
"<literal>options</literal> is always optional and needs to be surrounded by "
"square brackets. It can consist of multiple settings in the form "
@@ -6643,7 +6738,7 @@ msgstr ""
"definições não suportadas serão ignoradas em silêncio):"
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:117
+#: sources.list.5.xml:120
msgid ""
"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
"replaceable>,…</literal> can be used to specify for which architectures "
@@ -6658,7 +6753,28 @@ msgstr ""
"<literal>APT::Architectures</literal>."
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:121
+#: sources.list.5.xml:124
+#, fuzzy
+#| msgid ""
+#| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+#| "replaceable>,…</literal> can be used to specify for which architectures "
+#| "information should be downloaded. If this option is not set all "
+#| "architectures defined by the <literal>APT::Architectures</literal> option "
+#| "will be downloaded."
+msgid ""
+"<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>,"
+"<replaceable>arch2</replaceable>,…</literal> which can be used to add/remove "
+"architectures from the set which will be downloaded."
+msgstr ""
+"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> pode ser usado para especificar para quais "
+"arquitecturas deve ser descarregada a informação. Se esta opção não estiver "
+"definida, serão descarregadas todas as arquitecturas definidas pela opção "
+"<literal>APT::Architectures</literal>."
+
+#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
+#: sources.list.5.xml:127
msgid ""
"<literal>trusted=yes</literal> can be set to indicate that packages from "
"this source are always authenticated even if the <filename>Release</"
@@ -6675,7 +6791,7 @@ msgstr ""
"lida com fontes mesmo actualmente autenticadas como não sendo autênticas."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:128
+#: sources.list.5.xml:134
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 "
@@ -6689,12 +6805,12 @@ msgstr ""
"Internet, por exemplo)."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:133
+#: sources.list.5.xml:139
msgid "Some examples:"
msgstr "Alguns exemplos:"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:135
+#: sources.list.5.xml:141
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@ -6706,17 +6822,17 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:141
+#: sources.list.5.xml:147
msgid "URI specification"
msgstr "Especificação da URI"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:143
+#: sources.list.5.xml:149
msgid "The currently recognized URI types are:"
msgstr "Os tipos de URI actualmente reconhecidos são:"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:147
+#: sources.list.5.xml:153
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 "
@@ -6727,7 +6843,7 @@ msgstr ""
"arquivos locais."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:154
+#: sources.list.5.xml:160
msgid ""
"The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. "
"Use the &apt-cdrom; program to create cdrom entries in the source list."
@@ -6737,7 +6853,7 @@ msgstr ""
"fontes."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:161
+#: sources.list.5.xml:167
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:"
@@ -6754,7 +6870,7 @@ msgstr ""
"método de autenticação seguro."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:172
+#: sources.list.5.xml:178
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. "
@@ -6775,7 +6891,7 @@ msgstr ""
"configuração serão ignorados."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:184
+#: sources.list.5.xml:190
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. "
@@ -6788,7 +6904,7 @@ msgstr ""
"ficheiros com o APT."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:191
+#: sources.list.5.xml:197
msgid ""
"The rsh/ssh method invokes RSH/SSH to connect to a remote host and access "
"the files as a given user. Prior configuration of rhosts or RSA keys is "
@@ -6802,12 +6918,12 @@ msgstr ""
"ficheiros a partir da máquina remota."
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
-#: sources.list.5.xml:198
+#: sources.list.5.xml:204
msgid "adding more recognizable URI types"
msgstr "adicionando mais tipos de URI reconhecíveis"
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:200
+#: sources.list.5.xml:206
msgid ""
"APT can be extended with more methods shipped in other optional packages, "
"which should follow the naming scheme <package>apt-transport-"
@@ -6826,7 +6942,7 @@ msgstr ""
"exemplo o debtorrent - veja &apt-transport-debtorrent;."
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:212
+#: sources.list.5.xml:218
msgid ""
"Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
"stable/main, stable/contrib, and stable/non-free."
@@ -6835,36 +6951,36 @@ msgstr ""
"para stable/main, stable/contrib, e stable/non-free."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:214
+#: sources.list.5.xml:220
#, 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:216
+#: sources.list.5.xml:222
msgid "As above, except this uses the unstable (development) distribution."
msgstr ""
"Como em cima, excepto que usa a distribuição unstable (de desenvolvimento)."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:217
+#: sources.list.5.xml:223
#, 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:219
+#: sources.list.5.xml:225
msgid "Source line for the above"
msgstr "Linha de fonte para o referido acima"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:220
+#: sources.list.5.xml:226
#, 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:222
+#: sources.list.5.xml:228
msgid ""
"The first line gets package information for the architectures in "
"<literal>APT::Architectures</literal> while the second always retrieves "
@@ -6875,7 +6991,7 @@ msgstr ""
"<literal>amd64</literal> e <literal>armel</literal>."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:224
+#: sources.list.5.xml:230
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main\n"
@@ -6885,7 +7001,7 @@ msgstr ""
"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:227
+#: sources.list.5.xml:233
msgid ""
"Uses HTTP to access the archive at archive.debian.org, and uses only the "
"hamm/main area."
@@ -6894,13 +7010,13 @@ msgstr ""
"hamm/main."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:229
+#: sources.list.5.xml:235
#, 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:231
+#: sources.list.5.xml:237
msgid ""
"Uses FTP to access the archive at ftp.debian.org, under the debian "
"directory, and uses only the &stable-codename;/contrib area."
@@ -6909,13 +7025,13 @@ msgstr ""
"usa apenas a área &stable-codename;/contrib."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:233
+#: sources.list.5.xml:239
#, no-wrap
msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:235
+#: sources.list.5.xml:241
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 "
@@ -6928,19 +7044,19 @@ msgstr ""
"uma única sessão FTP para ambas linhas de recurso."
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:239
+#: sources.list.5.xml:245
#, 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><literallayout>
-#: sources.list.5.xml:248
+#: sources.list.5.xml:254
#, no-wrap
msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:241
+#: sources.list.5.xml:247
msgid ""
"Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
"directory, and uses only files found under <filename>unstable/binary-i386</"
@@ -6959,17 +7075,17 @@ msgstr ""
"\"literallayout\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:253
+#: sources.list.5.xml:259
msgid "&apt-cache; &apt-conf;"
msgstr "&apt-cache; &apt-conf;"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-extracttemplates.1.xml:26 apt-sortpkgs.1.xml:26 apt-ftparchive.1.xml:26
+#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28
msgid "1"
msgstr "1"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-extracttemplates.1.xml:33
+#: apt-extracttemplates.1.xml:35
msgid ""
"Utility to extract <command>debconf</command> config and templates from "
"Debian packages"
@@ -6978,7 +7094,7 @@ msgstr ""
"partir de pacotes Debian"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:39
+#: apt-extracttemplates.1.xml:41
msgid ""
"<command>apt-extracttemplates</command> will take one or more Debian package "
"files as input and write out (to a temporary directory) all associated "
@@ -6993,12 +7109,12 @@ msgstr ""
"gerada uma linha no formato:"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:44
+#: apt-extracttemplates.1.xml:46
msgid "package version template-file config-script"
msgstr "pacote versão ficheiro-modelo script-de-configuração"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:45
+#: apt-extracttemplates.1.xml:47
msgid ""
"template-file and config-script are written to the temporary directory "
"specified by the <option>-t</option> or <option>--tempdir</option> "
@@ -7013,7 +7129,7 @@ msgstr ""
"<filename>pacote.configuração.XXXX</filename>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-extracttemplates.1.xml:58
+#: apt-extracttemplates.1.xml:60
msgid ""
"Temporary directory in which to write extracted <command>debconf</command> "
"template files and config scripts. Configuration Item: <literal>APT::"
@@ -7024,7 +7140,7 @@ msgstr ""
"<literal>APT::ExtractTemplates::TempDir</literal>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:75
+#: apt-extracttemplates.1.xml:77
msgid ""
"<command>apt-extracttemplates</command> returns zero on normal operation, "
"decimal 100 on error."
@@ -7033,12 +7149,12 @@ msgstr ""
"decimal em erro."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-sortpkgs.1.xml:33
+#: apt-sortpkgs.1.xml:35
msgid "Utility to sort package index files"
msgstr "Utilitário para organizar ficheiros índice de pacotes"
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:39
+#: apt-sortpkgs.1.xml:41
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 "
@@ -7051,7 +7167,7 @@ msgstr ""
"registo de acordo com as regras de organização internas."
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:45
+#: apt-sortpkgs.1.xml:47
msgid ""
"All output is sent to standard output; the input must be a seekable file."
msgstr ""
@@ -7059,7 +7175,7 @@ msgstr ""
"ficheiro pesquisável."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-sortpkgs.1.xml:54
+#: apt-sortpkgs.1.xml:56
msgid ""
"Use source index field ordering. Configuration Item: <literal>APT::"
"SortPkgs::Source</literal>."
@@ -7068,7 +7184,7 @@ msgstr ""
"SortPkgs::Source</literal>."
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:68
+#: apt-sortpkgs.1.xml:70
msgid ""
"<command>apt-sortpkgs</command> returns zero on normal operation, decimal "
"100 on error."
@@ -7077,12 +7193,12 @@ msgstr ""
"em erro."
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-ftparchive.1.xml:33
+#: apt-ftparchive.1.xml:35
msgid "Utility to generate index files"
msgstr "Utilitário para gerar ficheiros de índice"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:39
+#: apt-ftparchive.1.xml:41
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 "
@@ -7095,7 +7211,7 @@ msgstr ""
"baseados no conteúdo desse site."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:43
+#: apt-ftparchive.1.xml:45
msgid ""
"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; "
"program, incorporating its entire functionality via the <literal>packages</"
@@ -7110,7 +7226,7 @@ msgstr ""
"script o processo de geração para um arquivo completo."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:49
+#: apt-ftparchive.1.xml:51
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 "
@@ -7125,7 +7241,7 @@ msgstr ""
"ficheiros e constrói os ficheiros comprimidos desejados."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:60
+#: apt-ftparchive.1.xml:62
msgid ""
"The packages command generates a package file from a directory tree. It "
"takes the given directory and recursively searches it for .deb files, "
@@ -7138,7 +7254,7 @@ msgstr ""
"Este comando é aproximadamente equivalente ao &dpkg-scanpackages;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:65 apt-ftparchive.1.xml:89
+#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91
msgid ""
"The option <option>--db</option> can be used to specify a binary caching DB."
msgstr ""
@@ -7146,7 +7262,7 @@ msgstr ""
"dados de cache binária."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:70
+#: apt-ftparchive.1.xml:72
msgid ""
"The <literal>sources</literal> command generates a source index file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -7159,7 +7275,7 @@ msgstr ""
"Este comando é aproximadamente equivalente ao &dpkg-scansources;."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:75
+#: apt-ftparchive.1.xml:77
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 "
@@ -7171,7 +7287,7 @@ msgstr ""
"fonte que irá ser usado."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:82
+#: apt-ftparchive.1.xml:84
msgid ""
"The <literal>contents</literal> command generates a contents file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -7189,7 +7305,7 @@ msgstr ""
"por uma vírgula na saída."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:94
+#: apt-ftparchive.1.xml:96
msgid ""
"The <literal>release</literal> command generates a Release file from a "
"directory tree. It recursively searches the given directory for uncompressed "
@@ -7213,7 +7329,7 @@ msgstr ""
"contém um resultado de MD5, SHA1 e SHA256 para cada ficheiro."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:104
+#: apt-ftparchive.1.xml:106
msgid ""
"Values for the additional metadata fields in the Release file are taken from "
"the corresponding variables under <literal>APT::FTPArchive::Release</"
@@ -7234,7 +7350,7 @@ msgstr ""
"<literal>Description</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:117
+#: apt-ftparchive.1.xml:119
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 "
@@ -7250,7 +7366,7 @@ msgstr ""
"definições requeridas."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:126
+#: apt-ftparchive.1.xml:128
msgid ""
"The <literal>clean</literal> command tidies the databases used by the given "
"configuration file by removing any records that are no longer necessary."
@@ -7260,12 +7376,12 @@ msgstr ""
"são necessários."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:132
+#: apt-ftparchive.1.xml:134
msgid "The Generate Configuration"
msgstr "A Configuração do Generate"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:134
+#: apt-ftparchive.1.xml:136
msgid ""
"The <literal>generate</literal> command uses a configuration file to "
"describe the archives that are going to be generated. It follows the typical "
@@ -7282,7 +7398,7 @@ msgstr ""
"árvore. Isto apenas afecta o modo de como a etiqueta scope é manuseada."
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:142
+#: apt-ftparchive.1.xml:144
msgid ""
"The generate configuration has four separate sections, each described below."
msgstr ""
@@ -7290,12 +7406,12 @@ msgstr ""
"abaixo."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:144
+#: apt-ftparchive.1.xml:146
msgid "<literal>Dir</literal> Section"
msgstr "Secção <literal>Dir</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:146
+#: apt-ftparchive.1.xml:148
msgid ""
"The <literal>Dir</literal> section defines the standard directories needed "
"to locate the files required during the generation process. These "
@@ -7308,7 +7424,7 @@ msgstr ""
"posteriores para produzir um caminho completo e absoluto."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:153
+#: apt-ftparchive.1.xml:155
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 "
@@ -7318,17 +7434,17 @@ msgstr ""
"directório que contém o <filename>ls-LR</filename> e nós da distribuição."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:160
+#: apt-ftparchive.1.xml:162
msgid "Specifies the location of the override files."
msgstr "Especifica a localização dos ficheiros de sobrepor."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:165
+#: apt-ftparchive.1.xml:167
msgid "Specifies the location of the cache files."
msgstr "Especifica a localização dos ficheiros de cache"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:170
+#: apt-ftparchive.1.xml:172
msgid ""
"Specifies the location of the file list files, if the <literal>FileList</"
"literal> setting is used below."
@@ -7337,12 +7453,12 @@ msgstr ""
"definição <literal>FileList</literal> for usada mais abaixo."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:176
+#: apt-ftparchive.1.xml:178
msgid "<literal>Default</literal> Section"
msgstr "Secção <literal>Default</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:178
+#: apt-ftparchive.1.xml:180
msgid ""
"The <literal>Default</literal> section specifies default values, and "
"settings that control the operation of the generator. Other sections may "
@@ -7353,7 +7469,7 @@ msgstr ""
"sobrepor estas predefinições em uma definição por-secção."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:184
+#: apt-ftparchive.1.xml:186
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 "
@@ -7366,7 +7482,7 @@ msgstr ""
"predefinição para todos os esquemas de compressão é '. gzip'."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:192
+#: apt-ftparchive.1.xml:194
msgid ""
"Sets the default list of file extensions that are package files. This "
"defaults to '.deb'."
@@ -7375,7 +7491,7 @@ msgstr ""
"pacote. A predefinição é '.deb'."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:198
+#: apt-ftparchive.1.xml:200
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Sources files."
@@ -7384,7 +7500,7 @@ msgstr ""
"controla a compressão para os ficheiros das Fontes."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:204
+#: apt-ftparchive.1.xml:206
msgid ""
"Sets the default list of file extensions that are source files. This "
"defaults to '.dsc'."
@@ -7393,7 +7509,7 @@ msgstr ""
"fontes. A predefinição é '.dsc'."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:210
+#: apt-ftparchive.1.xml:212
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Contents files."
@@ -7402,7 +7518,7 @@ msgstr ""
"controla a compressão para os ficheiros de Conteúdos."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:216
+#: apt-ftparchive.1.xml:218
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Translation-en master file."
@@ -7411,7 +7527,7 @@ msgstr ""
"controla a compressão para o ficheiro mestre Translation-en."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:222
+#: apt-ftparchive.1.xml:224
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-"
@@ -7422,7 +7538,7 @@ msgstr ""
"Links</literal> por secção."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:229
+#: apt-ftparchive.1.xml:231
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."
@@ -7432,7 +7548,7 @@ msgstr ""
"independentemente do umask."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:236 apt-ftparchive.1.xml:382
+#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384
msgid ""
"Specifies whether long descriptions should be included in the "
"<filename>Packages</filename> file or split out into a master "
@@ -7443,12 +7559,12 @@ msgstr ""
"<filename>Translation-en</filename> mestre."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:242
+#: apt-ftparchive.1.xml:244
msgid "<literal>TreeDefault</literal> Section"
msgstr "Secção <literal>TreeDefault</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:244
+#: apt-ftparchive.1.xml:246
msgid ""
"Sets defaults specific to <literal>Tree</literal> sections. All of these "
"variables are substitution variables and have the strings $(DIST), "
@@ -7459,7 +7575,7 @@ msgstr ""
"$(DIST), $(SECTION) e $(ARCH) substituídas pelos seus respectivos valores."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:251
+#: apt-ftparchive.1.xml:253
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 "
@@ -7470,7 +7586,7 @@ msgstr ""
"alguns dias todos sejam reconstruídos."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:258
+#: apt-ftparchive.1.xml:260
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. "
@@ -7488,7 +7604,7 @@ msgstr ""
"modo. A predefinição é 10, as unidades são em dias."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:269
+#: apt-ftparchive.1.xml:271
msgid ""
"Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/"
"$(SECTION)/binary-$(ARCH)/</filename>"
@@ -7497,7 +7613,7 @@ msgstr ""
"$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:275
+#: apt-ftparchive.1.xml:277
msgid ""
"Sets the top of the source package directory tree. Defaults to <filename>"
"$(DIST)/$(SECTION)/source/</filename>"
@@ -7506,7 +7622,7 @@ msgstr ""
"<filename>$(DIST)/$(SECTION)/source/</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:281
+#: apt-ftparchive.1.xml:283
msgid ""
"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/"
"binary-$(ARCH)/Packages</filename>"
@@ -7515,7 +7631,7 @@ msgstr ""
"$(SECTION)/binary-$(ARCH)/Packages</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:287
+#: apt-ftparchive.1.xml:289
msgid ""
"Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/"
"source/Sources</filename>"
@@ -7524,7 +7640,7 @@ msgstr ""
"$(SECTION)/source/Sources</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:293
+#: apt-ftparchive.1.xml:295
msgid ""
"Sets the output Translation-en master file with the long descriptions if "
"they should be not included in the Packages file. Defaults to <filename>"
@@ -7535,7 +7651,7 @@ msgstr ""
"$(DIST)/$(SECTION)/i18n/Translation-en</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:300
+#: apt-ftparchive.1.xml:302
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)/</"
@@ -7546,7 +7662,7 @@ msgstr ""
"$(SECTION)/</filename>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:307
+#: apt-ftparchive.1.xml:309
msgid ""
"Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/"
"Contents-$(ARCH)</filename>. If this setting causes multiple Packages files "
@@ -7561,12 +7677,12 @@ msgstr ""
"ficheiros pacotes todos juntos."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:316
+#: apt-ftparchive.1.xml:318
msgid "Sets header file to prepend to the contents output."
msgstr "Define o ficheiro cabeçalho para prefixar a saída de conteúdos."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:321
+#: apt-ftparchive.1.xml:323
msgid ""
"Sets the binary cache database to use for this section. Multiple sections "
"can share the same database."
@@ -7575,7 +7691,7 @@ msgstr ""
"secções podem partilhar a mesma base de dados."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:327
+#: apt-ftparchive.1.xml:329
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -7587,7 +7703,7 @@ msgstr ""
"arquivo."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:334
+#: apt-ftparchive.1.xml:336
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -7600,12 +7716,12 @@ msgstr ""
"arquivo. Isto é usado quando se processa índices de fonte."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:342
+#: apt-ftparchive.1.xml:344
msgid "<literal>Tree</literal> Section"
msgstr "Secção <literal>Tree</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:344
+#: apt-ftparchive.1.xml:346
msgid ""
"The <literal>Tree</literal> section defines a standard Debian file tree "
"which consists of a base directory, then multiple sections in that base "
@@ -7620,7 +7736,7 @@ msgstr ""
"<literal>Directory</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:349
+#: apt-ftparchive.1.xml:351
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 "
@@ -7633,7 +7749,7 @@ msgstr ""
"definição tal como <filename>dists/&stable-codename;</filename>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:354
+#: apt-ftparchive.1.xml:356
msgid ""
"All of the settings defined in the <literal>TreeDefault</literal> section "
"can be used in a <literal>Tree</literal> section as well as three new "
@@ -7644,7 +7760,7 @@ msgstr ""
"variáveis."
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt-ftparchive.1.xml:360
+#: apt-ftparchive.1.xml:362
#, no-wrap
msgid ""
"for i in Sections do \n"
@@ -7658,7 +7774,7 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:357
+#: apt-ftparchive.1.xml:359
msgid ""
"When processing a <literal>Tree</literal> section <command>apt-ftparchive</"
"command> performs an operation similar to: <placeholder type=\"programlisting"
@@ -7669,7 +7785,7 @@ msgstr ""
"\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:368
+#: apt-ftparchive.1.xml:370
msgid ""
"This is a space separated list of sections which appear under the "
"distribution; typically this is something like <literal>main contrib non-"
@@ -7680,7 +7796,7 @@ msgstr ""
"literal>"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:375
+#: apt-ftparchive.1.xml:377
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 "
@@ -7691,7 +7807,7 @@ msgstr ""
"indicar que esta árvore tem um arquivo fonte."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:388
+#: apt-ftparchive.1.xml:390
msgid ""
"Sets the binary override file. The override file contains section, priority "
"and maintainer address information."
@@ -7700,7 +7816,7 @@ msgstr ""
"informação de secção, prioridade e endereço do responsável."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:394
+#: apt-ftparchive.1.xml:396
msgid ""
"Sets the source override file. The override file contains section "
"information."
@@ -7709,22 +7825,22 @@ msgstr ""
"informação de secção."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:400 apt-ftparchive.1.xml:446
+#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448
msgid "Sets the binary extra override file."
msgstr "Define o ficheiro de sobreposição extra binário."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:405 apt-ftparchive.1.xml:451
+#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453
msgid "Sets the source extra override file."
msgstr "Define o ficheiro de sobreposição extra fonte."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:410
+#: apt-ftparchive.1.xml:412
msgid "<literal>BinDirectory</literal> Section"
msgstr "Secção <literal>BinDirectory</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:412
+#: apt-ftparchive.1.xml:414
msgid ""
"The <literal>bindirectory</literal> section defines a binary directory tree "
"with no special structure. The scope tag specifies the location of the "
@@ -7739,12 +7855,12 @@ msgstr ""
"definições <literal>Section</literal><literal>Architecture</literal>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:420
+#: apt-ftparchive.1.xml:422
msgid "Sets the Packages file output."
msgstr "Define a saída do ficheiro Packages."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:425
+#: apt-ftparchive.1.xml:427
msgid ""
"Sets the Sources file output. At least one of <literal>Packages</literal> or "
"<literal>Sources</literal> is required."
@@ -7753,42 +7869,42 @@ msgstr ""
"<literal>Packages</literal> ou <literal>Sources</literal>."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:431
+#: apt-ftparchive.1.xml:433
msgid "Sets the Contents file output (optional)."
msgstr "Define a saída do ficheiro Contents (opcional)"
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:436
+#: apt-ftparchive.1.xml:438
msgid "Sets the binary override file."
msgstr "Define o ficheiro de sobreposição binário."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:441
+#: apt-ftparchive.1.xml:443
msgid "Sets the source override file."
msgstr "Define o ficheiro de sobreposição fonte."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:456
+#: apt-ftparchive.1.xml:458
msgid "Sets the cache DB."
msgstr "Define a base de dados de cache."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:461
+#: apt-ftparchive.1.xml:463
msgid "Appends a path to all the output paths."
msgstr "Acrescenta um caminho a todos os caminhos de saída."
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:466
+#: apt-ftparchive.1.xml:468
msgid "Specifies the file list file."
msgstr "Especifica o ficheiro de lista de ficheiros."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:473
+#: apt-ftparchive.1.xml:475
msgid "The Binary Override File"
msgstr "O Ficheiro Binary Override"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:474
+#: apt-ftparchive.1.xml:476
msgid ""
"The binary override file is fully compatible with &dpkg-scanpackages;. It "
"contains four fields separated by spaces. The first field is the package "
@@ -7803,19 +7919,19 @@ msgstr ""
"permutação do responsável."
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:480
+#: apt-ftparchive.1.xml:482
#, no-wrap
msgid "old [// oldn]* => new"
msgstr "old [// oldn]* => new"
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:482
+#: apt-ftparchive.1.xml:484
#, no-wrap
msgid "new"
msgstr "new"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:479
+#: apt-ftparchive.1.xml:481
msgid ""
"The general form of the maintainer field is: <placeholder type="
"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" "
@@ -7832,12 +7948,12 @@ msgstr ""
"formato substitui incondicionalmente o campo do responsável."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:490
+#: apt-ftparchive.1.xml:492
msgid "The Source Override File"
msgstr "O Ficheiro Source Override"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:492
+#: apt-ftparchive.1.xml:494
msgid ""
"The source override file is fully compatible with &dpkg-scansources;. It "
"contains two fields separated by spaces. The first field is the source "
@@ -7848,12 +7964,12 @@ msgstr ""
"nome de pacote fonte, o segundo é a secção onde o atribuir."
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:497
+#: apt-ftparchive.1.xml:499
msgid "The Extra Override File"
msgstr "O Ficheiro Extra Override"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:499
+#: apt-ftparchive.1.xml:501
msgid ""
"The extra override file allows any arbitrary tag to be added or replaced in "
"the output. It has three columns, the first is the package, the second is "
@@ -7864,7 +7980,7 @@ msgstr ""
"pacote, a segunda é a etiqueta e restante da linha é o novo valor."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:510
+#: apt-ftparchive.1.xml:512
msgid ""
"Generate the given checksum. These options default to on, when turned off "
"the generated index files will not have the checksum fields where possible. "
@@ -7888,7 +8004,7 @@ msgstr ""
"<literal>MD5</literal>, <literal>SHA1</literal> ou <literal>SHA256</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:521
+#: apt-ftparchive.1.xml:523
msgid ""
"Use a binary caching DB. This has no effect on the generate command. "
"Configuration Item: <literal>APT::FTPArchive::DB</literal>."
@@ -7897,7 +8013,7 @@ msgstr ""
"generate. Item de configuração: <literal>APT::FTPArchive::DB</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:527
+#: apt-ftparchive.1.xml:529
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 "
@@ -7911,7 +8027,7 @@ msgstr ""
"<literal>quiet</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:535
+#: apt-ftparchive.1.xml:537
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 "
@@ -7924,7 +8040,7 @@ msgstr ""
"option>. Item de Configuração: <literal>APT::FTPArchive::DeLinkAct</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:543
+#: apt-ftparchive.1.xml:545
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 "
@@ -7940,7 +8056,7 @@ msgstr ""
"de Configuração: <literal>APT::FTPArchive::Contents</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:553
+#: apt-ftparchive.1.xml:555
msgid ""
"Select the source override file to use with the <literal>sources</literal> "
"command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
@@ -7951,7 +8067,7 @@ msgstr ""
"SourceOverride</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:559
+#: apt-ftparchive.1.xml:561
msgid ""
"Make the caching databases read only. Configuration Item: <literal>APT::"
"FTPArchive::ReadOnlyDB</literal>."
@@ -7960,7 +8076,7 @@ msgstr ""
"<literal>APT::FTPArchive::ReadOnlyDB</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:564
+#: apt-ftparchive.1.xml:566
msgid ""
"Accept in the <literal>packages</literal> and <literal>contents</literal> "
"commands only package files matching <literal>*_arch.deb</literal> or "
@@ -7974,7 +8090,7 @@ msgstr ""
"FTPArchive::Architecture</literal>."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:572
+#: apt-ftparchive.1.xml:574
msgid ""
"&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
"packages are recompiled and/or republished with the same version again, this "
@@ -7998,7 +8114,7 @@ msgstr ""
"as verificações extras serão desnecessárias."
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:584
+#: apt-ftparchive.1.xml:586
msgid ""
"This configuration option defaults to \"<literal>true</literal>\" and should "
"only be set to <literal>\"false\"</literal> if the Archive generated with "
@@ -8013,13 +8129,13 @@ msgstr ""
"<filename>Translation-en</filename> só pode ser criado no comando generate."
#. type: Content of: <refentry><refsect1><para><programlisting>
-#: apt-ftparchive.1.xml:602
+#: apt-ftparchive.1.xml:604
#, no-wrap
msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
msgstr "<command>apt-ftparchive</command> pacotes <replaceable>directório</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:598
+#: apt-ftparchive.1.xml:600
msgid ""
"To create a compressed Packages file for a directory containing binary "
"packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@ -8028,7 +8144,7 @@ msgstr ""
"pacotes binários (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:612
+#: apt-ftparchive.1.xml:614
msgid ""
"<command>apt-ftparchive</command> returns zero on normal operation, decimal "
"100 on error."
diff --git a/doc/po/pt_BR.po b/doc/po/pt_BR.po
index a5df9e80e..e33b40c44 100644
--- a/doc/po/pt_BR.po
+++ b/doc/po/pt_BR.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-06-13 13:46+0300\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2004-09-20 17:02+0000\n"
"Last-Translator: André Luís Lopes <andrelop@debian.org>\n"
"Language-Team: <debian-l10n-portuguese@lists.debian.org>\n"
@@ -480,35 +480,35 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-get.8.xml:26 apt-cache.8.xml:26 apt-key.8.xml:25 apt-mark.8.xml:26
-#: apt-secure.8.xml:25 apt-cdrom.8.xml:25 apt-config.8.xml:26
+#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28
+#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28
msgid "8"
msgstr ""
#. type: Content of: <refentry><refmeta><refmiscinfo>
-#: apt-get.8.xml:27 apt-cache.8.xml:27 apt-key.8.xml:26 apt-mark.8.xml:27
-#: apt-secure.8.xml:26 apt-cdrom.8.xml:26 apt-config.8.xml:27
-#: apt.conf.5.xml:32 apt_preferences.5.xml:26 sources.list.5.xml:27
-#: apt-extracttemplates.1.xml:27 apt-sortpkgs.1.xml:27 apt-ftparchive.1.xml:27
+#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29
+#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29
+#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29
+#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29
msgid "APT"
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-get.8.xml:33
+#: apt-get.8.xml:35
msgid "APT package handling utility -- command-line interface"
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:38 apt-cache.8.xml:38 apt-key.8.xml:37 apt-mark.8.xml:38
-#: apt-secure.8.xml:50 apt-cdrom.8.xml:37 apt-config.8.xml:38
-#: apt.conf.5.xml:41 apt_preferences.5.xml:36 sources.list.5.xml:36
-#: apt-extracttemplates.1.xml:38 apt-sortpkgs.1.xml:38 apt-ftparchive.1.xml:38
+#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40
+#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40
+#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38
+#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40
#, fuzzy
msgid "Description"
msgstr "Descrição"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:39
+#: apt-get.8.xml:41
msgid ""
"<command>apt-get</command> is the command-line tool for handling packages, "
"and may be considered the user's \"back-end\" to other tools using the APT "
@@ -517,15 +517,15 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:44 apt-cache.8.xml:44 apt-cdrom.8.xml:51 apt-config.8.xml:44
-#: apt-ftparchive.1.xml:54
+#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46
+#: apt-ftparchive.1.xml:56
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><listitem><para>
-#: apt-get.8.xml:49
+#: apt-get.8.xml:51
msgid ""
"<literal>update</literal> is used to resynchronize the package index files "
"from their sources. The indexes of available packages are fetched from the "
@@ -539,7 +539,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:61
+#: apt-get.8.xml:63
msgid ""
"<literal>upgrade</literal> is used to install the newest versions of all "
"packages currently installed on the system from the sources enumerated in "
@@ -554,7 +554,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:74
+#: apt-get.8.xml:76
msgid ""
"<literal>dist-upgrade</literal> in addition to performing the function of "
"<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@ -569,7 +569,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:87
+#: apt-get.8.xml:89
msgid ""
"<literal>dselect-upgrade</literal> is used in conjunction with the "
"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@ -580,7 +580,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:98
+#: apt-get.8.xml:100
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 "
@@ -597,7 +597,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:116
+#: apt-get.8.xml:118
msgid ""
"A specific version of a package can be selected for installation by "
"following the package name with an equals and the version of the package to "
@@ -608,14 +608,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:123
+#: apt-get.8.xml:125
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:126
+#: apt-get.8.xml:128
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. "
@@ -627,14 +627,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:137
+#: apt-get.8.xml:139
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:141
+#: apt-get.8.xml:143
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 "
@@ -646,7 +646,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:151
+#: apt-get.8.xml:153
msgid ""
"<literal>remove</literal> is identical to <literal>install</literal> except "
"that packages are removed instead of installed. Note that removing a package "
@@ -656,7 +656,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:159
+#: apt-get.8.xml:161
msgid ""
"<literal>purge</literal> is identical to <literal>remove</literal> except "
"that packages are removed and purged (any configuration files are deleted "
@@ -664,7 +664,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:164
+#: apt-get.8.xml:166
msgid ""
"<literal>source</literal> causes <command>apt-get</command> to fetch source "
"packages. APT will examine the available packages to decide which source "
@@ -676,7 +676,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:172
+#: apt-get.8.xml:174
msgid ""
"Source packages are tracked separately from binary packages via <literal>deb-"
"src</literal> lines in the &sources-list; file. This means that you will "
@@ -686,7 +686,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:178
+#: apt-get.8.xml:180
msgid ""
"If the <option>--compile</option> option is specified then the package will "
"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
@@ -696,7 +696,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:185
+#: apt-get.8.xml:187
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 "
@@ -706,7 +706,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:191
+#: apt-get.8.xml:193
msgid ""
"Note that source packages are not installed and tracked in the "
"<command>dpkg</command> database like binary packages; they are simply "
@@ -714,7 +714,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:197
+#: apt-get.8.xml:199
msgid ""
"<literal>build-dep</literal> causes apt-get to install/remove packages in an "
"attempt to satisfy the build dependencies for a source package. By default "
@@ -724,21 +724,21 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:204
+#: apt-get.8.xml:206
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:209
+#: apt-get.8.xml:211
msgid ""
"<literal>download</literal> will download the given binary package into the "
"current directory."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:215
+#: apt-get.8.xml:217
msgid ""
"<literal>clean</literal> clears out the local repository of retrieved "
"package files. It removes everything but the lock file from "
@@ -750,7 +750,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:225
+#: apt-get.8.xml:227
msgid ""
"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
"local repository of retrieved package files. The difference is that it only "
@@ -762,7 +762,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:235
+#: apt-get.8.xml:237
msgid ""
"<literal>autoremove</literal> is used to remove packages that were "
"automatically installed to satisfy dependencies for other packages and are "
@@ -770,7 +770,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:240
+#: apt-get.8.xml:242
msgid ""
"<literal>changelog</literal> downloads a package changelog and displays it "
"through <command>sensible-pager</command>. The server name and base "
@@ -784,35 +784,35 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:258 apt-cache.8.xml:248 apt-mark.8.xml:108
-#: apt-config.8.xml:84 apt-extracttemplates.1.xml:52 apt-sortpkgs.1.xml:48
-#: apt-ftparchive.1.xml:504
+#: apt-get.8.xml:260 apt-cache.8.xml:250 apt-mark.8.xml:110
+#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50
+#: apt-ftparchive.1.xml:506
msgid "options"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:263
+#: apt-get.8.xml:265
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><listitem><para>
-#: apt-get.8.xml:268
+#: apt-get.8.xml:270
msgid ""
"Consider suggested packages as a dependency for installing. Configuration "
"Item: <literal>APT::Install-Suggests</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:273
+#: apt-get.8.xml:275
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><listitem><para>
-#: apt-get.8.xml:278
+#: apt-get.8.xml:280
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 "
@@ -828,7 +828,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:293
+#: apt-get.8.xml:295
msgid ""
"Ignore missing packages; if packages cannot be retrieved or fail the "
"integrity check after retrieval (corrupted package files), hold back those "
@@ -840,7 +840,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:304
+#: apt-get.8.xml:306
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 "
@@ -848,7 +848,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:311
+#: apt-get.8.xml:313
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 "
@@ -860,7 +860,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:326
+#: apt-get.8.xml:328
msgid ""
"No action; perform a simulation of events that would occur but do not "
"actually change the system. Configuration Item: <literal>APT::Get::"
@@ -868,7 +868,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:330
+#: apt-get.8.xml:332
msgid ""
"Simulated runs performed as a user will automatically deactivate locking "
"(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::"
@@ -880,7 +880,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:338
+#: apt-get.8.xml:340
msgid ""
"Simulated runs print out a series of lines, each representing a "
"<command>dpkg</command> operation: configure (<literal>Conf</literal>), "
@@ -890,7 +890,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:346
+#: apt-get.8.xml:348
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 "
@@ -900,28 +900,28 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:354
+#: apt-get.8.xml:356
msgid ""
"Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::"
"Assume-No</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:359
+#: apt-get.8.xml:361
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><listitem><para>
-#: apt-get.8.xml:365
+#: apt-get.8.xml:367
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><listitem><para>
-#: apt-get.8.xml:371
+#: apt-get.8.xml:373
msgid ""
"This option controls the architecture packages are built for by <command>apt-"
"get source --compile</command> and how cross-builddependencies are "
@@ -932,14 +932,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:381
+#: apt-get.8.xml:383
msgid ""
"Compile source packages after downloading them. Configuration Item: "
"<literal>APT::Get::Compile</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:386
+#: apt-get.8.xml:388
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 "
@@ -948,7 +948,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:393
+#: apt-get.8.xml:395
+msgid ""
+"Allow installing new packages when used in conjunction with "
+"<literal>upgrade</literal>. This is useful if the update of a installed "
+"package requires new dependencies to be installed. Instead of holding the "
+"package back <literal>upgrade</literal> will upgrade the package and install "
+"the new dependencies. Note that <literal>upgrade</literal> with this option "
+"will never remove packages, only allow adding new ones. Configuration Item: "
+"<literal>APT::Get::Upgrade-Allow-New</literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:407
msgid ""
"Do not upgrade packages; when used in conjunction with <literal>install</"
"literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@ -957,7 +969,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:400
+#: apt-get.8.xml:414
msgid ""
"Do not install new packages; when used in conjunction with <literal>install</"
"literal>, <literal>only-upgrade</literal> will install upgrades for already "
@@ -966,7 +978,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:408
+#: apt-get.8.xml:422
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 "
@@ -976,7 +988,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:416
+#: apt-get.8.xml:430
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 "
@@ -989,7 +1001,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:427
+#: apt-get.8.xml:441
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. "
@@ -998,14 +1010,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:435
+#: apt-get.8.xml:449
msgid ""
"Re-install packages that are already installed and at the newest version. "
"Configuration Item: <literal>APT::Get::ReInstall</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:440
+#: apt-get.8.xml:454
msgid ""
"This option is on by default; use <literal>--no-list-cleanup</literal> to "
"turn it off. When it is on, <command>apt-get</command> will automatically "
@@ -1016,7 +1028,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:450
+#: apt-get.8.xml:464
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 "
@@ -1030,7 +1042,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:465
+#: apt-get.8.xml:479
msgid ""
"Only perform operations that are 'trivial'. Logically this can be considered "
"related to <option>--assume-yes</option>; where <option>--assume-yes</"
@@ -1039,14 +1051,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:472
+#: apt-get.8.xml:486
msgid ""
"If any packages are to be removed apt-get immediately aborts without "
"prompting. Configuration Item: <literal>APT::Get::Remove</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:478
+#: apt-get.8.xml:492
msgid ""
"If the command is either <literal>install</literal> or <literal>remove</"
"literal>, then this option acts like running the <literal>autoremove</"
@@ -1055,7 +1067,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:485
+#: apt-get.8.xml:499
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 "
@@ -1067,7 +1079,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:496
+#: apt-get.8.xml:510
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</"
@@ -1075,38 +1087,48 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:502
+#: apt-get.8.xml:516
msgid ""
"Only process architecture-dependent build-dependencies. Configuration Item: "
"<literal>APT::Get::Arch-Only</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-get.8.xml:507
+#: apt-get.8.xml:521
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><variablelist><varlistentry><listitem><para>
+#: apt-get.8.xml:527
+msgid ""
+"Show user friendly progress information in the terminal window when packages "
+"are installed, upgraded or removed. For a machine parsable version of this "
+"data see README.progress-reporting in the apt doc directory. Configuration "
+"Item: <literal>DpkgPM::Progress</literal> and <literal>Dpkg::Progress-Fancy</"
+"literal>."
+msgstr ""
+
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125
-#: apt.conf.5.xml:1167 apt_preferences.5.xml:698
+#: apt-get.8.xml:540 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127
+#: apt.conf.5.xml:1200 apt_preferences.5.xml:700
msgid "Files"
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131
-#: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109
-#: apt.conf.5.xml:1173 apt_preferences.5.xml:705 sources.list.5.xml:252
-#: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63
-#: apt-ftparchive.1.xml:607
+#: apt-get.8.xml:550 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133
+#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111
+#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:258
+#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65
+#: apt-ftparchive.1.xml:609
#, fuzzy
msgid "See Also"
msgstr "Consulte também"
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:529
+#: apt-get.8.xml:551
msgid ""
"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@ -1114,26 +1136,26 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-get.8.xml:534 apt-cache.8.xml:355 apt-mark.8.xml:135
-#: apt-cdrom.8.xml:149 apt-config.8.xml:114 apt-extracttemplates.1.xml:74
-#: apt-sortpkgs.1.xml:67 apt-ftparchive.1.xml:611
+#: apt-get.8.xml:556 apt-cache.8.xml:357 apt-mark.8.xml:137
+#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76
+#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613
msgid "Diagnostics"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-get.8.xml:535
+#: apt-get.8.xml:557
msgid ""
"<command>apt-get</command> returns zero on normal operation, decimal 100 on "
"error."
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-cache.8.xml:33
+#: apt-cache.8.xml:35
msgid "query the APT cache"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:39
+#: apt-cache.8.xml:41
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 "
@@ -1142,21 +1164,21 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:49
+#: apt-cache.8.xml:51
msgid ""
"<literal>gencaches</literal> creates APT's package cache. This is done "
"implicitly by all commands needing this cache if it is missing or outdated."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-cache.8.xml:53 apt-cache.8.xml:142 apt-cache.8.xml:163
-#: apt-cache.8.xml:185 apt-cache.8.xml:190 apt-cache.8.xml:206
-#: apt-cache.8.xml:224 apt-cache.8.xml:236
+#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165
+#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208
+#: apt-cache.8.xml:226 apt-cache.8.xml:238
msgid "&synopsis-pkg;"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:54
+#: apt-cache.8.xml:56
msgid ""
"<literal>showpkg</literal> displays information about the packages listed on "
"the command line. Remaining arguments are package names. The available "
@@ -1170,7 +1192,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-cache.8.xml:66
+#: apt-cache.8.xml:68
#, no-wrap
msgid ""
"Package: libreadline2\n"
@@ -1186,7 +1208,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:78
+#: apt-cache.8.xml:80
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, "
@@ -1198,21 +1220,21 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:87
+#: apt-cache.8.xml:89
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:90
+#: apt-cache.8.xml:92
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:94
+#: apt-cache.8.xml:96
msgid ""
"<literal>Normal packages</literal> is the number of regular, ordinary "
"package names; these are packages that bear a one-to-one correspondence "
@@ -1221,7 +1243,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:100
+#: apt-cache.8.xml:102
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 "
@@ -1232,7 +1254,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:108
+#: apt-cache.8.xml:110
msgid ""
"<literal>Single virtual packages</literal> is the number of packages with "
"only one package providing a particular virtual package. For example, in the "
@@ -1241,7 +1263,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:114
+#: apt-cache.8.xml:116
msgid ""
"<literal>Mixed virtual packages</literal> is the number of packages that "
"either provide a particular virtual package or have the virtual package name "
@@ -1250,7 +1272,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:121
+#: apt-cache.8.xml:123
msgid ""
"<literal>Missing</literal> is the number of package names that were "
"referenced in a dependency but were not provided by any package. Missing "
@@ -1260,7 +1282,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:128
+#: apt-cache.8.xml:130
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 "
@@ -1270,14 +1292,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para>
-#: apt-cache.8.xml:135
+#: apt-cache.8.xml:137
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><listitem><para>
-#: apt-cache.8.xml:143
+#: apt-cache.8.xml:145
msgid ""
"<literal>showsrc</literal> displays all the source package records that "
"match the given package names. All versions are shown, as well as all "
@@ -1285,40 +1307,40 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:149
+#: apt-cache.8.xml:151
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><listitem><para>
-#: apt-cache.8.xml:154
+#: apt-cache.8.xml:156
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><listitem><para>
-#: apt-cache.8.xml:159
+#: apt-cache.8.xml:161
msgid ""
"<literal>unmet</literal> displays a summary of all unmet dependencies in the "
"package cache."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:164
+#: apt-cache.8.xml:166
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><option><replaceable>
-#: apt-cache.8.xml:169
+#: apt-cache.8.xml:171
msgid "&synopsis-regex;"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:170
+#: apt-cache.8.xml:172
msgid ""
"<literal>search</literal> performs a full text search on all available "
"package lists for the POSIX regex pattern given, see &regex;. It searches "
@@ -1331,28 +1353,28 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:181
+#: apt-cache.8.xml:183
msgid ""
"Separate arguments can be used to specify multiple search patterns that are "
"and'ed together."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:186
+#: apt-cache.8.xml:188
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><listitem><para>
-#: apt-cache.8.xml:191
+#: apt-cache.8.xml:193
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:195
+#: apt-cache.8.xml:197
#, fuzzy
msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>"
msgstr ""
@@ -1360,7 +1382,7 @@ msgstr ""
"apt-get install <replaceable>pacote</replaceable>/testing\n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:196
+#: apt-cache.8.xml:198
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 "
@@ -1370,7 +1392,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:201
+#: apt-cache.8.xml:203
msgid ""
"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 "
@@ -1378,7 +1400,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:207
+#: apt-cache.8.xml:209
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."
@@ -1391,7 +1413,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:216
+#: apt-cache.8.xml:218
msgid ""
"The resulting nodes will have several shapes; normal packages are boxes, "
"pure virtual packages are triangles, mixed virtual packages are diamonds, "
@@ -1400,19 +1422,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:221
+#: apt-cache.8.xml:223
msgid "Caution, dotty cannot graph larger sets of packages."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:225
+#: apt-cache.8.xml:227
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:229
+#: apt-cache.8.xml:231
#, fuzzy
msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>"
msgstr ""
@@ -1420,7 +1442,7 @@ msgstr ""
"apt-get install <replaceable>pacote</replaceable>/testing\n"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:230
+#: apt-cache.8.xml:232
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 "
@@ -1429,7 +1451,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:237
+#: apt-cache.8.xml:239
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 "
@@ -1441,7 +1463,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:253
+#: apt-cache.8.xml:255
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::"
@@ -1449,7 +1471,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:259
+#: apt-cache.8.xml:261
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 "
@@ -1459,7 +1481,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:267
+#: apt-cache.8.xml:269
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 "
@@ -1468,7 +1490,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:274
+#: apt-cache.8.xml:276
msgid ""
"Print only important dependencies; for use with <literal>unmet</literal> and "
"<literal>depends</literal>. Causes only Depends and Pre-Depends relations to "
@@ -1476,7 +1498,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:288
+#: apt-cache.8.xml:290
msgid ""
"Per default the <literal>depends</literal> and <literal>rdepends</literal> "
"print all dependencies. This can be tweaked with these flags which will omit "
@@ -1486,14 +1508,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:295
+#: apt-cache.8.xml:297
msgid ""
"Print full package records when searching. Configuration Item: "
"<literal>APT::Cache::ShowFull</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:300
+#: apt-cache.8.xml:302
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-"
@@ -1504,7 +1526,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:309
+#: apt-cache.8.xml:311
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</"
@@ -1512,14 +1534,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:315
+#: apt-cache.8.xml:317
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><listitem><para>
-#: apt-cache.8.xml:320
+#: apt-cache.8.xml:322
msgid ""
"Make <literal>pkgnames</literal> print all names, including virtual packages "
"and missing dependencies. Configuration Item: <literal>APT::Cache::"
@@ -1527,7 +1549,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:326
+#: apt-cache.8.xml:328
msgid ""
"Make <literal>depends</literal> and <literal>rdepends</literal> recursive so "
"that all packages mentioned are printed once. Configuration Item: "
@@ -1535,7 +1557,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cache.8.xml:333
+#: apt-cache.8.xml:335
msgid ""
"Limit the output of <literal>depends</literal> and <literal>rdepends</"
"literal> to packages which are currently installed. Configuration Item: "
@@ -1543,24 +1565,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:351
+#: apt-cache.8.xml:353
msgid "&apt-conf;, &sources-list;, &apt-get;"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cache.8.xml:356
+#: apt-cache.8.xml:358
msgid ""
"<command>apt-cache</command> returns zero on normal operation, decimal 100 "
"on error."
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-key.8.xml:32
+#: apt-key.8.xml:34
msgid "APT key management utility"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:39
+#: apt-key.8.xml:41
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 "
@@ -1568,12 +1590,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:45
+#: apt-key.8.xml:47
msgid "Commands"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:50
+#: apt-key.8.xml:52
msgid ""
"Add a new key to the list of trusted keys. The key is read from the "
"filename given with the parameter &synopsis-param-filename; or if the "
@@ -1581,49 +1603,48 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:63
+#: apt-key.8.xml:65
msgid "Remove a key from the list of trusted keys."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:74
+#: apt-key.8.xml:76
msgid "Output the key &synopsis-param-keyid; to standard output."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:85
+#: apt-key.8.xml:87
msgid "Output all trusted keys to standard output."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:96
+#: apt-key.8.xml:98
msgid "List trusted keys."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:107
+#: apt-key.8.xml:109
msgid "List fingerprints of trusted keys."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:118
+#: apt-key.8.xml:120
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:130
+#: apt-key.8.xml:132
msgid ""
"Update the local keyring with the archive keyring and remove from the local "
"keyring the archive keys which are no longer valid. The archive keyring is "
"shipped in the <literal>archive-keyring</literal> package of your "
-"distribution, e.g. the &keyring-package; package in "
-"&keyring-distro;."
+"distribution, e.g. the &keyring-package; package in &keyring-distro;."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:144
+#: apt-key.8.xml:146
msgid ""
"Perform an update working similarly to the <command>update</command> command "
"above, but get the archive keyring from a URI instead and validate it "
@@ -1634,19 +1655,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-key.8.xml:160 apt-cdrom.8.xml:80
+#: apt-key.8.xml:162 apt-cdrom.8.xml:82
msgid "Options"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:161
+#: apt-key.8.xml:163
msgid ""
"Note that options need to be defined before the commands described in the "
"previous section."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:164
+#: apt-key.8.xml:166
msgid ""
"With this option it is possible to specify a particular keyring file the "
"command should operate on. The default is that a command is executed on the "
@@ -1657,57 +1678,56 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:179
+#: apt-key.8.xml:181
#, fuzzy
msgid "<filename>/etc/apt/trustdb.gpg</filename>"
msgstr "<filename>/etc/apt.conf</>"
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:180
+#: apt-key.8.xml:182
msgid "Local trust database of archive keys."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:183
+#: apt-key.8.xml:185
msgid "&keyring-filename;"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:184
+#: apt-key.8.xml:186
msgid "Keyring of &keyring-distro; archive trusted keys."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt-key.8.xml:187
-msgid ""
-"&keyring-removed-filename;"
+#: apt-key.8.xml:189
+msgid "&keyring-removed-filename;"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-key.8.xml:188
+#: apt-key.8.xml:190
msgid "Keyring of &keyring-distro; archive removed trusted keys."
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-key.8.xml:197
+#: apt-key.8.xml:199
#, fuzzy
msgid "&apt-get;, &apt-secure;"
msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-mark.8.xml:33
+#: apt-mark.8.xml:35
msgid "mark/unmark a package as being automatically-installed"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:39
+#: apt-mark.8.xml:41
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:43
+#: apt-mark.8.xml:45
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 "
@@ -1717,7 +1737,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:52
+#: apt-mark.8.xml:54
msgid ""
"<literal>auto</literal> is used to mark a package as being automatically "
"installed, which will cause the package to be removed when no more manually "
@@ -1725,7 +1745,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:60
+#: apt-mark.8.xml:62
msgid ""
"<literal>manual</literal> is used to mark a package as being manually "
"installed, which will prevent the package from being automatically removed "
@@ -1733,7 +1753,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:68
+#: apt-mark.8.xml:70
msgid ""
"<literal>hold</literal> is used to mark a package as held back, which will "
"prevent the package from being automatically installed, upgraded or "
@@ -1743,14 +1763,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:78
+#: apt-mark.8.xml:80
msgid ""
"<literal>unhold</literal> is used to cancel a previously set hold on a "
"package to allow all actions again."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:84
+#: apt-mark.8.xml:86
msgid ""
"<literal>showauto</literal> is used to print a list of automatically "
"installed packages with each package on a new line. All automatically "
@@ -1759,7 +1779,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:92
+#: apt-mark.8.xml:94
msgid ""
"<literal>showmanual</literal> can be used in the same way as "
"<literal>showauto</literal> except that it will print a list of manually "
@@ -1767,14 +1787,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:99
+#: apt-mark.8.xml:101
msgid ""
"<literal>showhold</literal> is used to print a list of packages on hold in "
"the same way as for the other show commands."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-mark.8.xml:115
+#: apt-mark.8.xml:117
msgid ""
"Read/Write package stats from the filename given with the parameter "
"&synopsis-param-filename; instead of from the default location, which is "
@@ -1783,19 +1803,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-mark.8.xml:136
+#: apt-mark.8.xml:138
msgid ""
"<command>apt-mark</command> returns zero on normal operation, non-zero on "
"error."
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-secure.8.xml:47
+#: apt-secure.8.xml:49
msgid "Archive authentication support for APT"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:52
+#: apt-secure.8.xml:54
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 "
@@ -1804,7 +1824,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:60
+#: apt-secure.8.xml:62
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 "
@@ -1814,19 +1834,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:69
+#: apt-secure.8.xml:71
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:74
+#: apt-secure.8.xml:76
msgid "Trusted archives"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:77
+#: apt-secure.8.xml:79
msgid ""
"The chain of trust from an apt archive to the end user is made up of several "
"steps. <command>apt-secure</command> is the last step in this chain; "
@@ -1837,7 +1857,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:85
+#: apt-secure.8.xml:87
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 "
@@ -1846,7 +1866,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:92
+#: apt-secure.8.xml:94
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. In order to become "
@@ -1857,20 +1877,20 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:102
+#: apt-secure.8.xml:104
msgid ""
"Once the uploaded package is verified and included in the archive, the "
"maintainer signature is stripped off, and checksums of the package are "
"computed and put in the Packages file. The checksums 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 for this &keyring-distro; release, and distributed "
-"alongside the packages and the Packages files on &keyring-distro; mirrors. The keys "
-"are in the &keyring-distro; archive keyring available in the &keyring-package; "
-"package."
+"then signed by the archive key for this &keyring-distro; release, and "
+"distributed alongside the packages and the Packages files on &keyring-"
+"distro; mirrors. The keys are in the &keyring-distro; archive keyring "
+"available in the &keyring-package; package."
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:113
+#: apt-secure.8.xml:115
msgid ""
"End users can check the signature of the Release file, extract a checksum of "
"a package from it and compare it with the checksum of the package they "
@@ -1878,14 +1898,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:118
+#: apt-secure.8.xml:120
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:123
+#: apt-secure.8.xml:125
msgid ""
"<literal>Network \"man in the middle\" attacks</literal>. Without signature "
"checking, malicious agents can introduce themselves into the package "
@@ -1895,7 +1915,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:131
+#: apt-secure.8.xml:133
msgid ""
"<literal>Mirror network compromise</literal>. Without signature checking, a "
"malicious agent can compromise a mirror host and modify the files in it to "
@@ -1904,7 +1924,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:138
+#: apt-secure.8.xml:140
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 "
@@ -1913,12 +1933,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:144
+#: apt-secure.8.xml:146
msgid "User configuration"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:146
+#: apt-secure.8.xml:148
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 "
@@ -1927,7 +1947,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:153
+#: apt-secure.8.xml:155
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 "
@@ -1938,19 +1958,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:162
+#: apt-secure.8.xml:164
msgid "Archive configuration"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:164
+#: apt-secure.8.xml:166
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:169
+#: apt-secure.8.xml:171
msgid ""
"<emphasis>Create a toplevel Release file</emphasis>, if it does not exist "
"already. You can do this by running <command>apt-ftparchive release</"
@@ -1958,7 +1978,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:174
+#: apt-secure.8.xml:176
msgid ""
"<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --"
"clearsign -o InRelease Release</command> and <command>gpg -abs -o Release."
@@ -1966,7 +1986,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
-#: apt-secure.8.xml:178
+#: apt-secure.8.xml:180
msgid ""
"<emphasis>Publish the key fingerprint</emphasis>, that way your users will "
"know what key they need to import in order to authenticate the files in the "
@@ -1974,7 +1994,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:185
+#: apt-secure.8.xml:187
msgid ""
"Whenever the contents of the archive change (new packages are added or "
"removed) the archive maintainer has to follow the first two steps outlined "
@@ -1982,14 +2002,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:193
+#: apt-secure.8.xml:195
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:197
+#: apt-secure.8.xml:199
msgid ""
"For more background information you might want to review the <ulink url="
"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian "
@@ -2000,24 +2020,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-secure.8.xml:210
+#: apt-secure.8.xml:212
msgid "Manpage Authors"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-secure.8.xml:212
+#: apt-secure.8.xml:214
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><refpurpose>
-#: apt-cdrom.8.xml:32
+#: apt-cdrom.8.xml:34
msgid "APT CD-ROM management utility"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:38
+#: apt-cdrom.8.xml:40
msgid ""
"<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of "
"available sources. <command>apt-cdrom</command> takes care of determining "
@@ -2026,7 +2046,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:45
+#: apt-cdrom.8.xml:47
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 disc in a multi-CD set "
@@ -2034,7 +2054,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:56
+#: apt-cdrom.8.xml:58
msgid ""
"<literal>add</literal> is used to add a new disc to the source list. It will "
"unmount the CD-ROM device, prompt for a disc to be inserted and then proceed "
@@ -2044,7 +2064,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:64
+#: apt-cdrom.8.xml:66
msgid ""
"APT uses a CD-ROM ID to track which disc is currently in the drive and "
"maintains a database of these IDs in <filename>&statedir;/cdroms.list</"
@@ -2052,14 +2072,22 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:72
+#: apt-cdrom.8.xml:74
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><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:85
+#: apt-cdrom.8.xml:87
+msgid ""
+"Do not try to auto-detect the CD-ROM path. Usually combined with the "
+"<option>--cdrom</option> option. Configuration Item: <literal>Acquire::"
+"cdrom::AutoDetect</literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt-cdrom.8.xml:95
msgid ""
"Mount point; specify the location to mount the CD-ROM. This mount point must "
"be listed in <filename>/etc/fstab</filename> and properly configured. "
@@ -2067,7 +2095,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:94
+#: apt-cdrom.8.xml:104
msgid ""
"Rename a disc; change the label of a disc or override the disc's given "
"label. This option will cause <command>apt-cdrom</command> to prompt for a "
@@ -2075,7 +2103,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:103
+#: 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::"
@@ -2083,7 +2111,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:111
+#: 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 "
@@ -2092,7 +2120,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:121
+#: 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 "
@@ -2100,7 +2128,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-cdrom.8.xml:132
+#: 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: "
@@ -2108,25 +2136,25 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:145
+#: apt-cdrom.8.xml:155
#, fuzzy
msgid "&apt-conf;, &apt-get;, &sources-list;"
msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
#. type: Content of: <refentry><refsect1><para>
-#: apt-cdrom.8.xml:150
+#: 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><refpurpose>
-#: apt-config.8.xml:33
+#: apt-config.8.xml:35
msgid "APT Configuration Query program"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:39
+#: apt-config.8.xml:41
msgid ""
"<command>apt-config</command> is an internal program used by various "
"portions of the APT suite to provide consistent configurability. It accesses "
@@ -2135,7 +2163,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:51
+#: apt-config.8.xml:53
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 "
@@ -2145,7 +2173,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting>
-#: apt-config.8.xml:59
+#: apt-config.8.xml:61
#, no-wrap
msgid ""
"OPTS=\"-f\"\n"
@@ -2154,14 +2182,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:64
+#: apt-config.8.xml:66
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:68
+#: apt-config.8.xml:70
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 "
@@ -2169,24 +2197,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:77
+#: apt-config.8.xml:79
msgid "Just show the contents of the configuration space."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:90
+#: apt-config.8.xml:92
msgid ""
"Include options which have an empty value. This is the default, so use --no-"
"empty to remove them from the output."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable>
-#: apt-config.8.xml:95
+#: apt-config.8.xml:97
msgid "&percnt;f &#x0022;&percnt;v&#x0022;;&percnt;n"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-config.8.xml:96
+#: apt-config.8.xml:98
msgid ""
"Defines the output of each config option. &percnt;t will be replaced with "
"its individual name, &percnt;f with its full hierarchical name and &percnt;v "
@@ -2197,8 +2225,8 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:110 apt-extracttemplates.1.xml:71 apt-sortpkgs.1.xml:64
-#: apt-ftparchive.1.xml:608
+#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66
+#: apt-ftparchive.1.xml:610
#, fuzzy
msgid "&apt-conf;"
msgstr ""
@@ -2207,34 +2235,34 @@ msgstr ""
" "
#. type: Content of: <refentry><refsect1><para>
-#: apt-config.8.xml:115
+#: apt-config.8.xml:117
msgid ""
"<command>apt-config</command> returns zero on normal operation, decimal 100 "
"on error."
msgstr ""
#. type: Content of: <refentry><refentryinfo><author><contrib>
-#: apt.conf.5.xml:20
+#: apt.conf.5.xml:22
msgid "Initial documentation of Debug::*."
msgstr ""
#. type: Content of: <refentry><refentryinfo><author><email>
-#: apt.conf.5.xml:21
+#: apt.conf.5.xml:23
msgid "dburrows@debian.org"
msgstr ""
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt.conf.5.xml:31 apt_preferences.5.xml:25 sources.list.5.xml:26
+#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28
msgid "5"
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt.conf.5.xml:38
+#: apt.conf.5.xml:40
msgid "Configuration file for APT"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:42
+#: apt.conf.5.xml:44
msgid ""
"<filename>/etc/apt/apt.conf</filename> is the main configuration file shared "
"by all the tools in the APT suite of tools, though it is by no means the "
@@ -2243,21 +2271,21 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><orderedlist><para>
-#: apt.conf.5.xml:48
+#: apt.conf.5.xml:50
msgid ""
"When an APT tool starts up it will read the configuration files in the "
"following order:"
msgstr ""
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:50
+#: apt.conf.5.xml:52
msgid ""
"the file specified by the <envar>APT_CONFIG</envar> environment variable (if "
"any)"
msgstr ""
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:52
+#: apt.conf.5.xml:54
msgid ""
"all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
"order which have either no or \"<literal>conf</literal>\" as filename "
@@ -2269,25 +2297,25 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:59
+#: apt.conf.5.xml:61
msgid ""
"the main configuration file specified by <literal>Dir::Etc::main</literal>"
msgstr ""
#. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
-#: apt.conf.5.xml:61
+#: apt.conf.5.xml:63
msgid ""
"the command line options are applied to override the configuration "
"directives or to load even more configuration files."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:65
+#: apt.conf.5.xml:67
msgid "Syntax"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:66
+#: apt.conf.5.xml:68
msgid ""
"The configuration file is organized in a tree with options organized into "
"functional groups. Option specification is given with a double colon "
@@ -2297,7 +2325,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:72
+#: apt.conf.5.xml:74
msgid ""
"Syntactically the configuration language is modeled after what the ISC tools "
"such as bind and dhcp use. Lines starting with <literal>//</literal> are "
@@ -2312,7 +2340,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:85
+#: apt.conf.5.xml:87
#, no-wrap
msgid ""
"APT {\n"
@@ -2324,7 +2352,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:93
+#: apt.conf.5.xml:95
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 "
@@ -2332,27 +2360,27 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><informalexample><programlisting>
-#: apt.conf.5.xml:98
+#: apt.conf.5.xml:100
#, no-wrap
msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:101
+#: apt.conf.5.xml:103
msgid ""
"In general the sample configuration file &configureindex; is a good guide "
"for how it should look."
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:104
+#: apt.conf.5.xml:106
msgid ""
"Case is not significant in names of configuration items, 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:107
+#: apt.conf.5.xml:109
msgid ""
"Names for the configuration items are optional if a list is defined as can "
"be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If "
@@ -2362,7 +2390,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:112
+#: apt.conf.5.xml:114
msgid ""
"Two special commands are defined: <literal>#include</literal> (which is "
"deprecated and not supported by alternative implementations) and "
@@ -2374,7 +2402,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:122
+#: apt.conf.5.xml:124
msgid ""
"The <literal>#clear</literal> command is the only way to delete a list or a "
"complete scope. Reopening a scope (or using the syntax described below with "
@@ -2384,7 +2412,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:130
+#: apt.conf.5.xml:132
msgid ""
"All of the APT tools take an -o option which allows an arbitrary "
"configuration directive to be specified on the command line. The syntax is a "
@@ -2396,7 +2424,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:138
+#: apt.conf.5.xml:140
msgid ""
"Note that appending items to a list using <literal>::</literal> only works "
"for one item per line, and that you should not use it in combination with "
@@ -2413,19 +2441,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:153
+#: apt.conf.5.xml:155
msgid "The APT Group"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:154
+#: apt.conf.5.xml:156
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><listitem><para>
-#: apt.conf.5.xml:159
+#: apt.conf.5.xml:161
msgid ""
"System Architecture; sets the architecture to use when fetching files and "
"parsing package lists. The internal default is the architecture apt was "
@@ -2433,7 +2461,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:166
+#: apt.conf.5.xml:168
msgid ""
"All Architectures the system supports. For instance, CPUs implementing the "
"<literal>amd64</literal> (also called <literal>x86-64</literal>) "
@@ -2446,7 +2474,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:179
+#: apt.conf.5.xml:181
msgid ""
"Default release to install packages from if more than one version is "
"available. Contains release name, codename or release version. Examples: "
@@ -2455,14 +2483,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:185
+#: apt.conf.5.xml:187
msgid ""
"Ignore held packages; this global option causes the problem resolver to "
"ignore held packages in its decision making."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:190
+#: apt.conf.5.xml:192
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 "
@@ -2471,7 +2499,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:198
+#: apt.conf.5.xml:200
msgid ""
"Defaults to on, which will cause APT to install essential and important "
"packages as soon as possible in an install/upgrade operation, in order to "
@@ -2486,7 +2514,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:210
+#: apt.conf.5.xml:212
msgid ""
"The immediate configuration marker is also applied in the potentially "
"problematic case of circular dependencies, since a dependency with the "
@@ -2503,7 +2531,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:223
+#: apt.conf.5.xml:225
msgid ""
"Before a big operation like <literal>dist-upgrade</literal> is run with this "
"option disabled you should try to explicitly <literal>install</literal> the "
@@ -2514,7 +2542,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:234
+#: apt.conf.5.xml:236
msgid ""
"Never enable this option unless you <emphasis>really</emphasis> know what "
"you are doing. It permits APT to temporarily remove an essential package to "
@@ -2527,7 +2555,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:246
+#: apt.conf.5.xml:248
msgid ""
"APT uses since version 0.7.26 a resizable memory mapped cache file to store "
"the available information. <literal>Cache-Start</literal> acts as a hint of "
@@ -2547,38 +2575,38 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:262
+#: apt.conf.5.xml:264
msgid "Defines which packages are considered essential build dependencies."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:266
+#: apt.conf.5.xml:268
msgid ""
"The Get subsection controls the &apt-get; tool; please see its documentation "
"for more information about the options here."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:271
+#: apt.conf.5.xml:273
msgid ""
"The Cache subsection controls the &apt-cache; tool; please see its "
"documentation for more information about the options here."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:276
+#: apt.conf.5.xml:278
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:282
+#: apt.conf.5.xml:284
msgid "The Acquire Group"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:283
+#: apt.conf.5.xml:285
msgid ""
"The <literal>Acquire</literal> group of options controls the download of "
"packages as well as the various \"acquire methods\" responsible for the "
@@ -2586,7 +2614,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:290
+#: apt.conf.5.xml:292
msgid ""
"Security related option defaulting to true, as giving a Release file's "
"validation an expiration date prevents replay attacks over a long timescale, "
@@ -2599,7 +2627,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:303
+#: apt.conf.5.xml:305
msgid ""
"Maximum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -2611,7 +2639,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:315
+#: apt.conf.5.xml:317
msgid ""
"Minimum time (in seconds) after its creation (as indicated by the "
"<literal>Date</literal> header) that the <filename>Release</filename> file "
@@ -2623,7 +2651,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:327
+#: apt.conf.5.xml:329
msgid ""
"Try to download deltas called <literal>PDiffs</literal> for indexes (like "
"<filename>Packages</filename> files) instead of downloading whole ones. True "
@@ -2631,7 +2659,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:330
+#: apt.conf.5.xml:332
msgid ""
"Two sub-options to limit the use of PDiffs are also available: "
"<literal>FileLimit</literal> can be used to specify a maximum number of "
@@ -2642,7 +2670,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:340
+#: apt.conf.5.xml:342
msgid ""
"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
"literal> or <literal>access</literal> which determines how APT parallelizes "
@@ -2652,21 +2680,21 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:348
+#: apt.conf.5.xml:350
msgid ""
"Number of retries to perform. If this is non-zero APT will retry failed "
"files the given number of times."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:353
+#: apt.conf.5.xml:355
msgid ""
"Use symlinks for source archives. If set to true then source archives will "
"be symlinked when possible instead of copying. True is the default."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:358
+#: apt.conf.5.xml:360
msgid ""
"<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. "
"It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</"
@@ -2678,7 +2706,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:366
+#: apt.conf.5.xml:368
msgid ""
"Three settings are provided for cache control with HTTP/1.1 compliant proxy "
"caches. <literal>No-Cache</literal> tells the proxy not to use its cached "
@@ -2690,14 +2718,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:376 apt.conf.5.xml:448
+#: apt.conf.5.xml:378 apt.conf.5.xml:466
msgid ""
"The option <literal>timeout</literal> sets the timeout timer used by the "
"method; this value applies to the connection as well as the data timeout."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:379
+#: apt.conf.5.xml:381
msgid ""
"The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to "
"enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e."
@@ -2709,24 +2737,24 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:386
+#: apt.conf.5.xml:388
msgid ""
"<literal>Acquire::http::AllowRedirect</literal> controls whether APT will "
"follow redirects, which is enabled by default."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:389
+#: apt.conf.5.xml:391
msgid ""
"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
-"literal> which accepts integer values in kilobytes. The default value is 0 "
-"which deactivates the limit and tries to use all available bandwidth (note "
-"that this option implicitly disables downloading from multiple servers at "
-"the same time.)"
+"literal> which accepts integer values in kilobytes per second. The default "
+"value is 0 which deactivates the limit and tries to use all available "
+"bandwidth. Note that this option implicitly disables downloading from "
+"multiple servers at the same time."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:394
+#: apt.conf.5.xml:398
msgid ""
"<literal>Acquire::http::User-Agent</literal> can be used to set a different "
"User-Agent for the http download method as some proxies allow access for "
@@ -2736,6 +2764,20 @@ msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
#: apt.conf.5.xml:402
msgid ""
+"<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify "
+"an external command to discover the http proxy to use. Apt expects the "
+"command to output the proxy on stdout in the style <literal>http://proxy:"
+"port/</literal>. This will override the generic <literal>Acquire::http::"
+"Proxy</literal> but not any specific host proxy configuration set via "
+"<literal>Acquire::http::Proxy::$HOST</literal>. See the &squid-deb-proxy-"
+"client; package for an example implementation that uses avahi. This option "
+"takes precedence over the legacy option name <literal>ProxyAutoDetect</"
+"literal>."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:420
+msgid ""
"The <literal>Cache-control</literal>, <literal>Timeout</literal>, "
"<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and "
"<literal>proxy</literal> options work for HTTPS URIs in the same way as for "
@@ -2745,7 +2787,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:410
+#: apt.conf.5.xml:428
msgid ""
"<literal>CaInfo</literal> suboption specifies place of file that holds info "
"about trusted certificates. <literal>&lt;host&gt;::CaInfo</literal> is the "
@@ -2767,7 +2809,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:431
+#: apt.conf.5.xml:449
msgid ""
"<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. "
"It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</"
@@ -2786,7 +2828,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:451
+#: apt.conf.5.xml:469
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, "
@@ -2796,7 +2838,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:458
+#: apt.conf.5.xml:476
msgid ""
"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
"envar> environment variable to an HTTP URL - see the discussion of the http "
@@ -2805,7 +2847,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:463
+#: apt.conf.5.xml:481
msgid ""
"The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@ -2815,13 +2857,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:477
+#: apt.conf.5.xml:495
#, no-wrap
msgid "/cdrom/::Mount \"foo\";"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:472
+#: apt.conf.5.xml:490
msgid ""
"For URIs using the <literal>cdrom</literal> method, the only configurable "
"option is the mount point, <literal>cdrom::Mount</literal>, which must be "
@@ -2834,20 +2876,20 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:485
+#: apt.conf.5.xml:503
msgid ""
"For GPGV URIs the only configurable option is <literal>gpgv::Options</"
"literal>, which passes additional parameters to gpgv."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:496
+#: apt.conf.5.xml:514
#, no-wrap
msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:491
+#: apt.conf.5.xml:509
msgid ""
"List of compression types which are understood by the acquire methods. "
"Files like <filename>Packages</filename> can be available in various "
@@ -2859,19 +2901,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:501
+#: apt.conf.5.xml:519
#, no-wrap
msgid "Acquire::CompressionTypes::Order:: \"gz\";"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis>
-#: apt.conf.5.xml:504
+#: apt.conf.5.xml:522
#, no-wrap
msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:497
+#: apt.conf.5.xml:515
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 "
@@ -2889,13 +2931,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:511
+#: apt.conf.5.xml:529
#, no-wrap
msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:506
+#: apt.conf.5.xml:524
msgid ""
"Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></"
"literal> will be checked at run time. If this option has been set, the "
@@ -2910,7 +2952,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:516
+#: apt.conf.5.xml:534
msgid ""
"The special type <literal>uncompressed</literal> can be used to give "
"uncompressed files a preference, but note that most archives don't provide "
@@ -2918,7 +2960,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:523
+#: apt.conf.5.xml:541
msgid ""
"When downloading <literal>gzip</literal> compressed indexes (Packages, "
"Sources, or Translations), keep them gzip compressed locally instead of "
@@ -2927,7 +2969,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:531
+#: apt.conf.5.xml:549
msgid ""
"The Languages subsection controls which <filename>Translation</filename> "
"files are downloaded and in which order APT tries to display the description-"
@@ -2939,13 +2981,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting>
-#: apt.conf.5.xml:548
+#: apt.conf.5.xml:566
#, no-wrap
msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:536
+#: apt.conf.5.xml:554
msgid ""
"The default list includes \"environment\" and \"en\". "
"\"<literal>environment</literal>\" has a special meaning here: it will be "
@@ -2967,7 +3009,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:549
+#: apt.conf.5.xml:567
msgid ""
"Note: To prevent problems resulting from APT being executed in different "
"environments (e.g. by different users or by other programs) all Translation "
@@ -2976,22 +3018,22 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:558
+#: apt.conf.5.xml:576
msgid "When downloading, force to use only the IPv4 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:564
+#: apt.conf.5.xml:582
msgid "When downloading, force to use only the IPv6 protocol."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:571
+#: apt.conf.5.xml:589
msgid "Directories"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:573
+#: apt.conf.5.xml:591
msgid ""
"The <literal>Dir::State</literal> section has directories that pertain to "
"local state information. <literal>lists</literal> is the directory to place "
@@ -3003,7 +3045,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:580
+#: apt.conf.5.xml:598
msgid ""
"<literal>Dir::Cache</literal> contains locations pertaining to local cache "
"information, such as the two package caches <literal>srcpkgcache</literal> "
@@ -3016,7 +3058,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:589
+#: apt.conf.5.xml:607
msgid ""
"<literal>Dir::Etc</literal> contains the location of configuration files, "
"<literal>sourcelist</literal> gives the location of the sourcelist and "
@@ -3026,7 +3068,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:595
+#: apt.conf.5.xml:613
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 "
@@ -3034,7 +3076,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:599
+#: apt.conf.5.xml:617
msgid ""
"Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
"Bin::Methods</literal> specifies the location of the method handlers and "
@@ -3045,7 +3087,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:607
+#: apt.conf.5.xml:625
msgid ""
"The configuration item <literal>RootDir</literal> has a special meaning. If "
"set, all paths in <literal>Dir::</literal> will be relative to "
@@ -3058,7 +3100,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:620
+#: apt.conf.5.xml:638
msgid ""
"The <literal>Ignore-Files-Silently</literal> list can be used to specify "
"which files APT should silently ignore while parsing the files in the "
@@ -3069,12 +3111,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:629
+#: apt.conf.5.xml:647
msgid "APT in DSelect"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:631
+#: apt.conf.5.xml:649
msgid ""
"When APT is used as a &dselect; method several configuration directives "
"control the default behavior. These are in the <literal>DSelect</literal> "
@@ -3082,7 +3124,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:636
+#: apt.conf.5.xml:654
msgid ""
"Cache Clean mode; this value may be one of <literal>always</literal>, "
"<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</"
@@ -3095,40 +3137,40 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:650
+#: apt.conf.5.xml:668
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the install phase."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:655
+#: apt.conf.5.xml:673
msgid ""
"The contents of this variable are passed to &apt-get; as command line "
"options when it is run for the update phase."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:660
+#: apt.conf.5.xml:678
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:666
+#: apt.conf.5.xml:684
msgid "How APT calls &dpkg;"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:667
+#: apt.conf.5.xml:685
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:672
+#: apt.conf.5.xml:690
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 "
@@ -3136,7 +3178,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:678
+#: apt.conf.5.xml:696
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 "
@@ -3145,46 +3187,68 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:685
+#: apt.conf.5.xml:703
msgid ""
"This is a list of shell commands to run before invoking &dpkg;. Like "
"<literal>options</literal> this must be specified in list notation. The "
"commands are invoked in order using <filename>/bin/sh</filename>; should any "
"fail APT will abort. APT will pass the filenames of all .deb files it is "
-"going to install to the commands, one per line on standard input."
+"going to install to the commands, one per line on the requested file "
+"descriptor, defaulting to standard input."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:691
+#: apt.conf.5.xml:710
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 3 adds the architecture and <literal>MultiArch</"
+"literal> flag to each version being dumped."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:715
+msgid ""
+"The version of the protocol to be used for the command "
+"<literal><replaceable>cmd</replaceable></literal> can be chosen by setting "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::Version</"
+"literal> accordingly, the default being version 1. If APT isn't supporting "
+"the requested version it will send the information in the highest version it "
+"has support for instead."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+#: apt.conf.5.xml:722
+msgid ""
+"The file descriptor to be used to send the information can be requested with "
+"<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</"
+"literal> which defaults to <literal>0</literal> for standard input and is "
+"available since version 0.9.11. Support for the option can be detected by "
+"looking for the environment variable <envar>APT_HOOK_INFO_FD</envar> which "
+"contains the number of the used file descriptor as a confirmation."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:699
+#: apt.conf.5.xml:732
msgid ""
"APT chdirs to this directory before invoking &dpkg;, the default is "
"<filename>/</filename>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:704
+#: apt.conf.5.xml:737
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:709
+#: apt.conf.5.xml:742
msgid "dpkg trigger usage (and related options)"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:710
+#: apt.conf.5.xml:743
msgid ""
"APT can call &dpkg; in such a way as to let it make aggressive use of "
"triggers over multiple calls of &dpkg;. Without further options &dpkg; will "
@@ -3199,7 +3263,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
-#: apt.conf.5.xml:725
+#: apt.conf.5.xml:758
#, no-wrap
msgid ""
"DPkg::NoTriggers \"true\";\n"
@@ -3209,7 +3273,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt.conf.5.xml:719
+#: apt.conf.5.xml:752
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 "
@@ -3223,7 +3287,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:732
+#: apt.conf.5.xml:765
msgid ""
"Add the no triggers flag to all &dpkg; calls (except the ConfigurePending "
"call). See &dpkg; if you are interested in what this actually means. In "
@@ -3236,7 +3300,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:740
+#: apt.conf.5.xml:773
msgid ""
"Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
"and \"<literal>no</literal>\". The default value is \"<literal>all</literal>"
@@ -3253,7 +3317,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:755
+#: apt.conf.5.xml:788
msgid ""
"If this option is set APT will call <command>dpkg --configure --pending</"
"command> to let &dpkg; handle all required configurations and triggers. This "
@@ -3264,7 +3328,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:762
+#: apt.conf.5.xml:795
msgid ""
"Useful for the <literal>smart</literal> configuration as a package which has "
"pending triggers is not considered as <literal>installed</literal>, and "
@@ -3274,7 +3338,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:775
+#: apt.conf.5.xml:808
#, no-wrap
msgid ""
"OrderList::Score {\n"
@@ -3286,7 +3350,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:768
+#: apt.conf.5.xml:801
msgid ""
"Essential packages (and their dependencies) should be configured immediately "
"after unpacking. It is a good idea to do this quite early in the upgrade "
@@ -3300,12 +3364,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:788
+#: apt.conf.5.xml:821
msgid "Periodic and Archives options"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:789
+#: apt.conf.5.xml:822
msgid ""
"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
"of options configure behavior of apt periodic updates, which is done by the "
@@ -3314,12 +3378,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:797
+#: apt.conf.5.xml:830
msgid "Debug options"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:799
+#: apt.conf.5.xml:832
msgid ""
"Enabling options in the <literal>Debug::</literal> section will cause "
"debugging information to be sent to the standard error stream of the program "
@@ -3330,7 +3394,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:810
+#: apt.conf.5.xml:843
msgid ""
"<literal>Debug::pkgProblemResolver</literal> enables output about the "
"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@ -3338,7 +3402,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:818
+#: apt.conf.5.xml:851
msgid ""
"<literal>Debug::NoLocking</literal> disables all file locking. This can be "
"used to run some operations (for instance, <literal>apt-get -s install</"
@@ -3346,7 +3410,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:827
+#: apt.conf.5.xml:860
msgid ""
"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
"time that <literal>apt</literal> invokes &dpkg;."
@@ -3356,66 +3420,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:835
+#: apt.conf.5.xml:868
msgid ""
"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
"in CD-ROM IDs."
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:845
+#: apt.conf.5.xml:878
msgid "A full list of debugging options to apt follows."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:854
+#: apt.conf.5.xml:887
msgid ""
"Print information related to accessing <literal>cdrom://</literal> sources."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:865
+#: apt.conf.5.xml:898
msgid "Print information related to downloading packages using FTP."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:876
+#: apt.conf.5.xml:909
msgid "Print information related to downloading packages using HTTP."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:887
+#: apt.conf.5.xml:920
msgid "Print information related to downloading packages using HTTPS."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:898
+#: apt.conf.5.xml:931
msgid ""
"Print information related to verifying cryptographic signatures using "
"<literal>gpg</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:909
+#: apt.conf.5.xml:942
msgid ""
"Output information about the process of accessing collections of packages "
"stored on CD-ROMs."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:919
+#: apt.conf.5.xml:952
msgid "Describes the process of resolving build-dependencies in &apt-get;."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:929
+#: apt.conf.5.xml:962
msgid ""
"Output each cryptographic hash that is generated by the <literal>apt</"
"literal> libraries."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:939
+#: apt.conf.5.xml:972
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 "
@@ -3423,53 +3487,53 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:950
+#: apt.conf.5.xml:983
msgid ""
"Disable all file locking. For instance, this will allow two instances of "
"<quote><literal>apt-get update</literal></quote> to run at the same time."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:962
+#: apt.conf.5.xml:995
msgid "Log when items are added to or removed from the global download queue."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:972
+#: apt.conf.5.xml:1005
msgid ""
"Output status messages and errors related to verifying checksums and "
"cryptographic signatures of downloaded files."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:982
+#: apt.conf.5.xml:1015
msgid ""
"Output information about downloading and applying package index list diffs, "
"and errors relating to package index list diffs."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:994
+#: apt.conf.5.xml:1027
msgid ""
"Output information related to patching apt package lists when downloading "
"index diffs instead of full indices."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1005
+#: apt.conf.5.xml:1038
msgid ""
"Log all interactions with the sub-processes that actually perform downloads."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1016
+#: apt.conf.5.xml:1049
msgid ""
"Log events related to the automatically-installed status of packages and to "
"the removal of unused packages."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1026
+#: apt.conf.5.xml:1059
msgid ""
"Generate debug messages describing which packages are being automatically "
"installed to resolve dependencies. This corresponds to the initial auto-"
@@ -3479,7 +3543,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1040
+#: apt.conf.5.xml:1073
msgid ""
"Generate debug messages describing which packages are marked as keep/install/"
"remove while the ProblemResolver does his work. Each addition or deletion "
@@ -3497,46 +3561,46 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1061
+#: apt.conf.5.xml:1094
msgid ""
"When invoking &dpkg;, output the precise command line with which it is being "
"invoked, with arguments separated by a single space character."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1072
+#: apt.conf.5.xml:1105
msgid ""
"Output all the data received from &dpkg; on the status file descriptor and "
"any errors encountered while parsing it."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1083
+#: apt.conf.5.xml:1116
msgid ""
"Generate a trace of the algorithm that decides the order in which "
"<literal>apt</literal> should pass packages to &dpkg;."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1095
+#: apt.conf.5.xml:1128
msgid ""
"Output status messages tracing the steps performed when invoking &dpkg;."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1106
+#: apt.conf.5.xml:1139
msgid "Output the priority of each package list on startup."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1116
+#: apt.conf.5.xml:1149
msgid ""
"Trace the execution of the dependency resolver (this applies only to what "
"happens when a complex dependency problem is encountered)."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1127
+#: apt.conf.5.xml:1160
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 "
@@ -3544,21 +3608,21 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:1139
+#: apt.conf.5.xml:1172
msgid ""
"Print information about the vendors read from <filename>/etc/apt/vendors."
"list</filename>."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:1161 apt_preferences.5.xml:545 sources.list.5.xml:211
-#: apt-ftparchive.1.xml:596
+#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:217
+#: apt-ftparchive.1.xml:598
#, fuzzy
msgid "Examples"
msgstr "Exemplos"
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1162
+#: apt.conf.5.xml:1195
msgid ""
"&configureindex; is a configuration file showing example values for all "
"possible options."
@@ -3566,19 +3630,19 @@ msgstr ""
#. ? reading apt.conf
#. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:1174
+#: apt.conf.5.xml:1207
#, fuzzy
msgid "&apt-cache;, &apt-config;, &apt-preferences;."
msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt_preferences.5.xml:32
+#: apt_preferences.5.xml:34
#, fuzzy
msgid "Preference control file for APT"
msgstr "Arquivo de controle de preferências para o APT"
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:37
+#: apt_preferences.5.xml:39
#, fuzzy
msgid ""
"The APT preferences file <filename>/etc/apt/preferences</filename> and the "
@@ -3591,7 +3655,7 @@ msgstr ""
"para instalação."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:42
+#: apt_preferences.5.xml:44
#, fuzzy
msgid ""
"Several versions of a package may be available for installation when the "
@@ -3614,7 +3678,7 @@ msgstr ""
"selecionada para instalação."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:52
+#: apt_preferences.5.xml:54
#, fuzzy
msgid ""
"Several instances of the same version of a package may be available when the "
@@ -3630,7 +3694,7 @@ msgstr ""
"a escolha da instância."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:59
+#: apt_preferences.5.xml:61
msgid ""
"Preferences are a strong power in the hands of a system administrator but "
"they can become also their biggest nightmare if used without care! APT will "
@@ -3644,7 +3708,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:70
+#: apt_preferences.5.xml:72
msgid ""
"Note that the files in the <filename>/etc/apt/preferences.d</filename> "
"directory are parsed in alphanumeric ascending order and need to obey the "
@@ -3657,13 +3721,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:79
+#: apt_preferences.5.xml:81
#, fuzzy
msgid "APT's Default Priority Assignments"
msgstr "Atribuições de Prioridade Padrão do APT"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:94
+#: apt_preferences.5.xml:96
#, fuzzy, no-wrap
msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n"
msgstr ""
@@ -3671,7 +3735,7 @@ msgstr ""
"<command>apt-get install -t testing <replaceable>algum-pacote</replaceable></command>\n"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:97
+#: apt_preferences.5.xml:99
#, fuzzy, no-wrap
msgid "APT::Default-Release \"stable\";\n"
msgstr ""
@@ -3679,7 +3743,7 @@ msgstr ""
"APT::Default-Release \"stable\";\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:81
+#: apt_preferences.5.xml:83
#, fuzzy
msgid ""
"If there is no preferences file or if there is no entry in the file that "
@@ -3704,7 +3768,7 @@ msgstr ""
"etc/apt/apt.conf</filename>. Por exemplo,"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:101
+#: apt_preferences.5.xml:103
#, fuzzy
msgid ""
"If the target release has been specified then APT uses the following "
@@ -3715,13 +3779,13 @@ msgstr ""
"Atribuirá :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:106
+#: apt_preferences.5.xml:108
#, fuzzy
msgid "priority 1"
msgstr "prioridade 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:107
+#: apt_preferences.5.xml:109
msgid ""
"to the versions coming from archives which in their <filename>Release</"
"filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</"
@@ -3730,13 +3794,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:113
+#: apt_preferences.5.xml:115
#, fuzzy
msgid "priority 100"
msgstr "prioridade 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:114
+#: apt_preferences.5.xml:116
msgid ""
"to the version that is already installed (if any) and to the versions coming "
"from archives which in their <filename>Release</filename> files are marked "
@@ -3745,13 +3809,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:121
+#: apt_preferences.5.xml:123
#, fuzzy
msgid "priority 500"
msgstr "prioridade 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:122
+#: apt_preferences.5.xml:124
#, fuzzy
msgid ""
"to the versions that are not installed and do not belong to the target "
@@ -3760,13 +3824,13 @@ msgstr ""
"para as instâncias que não estã instaladas e que não pertencem a versão alvo."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:126
+#: apt_preferences.5.xml:128
#, fuzzy
msgid "priority 990"
msgstr "prioridade 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:127
+#: apt_preferences.5.xml:129
#, fuzzy
msgid ""
"to the versions that are not installed and belong to the target release."
@@ -3774,7 +3838,7 @@ msgstr ""
"para as instâncias que não estejam instaladas e pertençam a versão alvo."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:132
+#: apt_preferences.5.xml:134
#, fuzzy
msgid ""
"If the target release has not been specified then APT simply assigns "
@@ -3789,7 +3853,7 @@ msgstr ""
"prioridade 500 para todas as instâncias de pacotes não instaladas."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:139
+#: apt_preferences.5.xml:141
#, fuzzy
msgid ""
"APT then applies the following rules, listed in order of precedence, to "
@@ -3799,7 +3863,7 @@ msgstr ""
"determinar qual instância de um pacote instalar."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:142
+#: apt_preferences.5.xml:144
#, fuzzy
msgid ""
"Never downgrade unless the priority of an available version exceeds 1000. "
@@ -3816,13 +3880,13 @@ msgstr ""
"\"downgrade\" pode ser arriscado.)"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:148
+#: apt_preferences.5.xml:150
#, fuzzy
msgid "Install the highest priority version."
msgstr "Instala a instância de prioridade mais alta."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:149
+#: apt_preferences.5.xml:151
#, fuzzy
msgid ""
"If two or more versions have the same priority, install the most recent one "
@@ -3832,7 +3896,7 @@ msgstr ""
"mais recente (ou seja, aquela com o maior número de versão)."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:152
+#: apt_preferences.5.xml:154
#, fuzzy
msgid ""
"If two or more versions have the same priority and version number but either "
@@ -3844,7 +3908,7 @@ msgstr ""
"<literal>--reinstall</literal> seja fornecida, instala aquela desinstalada."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:158
+#: apt_preferences.5.xml:160
#, fuzzy
msgid ""
"In a typical situation, the installed version of a package (priority 100) "
@@ -3861,7 +3925,7 @@ msgstr ""
"forem executados."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:165
+#: apt_preferences.5.xml:167
#, fuzzy
msgid ""
"More rarely, the installed version of a package is <emphasis>more</emphasis> "
@@ -3876,7 +3940,7 @@ msgstr ""
"upgrade</command> forem executados."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:170
+#: apt_preferences.5.xml:172
#, fuzzy
msgid ""
"Sometimes the installed version of a package is more recent than the version "
@@ -3896,13 +3960,13 @@ msgstr ""
"disponíveis possuir uma prioridade maior do que a versão instalada."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:179
+#: apt_preferences.5.xml:181
#, fuzzy
msgid "The Effect of APT Preferences"
msgstr "O Efeito das Preferências do APT"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:181
+#: apt_preferences.5.xml:183
#, fuzzy
msgid ""
"The APT preferences file allows the system administrator to control the "
@@ -3916,7 +3980,7 @@ msgstr ""
"das duas formas, uma forma específica e uma forma geral."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:187
+#: apt_preferences.5.xml:189
#, fuzzy
msgid ""
"The specific form assigns a priority (a \"Pin-Priority\") to one or more "
@@ -3933,7 +3997,7 @@ msgstr ""
"com \"<literal>5.8</literal>\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:194
+#: apt_preferences.5.xml:196
#, fuzzy, no-wrap
msgid ""
"Package: perl\n"
@@ -3946,7 +4010,7 @@ msgstr ""
"Pin-Priority: 1001\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:200
+#: apt_preferences.5.xml:202
#, fuzzy
msgid ""
"The general form assigns a priority to all of the package versions in a "
@@ -3962,7 +4026,7 @@ msgstr ""
"identificado pelo nome de domínio totalmente qualificado do site Internet."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:206
+#: apt_preferences.5.xml:208
#, fuzzy
msgid ""
"This general-form entry in the APT preferences file applies only to groups "
@@ -3975,7 +4039,7 @@ msgstr ""
"no site local."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:211
+#: apt_preferences.5.xml:213
#, fuzzy, no-wrap
msgid ""
"Package: *\n"
@@ -3988,7 +4052,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:216
+#: apt_preferences.5.xml:218
msgid ""
"A note of caution: the keyword used here is \"<literal>origin</literal>\" "
"which can be used to match a hostname. The following record will assign a "
@@ -3997,7 +4061,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:220
+#: apt_preferences.5.xml:222
#, fuzzy, no-wrap
msgid ""
"Package: *\n"
@@ -4010,7 +4074,7 @@ msgstr ""
"Pin-Priority: 999\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:224
+#: apt_preferences.5.xml:226
#, fuzzy
msgid ""
"This should <emphasis>not</emphasis> be confused with the Origin of a "
@@ -4027,7 +4091,7 @@ msgstr ""
"como \"Debian\" ou \"Ximian\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:229
+#: apt_preferences.5.xml:231
#, fuzzy
msgid ""
"The following record assigns a low priority to all package versions "
@@ -4039,7 +4103,7 @@ msgstr ""
"\"<literal>unstable</literal>\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:233
+#: apt_preferences.5.xml:235
#, fuzzy, no-wrap
msgid ""
"Package: *\n"
@@ -4052,7 +4116,7 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:238
+#: apt_preferences.5.xml:240
#, fuzzy
msgid ""
"The following record assigns a high priority to all package versions "
@@ -4064,7 +4128,7 @@ msgstr ""
"\"<literal>unstable</literal>\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:242
+#: apt_preferences.5.xml:244
#, fuzzy, no-wrap
msgid ""
"Package: *\n"
@@ -4077,7 +4141,7 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:247
+#: apt_preferences.5.xml:249
#, fuzzy
msgid ""
"The following record assigns a high priority to all package versions "
@@ -4090,7 +4154,7 @@ msgstr ""
"literal>\"."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
-#: apt_preferences.5.xml:252
+#: apt_preferences.5.xml:254
#, fuzzy, no-wrap
msgid ""
"Package: *\n"
@@ -4103,12 +4167,12 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:262
+#: apt_preferences.5.xml:264
msgid "Regular expressions and &glob; syntax"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:264
+#: apt_preferences.5.xml:266
msgid ""
"APT also supports pinning by &glob; expressions, and regular expressions "
"surrounded by slashes. For example, the following example assigns the "
@@ -4118,7 +4182,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:273
+#: apt_preferences.5.xml:275
#, fuzzy, no-wrap
msgid ""
"Package: gnome* /kde/\n"
@@ -4131,7 +4195,7 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:279
+#: apt_preferences.5.xml:281
msgid ""
"The rule for those expressions is that they can occur anywhere where a "
"string can occur. Thus, the following pin assigns the priority 990 to all "
@@ -4139,7 +4203,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:285
+#: apt_preferences.5.xml:287
#, fuzzy, no-wrap
msgid ""
"Package: *\n"
@@ -4152,7 +4216,7 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:291
+#: apt_preferences.5.xml:293
msgid ""
"If a regular expression occurs in a <literal>Package</literal> field, the "
"behavior is the same as if this regular expression were replaced with a list "
@@ -4163,13 +4227,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:307
+#: apt_preferences.5.xml:309
#, fuzzy
msgid "How APT Interprets Priorities"
msgstr "Como o APT Interpreta Prioridades"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:310
+#: apt_preferences.5.xml:312
#, fuzzy
msgid ""
"Priorities (P) assigned in the APT preferences file must be positive or "
@@ -4180,12 +4244,12 @@ msgstr ""
"seguir (a grosso modo):"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:315
+#: apt_preferences.5.xml:317
msgid "P &gt;= 1000"
msgstr "P &gt;= 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:316
+#: apt_preferences.5.xml:318
#, fuzzy
msgid ""
"causes a version to be installed even if this constitutes a downgrade of the "
@@ -4195,12 +4259,12 @@ msgstr ""
"dowgrade do pacote"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:320
+#: apt_preferences.5.xml:322
msgid "990 &lt;= P &lt; 1000"
msgstr "990 &lt;= P &lt; 1000"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:321
+#: apt_preferences.5.xml:323
#, fuzzy
msgid ""
"causes a version to be installed even if it does not come from the target "
@@ -4210,12 +4274,12 @@ msgstr ""
"versão alvo, a menos que a versão instalada seja mais recente"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:326
+#: apt_preferences.5.xml:328
msgid "500 &lt;= P &lt; 990"
msgstr "500 &lt;= P &lt; 990"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:327
+#: apt_preferences.5.xml:329
#, fuzzy
msgid ""
"causes a version to be installed unless there is a version available "
@@ -4225,12 +4289,12 @@ msgstr ""
"disponível pertencente a versão alvo ou a versão instalada seja mais recente"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:332
+#: apt_preferences.5.xml:334
msgid "100 &lt;= P &lt; 500"
msgstr "100 &lt;= P &lt; 500"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:333
+#: apt_preferences.5.xml:335
#, fuzzy
msgid ""
"causes a version to be installed unless there is a version available "
@@ -4241,12 +4305,12 @@ msgstr ""
"seja mais recente"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:338
+#: apt_preferences.5.xml:340
msgid "0 &lt; P &lt; 100"
msgstr "0 &lt; P &lt; 100"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:339
+#: apt_preferences.5.xml:341
#, fuzzy
msgid ""
"causes a version to be installed only if there is no installed version of "
@@ -4256,18 +4320,18 @@ msgstr ""
"instalada do pacote"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:343
+#: apt_preferences.5.xml:345
msgid "P &lt; 0"
msgstr "P &lt; 0"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:344
+#: apt_preferences.5.xml:346
#, fuzzy
msgid "prevents the version from being installed"
msgstr "impede a versão de ser instalada"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:349
+#: apt_preferences.5.xml:351
#, fuzzy
msgid ""
"If any specific-form records match an available package version then the "
@@ -4283,7 +4347,7 @@ msgstr ""
"determinará a prioridade da versão do pacote."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:355
+#: apt_preferences.5.xml:357
#, fuzzy
msgid ""
"For example, suppose the APT preferences file contains the three records "
@@ -4293,7 +4357,7 @@ msgstr ""
"registros apresentados anteriormente :"
#. type: Content of: <refentry><refsect1><refsect2><programlisting>
-#: apt_preferences.5.xml:359
+#: apt_preferences.5.xml:361
#, fuzzy, no-wrap
msgid ""
"Package: perl\n"
@@ -4322,12 +4386,12 @@ msgstr ""
"Pin-Priority: 50\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:372
+#: apt_preferences.5.xml:374
msgid "Then:"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:374
+#: apt_preferences.5.xml:376
#, fuzzy
msgid ""
"The most recent available version of the <literal>perl</literal> package "
@@ -4343,7 +4407,7 @@ msgstr ""
"será feito um downgrade do <literal>perl</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:379
+#: apt_preferences.5.xml:381
#, fuzzy
msgid ""
"A version of any package other than <literal>perl</literal> that is "
@@ -4355,7 +4419,7 @@ msgstr ""
"mesmo versões pertencentes a versão alvo."
#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
-#: apt_preferences.5.xml:383
+#: apt_preferences.5.xml:385
#, fuzzy
msgid ""
"A version of a package whose origin is not the local system but some other "
@@ -4370,13 +4434,13 @@ msgstr ""
"instalada."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:393
+#: apt_preferences.5.xml:395
#, fuzzy
msgid "Determination of Package Version and Distribution Properties"
msgstr "Determinação da Versão do Pacote e Propriedades da Distribuição"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:395
+#: apt_preferences.5.xml:397
#, fuzzy
msgid ""
"The locations listed in the &sources-list; file should provide "
@@ -4388,7 +4452,7 @@ msgstr ""
"os pacotes disponíveis nessas localidades."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:399
+#: apt_preferences.5.xml:401
#, fuzzy
msgid ""
"The <filename>Packages</filename> file is normally found in the directory "
@@ -4409,31 +4473,31 @@ msgstr ""
"do APT :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:407
+#: apt_preferences.5.xml:409
#, fuzzy
msgid "the <literal>Package:</literal> line"
msgstr "a linha <literal>Package:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:408
+#: apt_preferences.5.xml:410
#, fuzzy
msgid "gives the package name"
msgstr "informa o nome do pacote"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:411 apt_preferences.5.xml:461
+#: apt_preferences.5.xml:413 apt_preferences.5.xml:463
#, fuzzy
msgid "the <literal>Version:</literal> line"
msgstr "a linha <literal>Version:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:412
+#: apt_preferences.5.xml:414
#, fuzzy
msgid "gives the version number for the named package"
msgstr "informa o número de versão do pacote"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:417
+#: apt_preferences.5.xml:419
#, fuzzy
msgid ""
"The <filename>Release</filename> file is normally found in the directory "
@@ -4456,13 +4520,13 @@ msgstr ""
"do APT :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:428
+#: apt_preferences.5.xml:430
#, fuzzy
msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
msgstr "a linha <literal>Archive:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:429
+#: apt_preferences.5.xml:431
#, fuzzy
msgid ""
"names the archive to which all the packages in the directory tree belong. "
@@ -4480,7 +4544,7 @@ msgstr ""
"requerer a linha :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:439
+#: apt_preferences.5.xml:441
#, fuzzy, no-wrap
msgid "Pin: release a=stable\n"
msgstr ""
@@ -4488,13 +4552,13 @@ msgstr ""
"Pin: release a=stable\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:445
+#: apt_preferences.5.xml:447
#, fuzzy
msgid "the <literal>Codename:</literal> line"
msgstr "a linha <literal>Component:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:446
+#: apt_preferences.5.xml:448
#, fuzzy
msgid ""
"names the codename to which all the packages in the directory tree belong. "
@@ -4512,7 +4576,7 @@ msgstr ""
"requerer a linha :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:455
+#: apt_preferences.5.xml:457
#, fuzzy, no-wrap
msgid "Pin: release n=&testing-codename;\n"
msgstr ""
@@ -4520,7 +4584,7 @@ msgstr ""
"Pin: release a=stable\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:462
+#: apt_preferences.5.xml:464
#, fuzzy
msgid ""
"names the release version. For example, the packages in the tree might "
@@ -4538,7 +4602,7 @@ msgstr ""
"linhas a seguir."
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:471
+#: apt_preferences.5.xml:473
#, fuzzy, no-wrap
msgid ""
"Pin: release v=&stable-version;\n"
@@ -4551,13 +4615,13 @@ msgstr ""
"Pin: release 3.0\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:480
+#: apt_preferences.5.xml:482
#, fuzzy
msgid "the <literal>Component:</literal> line"
msgstr "a linha <literal>Component:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:481
+#: apt_preferences.5.xml:483
#, fuzzy
msgid ""
"names the licensing component associated with the packages in the directory "
@@ -4576,7 +4640,7 @@ msgstr ""
"requerer a linha :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:490
+#: apt_preferences.5.xml:492
#, fuzzy, no-wrap
msgid "Pin: release c=main\n"
msgstr ""
@@ -4584,13 +4648,13 @@ msgstr ""
"Pin: release c=main\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:496
+#: apt_preferences.5.xml:498
#, fuzzy
msgid "the <literal>Origin:</literal> line"
msgstr "a linha <literal>Origin:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:497
+#: apt_preferences.5.xml:499
#, fuzzy
msgid ""
"names the originator of the packages in the directory tree of the "
@@ -4604,7 +4668,7 @@ msgstr ""
"requerer a linha :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:503
+#: apt_preferences.5.xml:505
#, fuzzy, no-wrap
msgid "Pin: release o=Debian\n"
msgstr ""
@@ -4612,13 +4676,13 @@ msgstr ""
"Pin: release o=Debian\n"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
-#: apt_preferences.5.xml:509
+#: apt_preferences.5.xml:511
#, fuzzy
msgid "the <literal>Label:</literal> line"
msgstr "a linha <literal>Label:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
-#: apt_preferences.5.xml:510
+#: apt_preferences.5.xml:512
#, fuzzy
msgid ""
"names the label of the packages in the directory tree of the "
@@ -4631,7 +4695,7 @@ msgstr ""
"arquivo de preferências do APT iria requerer a linha :"
#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
-#: apt_preferences.5.xml:516
+#: apt_preferences.5.xml:518
#, fuzzy, no-wrap
msgid "Pin: release l=Debian\n"
msgstr ""
@@ -4639,7 +4703,7 @@ msgstr ""
"Pin: release l=Debian\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:523
+#: apt_preferences.5.xml:525
#, fuzzy
msgid ""
"All of the <filename>Packages</filename> and <filename>Release</filename> "
@@ -4665,13 +4729,13 @@ msgstr ""
"<literal>unstable</literal>."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:536
+#: apt_preferences.5.xml:538
#, fuzzy
msgid "Optional Lines in an APT Preferences Record"
msgstr "Linhas Opcionais em um Registro de Preferências do APT"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:538
+#: apt_preferences.5.xml:540
#, fuzzy
msgid ""
"Each record in the APT preferences file can optionally begin with one or "
@@ -4683,13 +4747,13 @@ msgstr ""
"</literal>. Isto oferece um local para inserir comentários."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:547
+#: apt_preferences.5.xml:549
#, fuzzy
msgid "Tracking Stable"
msgstr "Acompanhando a Stable"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:555
+#: apt_preferences.5.xml:557
#, fuzzy, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated\n"
@@ -4714,7 +4778,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:549
+#: apt_preferences.5.xml:551
#, fuzzy
msgid ""
"The following APT preferences file will cause APT to assign a priority "
@@ -4730,8 +4794,8 @@ msgstr ""
"outras distribuições <literal>Debian</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:572 apt_preferences.5.xml:618
-#: apt_preferences.5.xml:676
+#: apt_preferences.5.xml:574 apt_preferences.5.xml:620
+#: apt_preferences.5.xml:678
#, fuzzy, no-wrap
msgid ""
"apt-get install <replaceable>package-name</replaceable>\n"
@@ -4744,7 +4808,7 @@ msgstr ""
"apt-get dist-upgrade\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:567
+#: apt_preferences.5.xml:569
#, fuzzy
msgid ""
"With a suitable &sources-list; file and the above preferences file, any of "
@@ -4757,7 +4821,7 @@ msgstr ""
"ulítma(s) versão(ôes) <literal>stable</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:584
+#: apt_preferences.5.xml:586
#, fuzzy, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/testing\n"
msgstr ""
@@ -4765,7 +4829,7 @@ msgstr ""
"apt-get install <replaceable>pacote</replaceable>/testing\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:578
+#: apt_preferences.5.xml:580
#, fuzzy
msgid ""
"The following command will cause APT to upgrade the specified package to the "
@@ -4778,13 +4842,13 @@ msgstr ""
"atualizado novamente a menos que esse comando seja executado novamente."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:590
+#: apt_preferences.5.xml:592
#, fuzzy
msgid "Tracking Testing or Unstable"
msgstr "Acompanhando a Testing"
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:599
+#: apt_preferences.5.xml:601
#, fuzzy, no-wrap
msgid ""
"Package: *\n"
@@ -4813,7 +4877,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:592
+#: apt_preferences.5.xml:594
#, fuzzy
msgid ""
"The following APT preferences file will cause APT to assign a high priority "
@@ -4830,7 +4894,7 @@ msgstr ""
"versões de pacotes de outras distribuições <literal>Debian</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:613
+#: apt_preferences.5.xml:615
#, fuzzy
msgid ""
"With a suitable &sources-list; file and the above preferences file, any of "
@@ -4843,7 +4907,7 @@ msgstr ""
"a(s) última(s) versão(ões) <literal>testing</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:633
+#: apt_preferences.5.xml:635
#, fuzzy, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
msgstr ""
@@ -4851,7 +4915,7 @@ msgstr ""
"apt-get install <replaceable>pacote</replaceable>/unstable\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:624
+#: apt_preferences.5.xml:626
#, fuzzy
msgid ""
"The following command will cause APT to upgrade the specified package to the "
@@ -4871,12 +4935,12 @@ msgstr ""
"recente que a versão instalada."
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt_preferences.5.xml:640
+#: apt_preferences.5.xml:642
msgid "Tracking the evolution of a codename release"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:654
+#: apt_preferences.5.xml:656
#, fuzzy, no-wrap
msgid ""
"Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@ -4906,7 +4970,7 @@ msgstr ""
"Pin-Priority: -10\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:642
+#: apt_preferences.5.xml:644
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 "
@@ -4921,7 +4985,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:671
+#: apt_preferences.5.xml:673
#, fuzzy
msgid ""
"With a suitable &sources-list; file and the above preferences file, any of "
@@ -4934,7 +4998,7 @@ msgstr ""
"ulítma(s) versão(ôes) <literal>stable</literal>."
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt_preferences.5.xml:691
+#: apt_preferences.5.xml:693
#, fuzzy, no-wrap
msgid "apt-get install <replaceable>package</replaceable>/sid\n"
msgstr ""
@@ -4942,7 +5006,7 @@ msgstr ""
"apt-get install <replaceable>pacote</replaceable>/testing\n"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt_preferences.5.xml:682
+#: apt_preferences.5.xml:684
#, fuzzy
msgid ""
"The following command will cause APT to upgrade the specified package to the "
@@ -4962,18 +5026,18 @@ msgstr ""
"recente que a versão instalada."
#. type: Content of: <refentry><refsect1><para>
-#: apt_preferences.5.xml:706
+#: apt_preferences.5.xml:708
#, fuzzy
msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: sources.list.5.xml:33
+#: sources.list.5.xml:35
msgid "List of configured APT data sources"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:38
+#: sources.list.5.xml:40
msgid ""
"The source list <filename>/etc/apt/sources.list</filename> is designed to "
"support any number of active sources and a variety of source media. The file "
@@ -4984,7 +5048,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:45
+#: sources.list.5.xml:47
msgid ""
"Each line specifying a source starts with type (e.g. <literal>deb-src</"
"literal>) followed by options and arguments for this type. Individual "
@@ -4994,12 +5058,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:53
+#: sources.list.5.xml:55
msgid "sources.list.d"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:54
+#: sources.list.5.xml:56
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 "
@@ -5012,12 +5076,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:65
+#: sources.list.5.xml:67
msgid "The deb and deb-src types"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:66
+#: sources.list.5.xml:68
msgid ""
"The <literal>deb</literal> type references a typical two-level Debian "
"archive, <filename>distribution/component</filename>. The "
@@ -5032,20 +5096,20 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:78
+#: sources.list.5.xml:80
msgid ""
"The format for a <filename>sources.list</filename> entry using the "
"<literal>deb</literal> and <literal>deb-src</literal> types is:"
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:81
+#: sources.list.5.xml:83
#, no-wrap
msgid "deb [ options ] uri distribution [component1] [component2] [...]"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:83
+#: sources.list.5.xml:85
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. "
@@ -5058,7 +5122,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:92
+#: sources.list.5.xml:94
msgid ""
"<literal>distribution</literal> may also contain a variable, <literal>"
"$(ARCH)</literal> which expands to the Debian architecture (such as "
@@ -5070,7 +5134,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:100
+#: sources.list.5.xml:102
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 "
@@ -5085,7 +5149,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:112
+#: sources.list.5.xml:114
msgid ""
"<literal>options</literal> is always optional and needs to be surrounded by "
"square brackets. It can consist of multiple settings in the form "
@@ -5096,7 +5160,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:117
+#: sources.list.5.xml:120
msgid ""
"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
"replaceable>,…</literal> can be used to specify for which architectures "
@@ -5106,7 +5170,16 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: sources.list.5.xml:121
+#: sources.list.5.xml:124
+msgid ""
+"<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</"
+"replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>,"
+"<replaceable>arch2</replaceable>,…</literal> which can be used to add/remove "
+"architectures from the set which will be downloaded."
+msgstr ""
+
+#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
+#: sources.list.5.xml:127
msgid ""
"<literal>trusted=yes</literal> can be set to indicate that packages from "
"this source are always authenticated even if the <filename>Release</"
@@ -5117,7 +5190,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:128
+#: sources.list.5.xml:134
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 "
@@ -5126,13 +5199,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:133
+#: sources.list.5.xml:139
#, fuzzy
msgid "Some examples:"
msgstr "Exemplos"
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:135
+#: sources.list.5.xml:141
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@ -5141,17 +5214,17 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: sources.list.5.xml:141
+#: sources.list.5.xml:147
msgid "URI specification"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:143
+#: sources.list.5.xml:149
msgid "The currently recognized URI types are:"
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:147
+#: sources.list.5.xml:153
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 "
@@ -5159,14 +5232,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:154
+#: sources.list.5.xml:160
msgid ""
"The cdrom scheme allows APT to use a local CD-ROM 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:161
+#: sources.list.5.xml:167
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:"
@@ -5177,7 +5250,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:172
+#: sources.list.5.xml:178
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. "
@@ -5190,7 +5263,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:184
+#: sources.list.5.xml:190
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. "
@@ -5199,7 +5272,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:191
+#: sources.list.5.xml:197
msgid ""
"The rsh/ssh method invokes RSH/SSH to connect to a remote host and access "
"the files as a given user. Prior configuration of rhosts or RSA keys is "
@@ -5208,12 +5281,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
-#: sources.list.5.xml:198
+#: sources.list.5.xml:204
msgid "adding more recognizable URI types"
msgstr ""
#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
-#: sources.list.5.xml:200
+#: sources.list.5.xml:206
msgid ""
"APT can be extended with more methods shipped in other optional packages, "
"which should follow the naming scheme <package>apt-transport-"
@@ -5225,42 +5298,42 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:212
+#: sources.list.5.xml:218
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:214
+#: sources.list.5.xml:220
#, no-wrap
msgid "deb file:/home/jason/debian stable main contrib non-free"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:216
+#: sources.list.5.xml:222
msgid "As above, except this uses the unstable (development) distribution."
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:217
+#: sources.list.5.xml:223
#, no-wrap
msgid "deb file:/home/jason/debian unstable main contrib non-free"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:219
+#: sources.list.5.xml:225
msgid "Source line for the above"
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:220
+#: sources.list.5.xml:226
#, 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:222
+#: sources.list.5.xml:228
msgid ""
"The first line gets package information for the architectures in "
"<literal>APT::Architectures</literal> while the second always retrieves "
@@ -5268,7 +5341,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:224
+#: sources.list.5.xml:230
#, no-wrap
msgid ""
"deb http://ftp.debian.org/debian &stable-codename; main\n"
@@ -5276,33 +5349,33 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:227
+#: sources.list.5.xml:233
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:229
+#: sources.list.5.xml:235
#, no-wrap
msgid "deb http://archive.debian.org/debian-archive hamm main"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:231
+#: sources.list.5.xml:237
msgid ""
"Uses FTP to access the archive at ftp.debian.org, under the debian "
"directory, and uses only the &stable-codename;/contrib area."
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:233
+#: sources.list.5.xml:239
#, no-wrap
msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:235
+#: sources.list.5.xml:241
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 "
@@ -5311,19 +5384,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><literallayout>
-#: sources.list.5.xml:239
+#: sources.list.5.xml:245
#, no-wrap
msgid "deb ftp://ftp.debian.org/debian unstable contrib"
msgstr ""
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: sources.list.5.xml:248
+#: sources.list.5.xml:254
#, no-wrap
msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:241
+#: sources.list.5.xml:247
msgid ""
"Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
"directory, and uses only files found under <filename>unstable/binary-i386</"
@@ -5335,25 +5408,25 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: sources.list.5.xml:253
+#: sources.list.5.xml:259
#, fuzzy
msgid "&apt-cache; &apt-conf;"
msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
#. type: Content of: <refentry><refmeta><manvolnum>
-#: apt-extracttemplates.1.xml:26 apt-sortpkgs.1.xml:26 apt-ftparchive.1.xml:26
+#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28
msgid "1"
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-extracttemplates.1.xml:33
+#: apt-extracttemplates.1.xml:35
msgid ""
"Utility to extract <command>debconf</command> config and templates from "
"Debian packages"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:39
+#: apt-extracttemplates.1.xml:41
msgid ""
"<command>apt-extracttemplates</command> will take one or more Debian package "
"files as input and write out (to a temporary directory) all associated "
@@ -5363,12 +5436,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:44
+#: apt-extracttemplates.1.xml:46
msgid "package version template-file config-script"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:45
+#: apt-extracttemplates.1.xml:47
msgid ""
"template-file and config-script are written to the temporary directory "
"specified by the <option>-t</option> or <option>--tempdir</option> "
@@ -5378,7 +5451,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-extracttemplates.1.xml:58
+#: apt-extracttemplates.1.xml:60
msgid ""
"Temporary directory in which to write extracted <command>debconf</command> "
"template files and config scripts. Configuration Item: <literal>APT::"
@@ -5386,19 +5459,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-extracttemplates.1.xml:75
+#: apt-extracttemplates.1.xml:77
msgid ""
"<command>apt-extracttemplates</command> returns zero on normal operation, "
"decimal 100 on error."
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-sortpkgs.1.xml:33
+#: apt-sortpkgs.1.xml:35
msgid "Utility to sort package index files"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:39
+#: apt-sortpkgs.1.xml:41
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 "
@@ -5407,32 +5480,32 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:45
+#: apt-sortpkgs.1.xml:47
msgid ""
"All output is sent to standard output; the input must be a seekable file."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-sortpkgs.1.xml:54
+#: apt-sortpkgs.1.xml:56
msgid ""
"Use source index field ordering. Configuration Item: <literal>APT::"
"SortPkgs::Source</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-sortpkgs.1.xml:68
+#: apt-sortpkgs.1.xml:70
msgid ""
"<command>apt-sortpkgs</command> returns zero on normal operation, decimal "
"100 on error."
msgstr ""
#. type: Content of: <refentry><refnamediv><refpurpose>
-#: apt-ftparchive.1.xml:33
+#: apt-ftparchive.1.xml:35
msgid "Utility to generate index files"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:39
+#: apt-ftparchive.1.xml:41
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 "
@@ -5441,7 +5514,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:43
+#: apt-ftparchive.1.xml:45
msgid ""
"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; "
"program, incorporating its entire functionality via the <literal>packages</"
@@ -5451,7 +5524,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:49
+#: apt-ftparchive.1.xml:51
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 "
@@ -5461,7 +5534,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:60
+#: apt-ftparchive.1.xml:62
msgid ""
"The packages command generates a package file from a directory tree. It "
"takes the given directory and recursively searches it for .deb files, "
@@ -5470,13 +5543,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:65 apt-ftparchive.1.xml:89
+#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91
msgid ""
"The option <option>--db</option> can be used to specify a binary caching DB."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:70
+#: apt-ftparchive.1.xml:72
msgid ""
"The <literal>sources</literal> command generates a source index file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -5485,7 +5558,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:75
+#: apt-ftparchive.1.xml:77
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 "
@@ -5493,7 +5566,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:82
+#: apt-ftparchive.1.xml:84
msgid ""
"The <literal>contents</literal> command generates a contents file from a "
"directory tree. It takes the given directory and recursively searches it "
@@ -5504,7 +5577,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:94
+#: apt-ftparchive.1.xml:96
msgid ""
"The <literal>release</literal> command generates a Release file from a "
"directory tree. It recursively searches the given directory for uncompressed "
@@ -5519,7 +5592,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:104
+#: apt-ftparchive.1.xml:106
msgid ""
"Values for the additional metadata fields in the Release file are taken from "
"the corresponding variables under <literal>APT::FTPArchive::Release</"
@@ -5532,7 +5605,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:117
+#: apt-ftparchive.1.xml:119
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 "
@@ -5542,19 +5615,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:126
+#: apt-ftparchive.1.xml:128
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:132
+#: apt-ftparchive.1.xml:134
msgid "The Generate Configuration"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:134
+#: apt-ftparchive.1.xml:136
msgid ""
"The <literal>generate</literal> command uses a configuration file to "
"describe the archives that are going to be generated. It follows the typical "
@@ -5565,19 +5638,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:142
+#: apt-ftparchive.1.xml:144
msgid ""
"The generate configuration has four separate sections, each described below."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:144
+#: apt-ftparchive.1.xml:146
#, fuzzy
msgid "<literal>Dir</literal> Section"
msgstr "a linha <literal>Origin:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:146
+#: apt-ftparchive.1.xml:148
msgid ""
"The <literal>Dir</literal> section defines the standard directories needed "
"to locate the files required during the generation process. These "
@@ -5586,7 +5659,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:153
+#: apt-ftparchive.1.xml:155
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 "
@@ -5594,30 +5667,30 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:160
+#: apt-ftparchive.1.xml:162
msgid "Specifies the location of the override files."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:165
+#: apt-ftparchive.1.xml:167
msgid "Specifies the location of the cache files."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:170
+#: apt-ftparchive.1.xml:172
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:176
+#: apt-ftparchive.1.xml:178
#, fuzzy
msgid "<literal>Default</literal> Section"
msgstr "a linha <literal>Label:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:178
+#: apt-ftparchive.1.xml:180
msgid ""
"The <literal>Default</literal> section specifies default values, and "
"settings that control the operation of the generator. Other sections may "
@@ -5625,7 +5698,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:184
+#: apt-ftparchive.1.xml:186
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 "
@@ -5634,42 +5707,42 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:192
+#: apt-ftparchive.1.xml:194
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><listitem><para>
-#: apt-ftparchive.1.xml:198
+#: apt-ftparchive.1.xml:200
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><listitem><para>
-#: apt-ftparchive.1.xml:204
+#: apt-ftparchive.1.xml:206
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><listitem><para>
-#: apt-ftparchive.1.xml:210
+#: apt-ftparchive.1.xml:212
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><listitem><para>
-#: apt-ftparchive.1.xml:216
+#: apt-ftparchive.1.xml:218
msgid ""
"This is similar to <literal>Packages::Compress</literal> except that it "
"controls the compression for the Translation-en master file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:222
+#: apt-ftparchive.1.xml:224
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-"
@@ -5677,14 +5750,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:229
+#: apt-ftparchive.1.xml:231
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><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:236 apt-ftparchive.1.xml:382
+#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384
msgid ""
"Specifies whether long descriptions should be included in the "
"<filename>Packages</filename> file or split out into a master "
@@ -5692,13 +5765,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:242
+#: apt-ftparchive.1.xml:244
#, fuzzy
msgid "<literal>TreeDefault</literal> Section"
msgstr "a linha <literal>Label:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:244
+#: apt-ftparchive.1.xml:246
msgid ""
"Sets defaults specific to <literal>Tree</literal> sections. All of these "
"variables are substitution variables and have the strings $(DIST), "
@@ -5706,7 +5779,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:251
+#: apt-ftparchive.1.xml:253
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 "
@@ -5714,7 +5787,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:258
+#: apt-ftparchive.1.xml:260
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. "
@@ -5725,35 +5798,35 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:269
+#: apt-ftparchive.1.xml:271
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><listitem><para>
-#: apt-ftparchive.1.xml:275
+#: apt-ftparchive.1.xml:277
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><listitem><para>
-#: apt-ftparchive.1.xml:281
+#: apt-ftparchive.1.xml:283
msgid ""
"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/"
"binary-$(ARCH)/Packages</filename>"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:287
+#: apt-ftparchive.1.xml:289
msgid ""
"Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/"
"source/Sources</filename>"
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:293
+#: apt-ftparchive.1.xml:295
msgid ""
"Sets the output Translation-en master file with the long descriptions if "
"they should be not included in the Packages file. Defaults to <filename>"
@@ -5761,7 +5834,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:300
+#: apt-ftparchive.1.xml:302
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)/</"
@@ -5769,7 +5842,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:307
+#: apt-ftparchive.1.xml:309
msgid ""
"Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/"
"Contents-$(ARCH)</filename>. If this setting causes multiple Packages files "
@@ -5779,19 +5852,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:316
+#: apt-ftparchive.1.xml:318
msgid "Sets header file to prepend to the contents output."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:321
+#: apt-ftparchive.1.xml:323
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><listitem><para>
-#: apt-ftparchive.1.xml:327
+#: apt-ftparchive.1.xml:329
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -5799,7 +5872,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:334
+#: apt-ftparchive.1.xml:336
msgid ""
"Specifies that instead of walking the directory tree, <command>apt-"
"ftparchive</command> should read the list of files from the given file. "
@@ -5808,13 +5881,13 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:342
+#: apt-ftparchive.1.xml:344
#, fuzzy
msgid "<literal>Tree</literal> Section"
msgstr "a linha <literal>Label:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:344
+#: apt-ftparchive.1.xml:346
msgid ""
"The <literal>Tree</literal> section defines a standard Debian file tree "
"which consists of a base directory, then multiple sections in that base "
@@ -5824,7 +5897,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:349
+#: apt-ftparchive.1.xml:351
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 "
@@ -5833,7 +5906,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:354
+#: apt-ftparchive.1.xml:356
msgid ""
"All of the settings defined in the <literal>TreeDefault</literal> section "
"can be used in a <literal>Tree</literal> section as well as three new "
@@ -5841,7 +5914,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
-#: apt-ftparchive.1.xml:360
+#: apt-ftparchive.1.xml:362
#, no-wrap
msgid ""
"for i in Sections do \n"
@@ -5851,7 +5924,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:357
+#: apt-ftparchive.1.xml:359
msgid ""
"When processing a <literal>Tree</literal> section <command>apt-ftparchive</"
"command> performs an operation similar to: <placeholder type=\"programlisting"
@@ -5859,7 +5932,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:368
+#: apt-ftparchive.1.xml:370
msgid ""
"This is a space separated list of sections which appear under the "
"distribution; typically this is something like <literal>main contrib non-"
@@ -5867,7 +5940,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:375
+#: apt-ftparchive.1.xml:377
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 "
@@ -5875,37 +5948,37 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:388
+#: apt-ftparchive.1.xml:390
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><listitem><para>
-#: apt-ftparchive.1.xml:394
+#: apt-ftparchive.1.xml:396
msgid ""
"Sets the source override file. The override file contains section "
"information."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:400 apt-ftparchive.1.xml:446
+#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448
msgid "Sets the binary extra override file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:405 apt-ftparchive.1.xml:451
+#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453
msgid "Sets the source extra override file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><title>
-#: apt-ftparchive.1.xml:410
+#: apt-ftparchive.1.xml:412
#, fuzzy
msgid "<literal>BinDirectory</literal> Section"
msgstr "a linha <literal>Component:</literal>"
#. type: Content of: <refentry><refsect1><refsect2><para>
-#: apt-ftparchive.1.xml:412
+#: apt-ftparchive.1.xml:414
msgid ""
"The <literal>bindirectory</literal> section defines a binary directory tree "
"with no special structure. The scope tag specifies the location of the "
@@ -5915,54 +5988,54 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:420
+#: apt-ftparchive.1.xml:422
msgid "Sets the Packages file output."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:425
+#: apt-ftparchive.1.xml:427
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:431
+#: apt-ftparchive.1.xml:433
msgid "Sets the Contents file output (optional)."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:436
+#: apt-ftparchive.1.xml:438
msgid "Sets the binary override file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:441
+#: apt-ftparchive.1.xml:443
msgid "Sets the source override file."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:456
+#: apt-ftparchive.1.xml:458
msgid "Sets the cache DB."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:461
+#: apt-ftparchive.1.xml:463
msgid "Appends a path to all the output paths."
msgstr ""
#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:466
+#: apt-ftparchive.1.xml:468
msgid "Specifies the file list file."
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:473
+#: apt-ftparchive.1.xml:475
msgid "The Binary Override File"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:474
+#: apt-ftparchive.1.xml:476
msgid ""
"The binary override file is fully compatible with &dpkg-scanpackages;. It "
"contains four fields separated by spaces. The first field is the package "
@@ -5972,19 +6045,19 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:480
+#: apt-ftparchive.1.xml:482
#, no-wrap
msgid "old [// oldn]* => new"
msgstr ""
#. type: Content of: <refentry><refsect1><para><literallayout>
-#: apt-ftparchive.1.xml:482
+#: apt-ftparchive.1.xml:484
#, no-wrap
msgid "new"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:479
+#: apt-ftparchive.1.xml:481
msgid ""
"The general form of the maintainer field is: <placeholder type="
"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" "
@@ -5995,12 +6068,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:490
+#: apt-ftparchive.1.xml:492
msgid "The Source Override File"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:492
+#: apt-ftparchive.1.xml:494
msgid ""
"The source override file is fully compatible with &dpkg-scansources;. It "
"contains two fields separated by spaces. The first field is the source "
@@ -6008,12 +6081,12 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:497
+#: apt-ftparchive.1.xml:499
msgid "The Extra Override File"
msgstr ""
#. type: Content of: <refentry><refsect1><para>
-#: apt-ftparchive.1.xml:499
+#: apt-ftparchive.1.xml:501
msgid ""
"The extra override file allows any arbitrary tag to be added or replaced in "
"the output. It has three columns, the first is the package, the second is "
@@ -6021,7 +6094,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:510
+#: apt-ftparchive.1.xml:512
msgid ""
"Generate the given checksum. These options default to on, when turned off "
"the generated index files will not have the checksum fields where possible. "
@@ -6035,14 +6108,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:521
+#: apt-ftparchive.1.xml:523
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:527
+#: apt-ftparchive.1.xml:529
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 "
@@ -6051,7 +6124,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:535
+#: apt-ftparchive.1.xml:537
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 "
@@ -6060,7 +6133,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:543
+#: apt-ftparchive.1.xml:545
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 "
@@ -6070,7 +6143,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:553
+#: apt-ftparchive.1.xml:555
msgid ""
"Select the source override file to use with the <literal>sources</literal> "
"command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
@@ -6078,14 +6151,14 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:559
+#: apt-ftparchive.1.xml:561
msgid ""
"Make the caching databases read only. Configuration Item: <literal>APT::"
"FTPArchive::ReadOnlyDB</literal>."
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:564
+#: apt-ftparchive.1.xml:566
msgid ""
"Accept in the <literal>packages</literal> and <literal>contents</literal> "
"commands only package files matching <literal>*_arch.deb</literal> or "
@@ -6094,7 +6167,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:572
+#: apt-ftparchive.1.xml:574
msgid ""
"&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
"packages are recompiled and/or republished with the same version again, this "
@@ -6108,7 +6181,7 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt-ftparchive.1.xml:584
+#: apt-ftparchive.1.xml:586
msgid ""
"This configuration option defaults to \"<literal>true</literal>\" and should "
"only be set to <literal>\"false\"</literal> if the Archive generated with "
@@ -6118,20 +6191,20 @@ msgid ""
msgstr ""
#. type: Content of: <refentry><refsect1><para><programlisting>
-#: apt-ftparchive.1.xml:602
+#: apt-ftparchive.1.xml:604
#, 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:598
+#: apt-ftparchive.1.xml:600
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:612
+#: apt-ftparchive.1.xml:614
msgid ""
"<command>apt-ftparchive</command> returns zero on normal operation, decimal "
"100 on error."
diff --git a/po/ar.po b/po/ar.po
index c392c8240..009e5a2b4 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt_po\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2006-10-20 21:28+0300\n"
"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
"Language-Team: Arabic <support@arabeyes.org>\n"
@@ -19,154 +19,156 @@ msgstr ""
"X-Poedit-SourceCharset: utf-8\n"
"X-Generator: KBabel 1.11.4\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "الحزمة %s النسخة %s لها معتمد غير مستوÙÙ‰:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "أسماء الحزم الكلية :"
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "أسماء الحزم الكلية :"
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " الحزم العادية:"
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr "الحزمة الوهمية تماماً:"
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " الحزمة الوهمية المÙردة:"
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " الحزم الوهمية المختلطة:"
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Ù…Ùقودة:"
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "مجموع النسخ الÙريدة:"
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
#, fuzzy
msgid "Total distinct descriptions: "
msgstr "مجموع النسخ الÙريدة:"
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "مجموع المعتمدات:"
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "مجموع علاقات النسخ/الملÙات:"
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
#, fuzzy
msgid "Total Desc/File relations: "
msgstr "مجموع علاقات النسخ/الملÙات:"
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "مجموع علاقات النسخ/الملÙات:"
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr ""
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr ""
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr ""
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "مجموع المساحة المحسوب حسابها:"
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr ""
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "لم ÙŠÙعثر على أية حزم"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "يجب أن تعطي صيغة واحدة بالضبط"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "تعذر العثور على الحزمة %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "ملÙات الحزم:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "الحزم المÙدبّسة:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(غير موجود)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Ù…Ùثبّت:"
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " مرشّح: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(لاشيء)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr ""
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " جدول النسخ:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, fuzzy, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s لـ%s %s Ù…Ùجمّع على %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -204,36 +206,36 @@ msgid ""
msgstr ""
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
#, 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:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "الرجاء إدخال قرص ÙÙŠ السواقة وضغط الزر enter"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Ùشل تغيير اسم %s إلى %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "كرر هذه العملية لباقي الأقراص المدمجة ÙÙŠ المجموعة."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr ""
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -249,587 +251,62 @@ msgid ""
" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[Y/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[y/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "Y"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr ""
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "إلا أن %s مثبت"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "إلا أنه سيتم تثبيت %s"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "إلا أنه غير قابل للتثبيت"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "إلا أنها حزمة وهمية"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "إلا أنها غير مثبتة"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "إلا أنه لن يتم تثبيتها"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " أو"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "سيتم تثبيت الحزم الجديدة التالية:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "سيتم إزالة الحزم التالية:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "سيتم الإبقاء على الحزم التالية:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "ستتم ترقية الحزم التالية:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "سيتم تثبيط الحزم التالية:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "سيتم تغيير الحزم المبقاة التالية:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (بسبب %s) "
-
-#: cmdline/apt-get.cc:600
-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"
-"لا يجب أن تقوم بهذا إلى إن كنت تعر٠تماماً ما تقوم به!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu سيتم ترقيتها، %lu مثبتة حديثاً، "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu أعيد تثبيتها، "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu مثبطة، "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu لإزالتها و %lu لم يتم ترقيتها.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu غير مثبتة بالكامل أو مزالة.\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "لاحظ، تحديد %s بسبب صيغة regex '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "لاحظ، تحديد %s بسبب صيغة regex '%s'\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "الحزمة %s وهميّة وتوÙّرها:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [Ù…Ùثبّتة]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr ""
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "يجب اختيار واحدة بالتحديد لتثبيتها."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "على أيّ Ùإن الحزم التالية تحلّ مكانها:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "الحزمة %s ليس لها مرشح تثبيت"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "الحزمة %s غير Ù…Ùثبّتة، لذلك لن تÙزال\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "الحزمة %s غير Ù…Ùثبّتة، لذلك لن تÙزال\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "لاحظ، تحديد %s بدلاً من %s\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n"
-
-#: cmdline/apt-get.cc:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "إعادة تثبيت %s غير ممكنة، حيث أنّه لا يمكن تنزيلها.\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s هي النسخة الأحدث.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, fuzzy, c-format
-msgid "%s set to manually installed.\n"
-msgstr "إلا أنه سيتم تثبيت %s"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "النسخة المحددة %s (%s) للإصدارة %s\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "النسخة المحددة %s (%s) للإصدارة %s\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "تصحيح المعتمدات..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " Ùشل."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "لم يمكن تصحيح المعتمدات"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "لم يمكن تقليص مجموعة الترقية"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " تم"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "قد ترغب بتنÙيذ الأمر 'apt-get -f install' لتصحيح هذه."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Ù…Ùعتمدات غير مستوÙاة. حاول استخدام -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "تحذير: تعذرت المصادقة على الحزم التالية!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "تم غض النظر عن تحذير المصادقة.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "تثبيت هذه الحزم دون التحقق منها؟"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "تعذرت المصادقة على بعض الحزم"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "هناك مشاكل وتم استخدام -y دون --force-yes"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود حزم معطوبة!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "حزم بحاجة للإزالة لكن الإزالة Ù…Ùعطّلة."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "خطأ داخلي، لم تنته عملية الترتيب"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "يا للغرابة.. لم تتطابق الأحجام، الرجاء مراسلة apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "بحاجة إلى جلب %sب/%sب من الأرشيÙ.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "بحاجة إلى جلب %sب من الأرشيÙ.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, fuzzy, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "بعد الاستخراج %sب من المساحة الإضاÙيّة سيتمّ استخدامها.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, fuzzy, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "بعد الاستخراج %sب من المساحة ستÙرّغ.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "تعذر حساب المساحة الحرة ÙÙŠ %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "ليس هناك مساحة كاÙية ÙÙŠ %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "نعم، اÙعل ما أقوله!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"أنت على وشك أن تقوم بشيء ضارّ جداً\n"
-"كي تستمر اكتب العبارة '%s'\n"
-" ØŸ] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "إجهاض."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "هل تريد الاستمرار؟"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Ùشل إحضار %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Ùشل تنزيل بعض الملÙات"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "اكتمل التنزيل ÙˆÙÙŠ وضع التنزيل Ùقط"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"تعذر إحضار بعض الأرشيÙØŒ ربما يمكنك محاولة تنÙيذ apt-get update أو إضاÙØ© --"
-"fix-missingØŸ"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing وتبديل الأوساط غير مدعومة حالياً"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "تعذر تصحيح الحزم المÙقودة."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "إجهاض التثبيت."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr ""
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "لا يقبل الأمر update أية Ù…Ùعطيات"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "قد تساعد المعلومات التالية ÙÙŠ حل المشكلة:"
-
-#: cmdline/apt-get.cc:1853
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء"
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:"
-msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:"
-msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "قد ترغب بتشغيل 'apt-get -f install' لتصحيح هذه:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Ù…Ùعتمدات غير مستوÙاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "حزم معطوبة"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "سيتم تثبيت الحزم الإضاÙيّة التالية:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "الحزم المقترحة:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "الحزم المستحسنة:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "تعذر العثور على الحزمة %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "إلا أنه سيتم تثبيت %s"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "إلا أنه سيتم تثبيت %s"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "حساب الترقية..."
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Ùشل"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "تمّ"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr ""
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "تعذر Ù‚ÙŽÙْل دليل التنزيل"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "تعذر العثور على مصدر الحزمة %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -837,141 +314,151 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "تخطي المل٠'%s' المنزل مسبقاً\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "تعذر حساب المساحة الحرة ÙÙŠ %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "ليس هناك مساحة كاÙية ÙÙŠ %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "يجب جلب %sب/%sب من الأرشيÙات المصدرية.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "يجب جلب %sب من الأرشيÙات المصدريّة.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "إحضار المصدر %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Ùشل إحضار بعض الأرشيÙات."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "اكتمل التنزيل ÙˆÙÙŠ وضع التنزيل Ùقط"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "أمر ÙÙƒ الحزمة '%s' Ùشل.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr ""
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "أمر البناء '%s' Ùشل.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr ""
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr ""
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr ""
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
"packages"
msgstr ""
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
"found"
msgstr ""
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
"package %s can't satisfy version requirements"
msgstr ""
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
"version"
msgstr ""
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr ""
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr ""
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr ""
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "الاتصال بـ%s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "الوحدات المدعومة:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1017,98 +504,53 @@ msgid ""
" This APT has Super Cow Powers.\n"
msgstr ""
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr ""
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "جلب:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "تجاهل"
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "خطأ"
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "جلب %sب ÙÙŠ %s (%sب/Ø«)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [يعمل]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"تغيير الوسط: الرجاء إدخال القرص المÙسمّى\n"
-" '%s'\n"
-"ÙÙŠ السوّاقة '%s' وضغط Ù…Ùتاح الإدخال\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "إلا أنها غير مثبتة"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "إلا أنه سيتم تثبيت %s"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "إلا أنه سيتم تثبيت %s"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s هي النسخة الأحدث.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s هي النسخة الأحدث.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr ""
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "إلا أنه سيتم تثبيت %s"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Ùشل Ùتح %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1130,6 +572,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1227,8 +686,8 @@ msgstr "انتهى وقت الاتصال"
msgid "Server closed the connection"
msgstr "أغلق الخادم الاتصال"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "خطأ ÙÙŠ القراءة"
@@ -1241,8 +700,8 @@ msgid "Protocol corruption"
msgstr ""
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "خطأ ÙÙŠ الكتابة"
@@ -1254,6 +713,10 @@ msgstr ""
msgid "Could not connect data socket, connection timed out"
msgstr ""
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Ùشل"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr ""
@@ -1296,7 +759,7 @@ msgstr ""
msgid "Unable to accept connection"
msgstr "تعذر قبول الاتصال"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr ""
@@ -1424,81 +887,584 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "خطأ ÙÙŠ الكتابة إلى الملÙ"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "خطأ ÙÙŠ القراءة من الخادم. أقÙÙ„ الطر٠الآخر الاتصال"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "خطأ ÙÙŠ القراءة من الخادم"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "خطأ ÙÙŠ الكتابة إلى الملÙ"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Ùشل التحديد"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "انتهى وقت الاتصال"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "خطأ ÙÙŠ الكتابة إلى مل٠المÙخرجات"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "بانتظار الترويسات"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "سطر ترويسة سيء"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "أرسل خادم http ترويسة ردّ غير صالحة"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "أرسل خادم http ترويسة طول محتويات (ÙContent-Length) غير صالحة"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "أرسل خادم http ترويسة مدى محتويات (ÙContent-Range) غير صالحة"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "خادم http له دعم مدى معطوب"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "نسق تاريخ مجهول"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Ùشل التحديد"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "بيانات ترويسة سيئة"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "انتهى وقت الاتصال"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Ùشل الاتصال"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "خطأ ÙÙŠ الكتابة إلى مل٠المÙخرجات"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "خطأ داخلي"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "خطأ ÙÙŠ الكتابة إلى الملÙ"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "خطأ ÙÙŠ الكتابة إلى الملÙ"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود حزم معطوبة!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "خطأ ÙÙŠ القراءة من الخادم. أقÙÙ„ الطر٠الآخر الاتصال"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "حزم بحاجة للإزالة لكن الإزالة Ù…Ùعطّلة."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "خطأ ÙÙŠ القراءة من الخادم"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "خطأ داخلي، لم تنته عملية الترتيب"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "بيانات ترويسة سيئة"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "يا للغرابة.. لم تتطابق الأحجام، الرجاء مراسلة apt@packages.debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Ùشل الاتصال"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "بحاجة إلى جلب %sب/%sب من الأرشيÙ.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "خطأ داخلي"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "بحاجة إلى جلب %sب من الأرشيÙ.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "بعد الاستخراج %sب من المساحة الإضاÙيّة سيتمّ استخدامها.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "بعد الاستخراج %sب من المساحة ستÙرّغ.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "ليس هناك مساحة كاÙية ÙÙŠ %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "هناك مشاكل وتم استخدام -y دون --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "نعم، اÙعل ما أقوله!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"أنت على وشك أن تقوم بشيء ضارّ جداً\n"
+"كي تستمر اكتب العبارة '%s'\n"
+" ØŸ] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "إجهاض."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "هل تريد الاستمرار؟"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Ùشل تنزيل بعض الملÙات"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"تعذر إحضار بعض الأرشيÙØŒ ربما يمكنك محاولة تنÙيذ apt-get update أو إضاÙØ© --"
+"fix-missingØŸ"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing وتبديل الأوساط غير مدعومة حالياً"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "تعذر تصحيح الحزم المÙقودة."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "إجهاض التثبيت."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "قد تساعد المعلومات التالية ÙÙŠ حل المشكلة:"
+
+#: apt-private/private-install.cc:517
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء"
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:"
+msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:"
+msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "قد ترغب بتشغيل 'apt-get -f install' لتصحيح هذه:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Ù…Ùعتمدات غير مستوÙاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "حزم معطوبة"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "سيتم تثبيت الحزم الإضاÙيّة التالية:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "الحزم المقترحة:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "الحزم المستحسنة:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "تحذير: تعذرت المصادقة على الحزم التالية!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "تم غض النظر عن تحذير المصادقة.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "تعذرت المصادقة على بعض الحزم"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "تثبيت هذه الحزم دون التحقق منها؟"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Ùشل إحضار %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Ù…Ùثبّتة]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Ù…Ùثبّتة]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Ù…Ùثبّتة]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr ""
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "إلا أن %s مثبت"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "إلا أنه سيتم تثبيت %s"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "إلا أنه غير قابل للتثبيت"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "إلا أنها حزمة وهمية"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "إلا أنها غير مثبتة"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "إلا أنه لن يتم تثبيتها"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " أو"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "سيتم تثبيت الحزم الجديدة التالية:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "سيتم إزالة الحزم التالية:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "سيتم الإبقاء على الحزم التالية:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "ستتم ترقية الحزم التالية:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "سيتم تثبيط الحزم التالية:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "سيتم تغيير الحزم المبقاة التالية:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (بسبب %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"تحذير: ستتم إزالة الحزم الأساسية التالية.\n"
+"لا يجب أن تقوم بهذا إلى إن كنت تعر٠تماماً ما تقوم به!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu سيتم ترقيتها، %lu مثبتة حديثاً، "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu أعيد تثبيتها، "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu مثبطة، "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu لإزالتها و %lu لم يتم ترقيتها.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu غير مثبتة بالكامل أو مزالة.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[Y/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[y/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "Y"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr ""
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "تصحيح المعتمدات..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " Ùشل."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "لم يمكن تصحيح المعتمدات"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "لم يمكن تقليص مجموعة الترقية"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " تم"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "قد ترغب بتنÙيذ الأمر 'apt-get -f install' لتصحيح هذه."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Ù…Ùعتمدات غير مستوÙاة. حاول استخدام -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "لا يقبل الأمر update أية Ù…Ùعطيات"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "حساب الترقية..."
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "تمّ"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Ùشل تغيير اسم %s إلى %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr ""
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "جلب:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "تجاهل"
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "خطأ"
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "جلب %sب ÙÙŠ %s (%sب/Ø«)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [يعمل]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"تغيير الوسط: الرجاء إدخال القرص المÙسمّى\n"
+" '%s'\n"
+"ÙÙŠ السوّاقة '%s' وضغط Ù…Ùتاح الإدخال\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "تعذرت قراءة %s"
@@ -1557,34 +1523,34 @@ msgstr ""
msgid "Connection closed prematurely"
msgstr ""
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "إعداد اÙتراضيّ سيّء!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "اضغط Ù…Ùتاح الإدخال للاستمرار."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr ""
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "حدثت بعض الأخطاء أثناء ÙÙƒ الحزمة. سأقوم بتهيئة "
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "الحزم التي تم تثبيتها. قد يتسبب هذا بظهر أخطاء متكررة"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "أو أخطاء سبّبتها المÙعتمدات المÙقودة. لا بأس بهذا، Ùقط الأخطاء"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "أعلى هذه الرسالة مهمّة. الرجاء تصحيحها وتشغيل التثبيت مجدداً"
@@ -1782,36 +1748,36 @@ msgstr ""
msgid "Failed to unlink %s"
msgstr ""
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Ùشل ربط %s بـ%s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr ""
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr ""
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr ""
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr ""
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr ""
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr ""
@@ -1890,7 +1856,7 @@ msgstr ""
msgid "Failed to rename %s to %s"
msgstr "Ùشل تغيير اسم %s إلى %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -1938,7 +1904,7 @@ msgstr "أرشي٠Ùاسد"
msgid "Tar checksum failed, archive corrupted"
msgstr "Ùشل تحقّق Checksum لمل٠TarØŒ الأرشي٠Ùاسد"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr ""
@@ -2062,22 +2028,17 @@ msgid "Unable to stat %s"
msgstr ""
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr ""
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "خطأ داخلي، تعذر العثور على العضو %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr ""
@@ -2135,85 +2096,85 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "تعذر العثور على التحديد %s"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "اختصار نوع مجهول: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Ùتح مل٠التهيئة %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr ""
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr ""
@@ -2238,48 +2199,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... تمّ"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "خيار سطر الأمر '%c' [من %s] مجهول."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "خيار سطر الأمر %s غير Ù…Ùهوم"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "الخيار %s يتطلّب Ù…Ùعطى."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "الخيار '%s' طويل جداً"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "عمليّة غير صالحة %s"
@@ -2293,116 +2254,116 @@ msgstr ""
msgid "Failed to stat the cdrom"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "مشكلة ÙÙŠ إغلاق الملÙ"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "Ùشل إغلاق المل٠%s"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "مشكلة ÙÙŠ إغلاق الملÙ"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "مشكلة ÙÙŠ مزامنة الملÙ"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "مشكلة ÙÙŠ إغلاق الملÙ"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "مشكلة ÙÙŠ مزامنة الملÙ"
@@ -2520,12 +2481,12 @@ msgstr "Ùشل Ùتح %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Ùشلت كتابة المل٠%s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr ""
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr ""
@@ -2600,19 +2561,19 @@ msgstr ""
msgid "Type '%s' is not known on line %u in source list %s"
msgstr ""
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Ùشل إغلاق المل٠%s"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2631,22 +2592,16 @@ msgid ""
"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
msgstr ""
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr ""
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2689,12 +2644,12 @@ msgstr ""
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "الرجاء إدخال القرص المÙسمّى '%s' ÙÙŠ السوّاقة '%s' وضغط Ù…Ùتاح الإدخال."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "نظام الحزم '%s' غير مدعوم"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr ""
@@ -2726,17 +2681,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr ""
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr ""
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr ""
@@ -2803,45 +2758,49 @@ msgstr ""
msgid "rename failed, %s (%s -> %s)."
msgstr "Ùشل إعادة التسمية ØŒ %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum غير متطابقة"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
#, fuzzy
msgid "Hash Sum mismatch"
msgstr "MD5Sum غير متطابقة"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "الحجم غير متطابق"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "عمليّة غير صالحة %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "تعذر Ùتح مل٠قاعدة البيانات %s: %s"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -2849,41 +2808,35 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, 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:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "الحجم غير متطابق"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "تعذر Ùتح مل٠قاعدة البيانات %s: %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "لاحظ، تحديد %s بدلاً من %s\n"
@@ -3023,49 +2976,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "MD5Sum غير متطابقة"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "تعذر العثور على الإصدارة '%s' للحزمة '%s'"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "تعذر العثور على النسخة '%s' للحزمة '%s'"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "تعذر العثور على الحزمة %s"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "تعذر العثور على الحزمة %s"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3090,127 +3043,153 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, fuzzy, c-format
msgid "Installing %s"
msgstr "تم تثبيت %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "تهيئة %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "إزالة %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "تمت إزالة %s بالكامل"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr ""
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "Ùشل إغلاق المل٠%s"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "تحضير %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Ùتح %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "التحضير لتهيئة %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "تم تثبيت %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "التحضير لإزالة %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "تم إزالة %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "التحضير لإزالة %s بالكامل"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "تمت إزالة %s بالكامل"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "تعذرت الكتابة إلى %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3240,6 +3219,63 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "لاحظ، تحديد %s بسبب صيغة regex '%s'\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "لاحظ، تحديد %s بسبب صيغة regex '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "الحزمة %s وهميّة وتوÙّرها:\n"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "يجب اختيار واحدة بالتحديد لتثبيتها."
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "على أيّ Ùإن الحزم التالية تحلّ مكانها:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "الحزمة %s ليس لها مرشح تثبيت"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "الحزمة %s غير Ù…Ùثبّتة، لذلك لن تÙزال\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "الحزمة %s غير Ù…Ùثبّتة، لذلك لن تÙزال\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "لاحظ، تحديد %s بدلاً من %s\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "إعادة تثبيت %s غير ممكنة، حيث أنّه لا يمكن تنزيلها.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s هي النسخة الأحدث.\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "النسخة المحددة %s (%s) للإصدارة %s\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "النسخة المحددة %s (%s) للإصدارة %s\n"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum غير متطابقة"
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Ùتح مل٠التهيئة %s"
diff --git a/po/ast.po b/po/ast.po
index 91535bc7a..7b019905c 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.7.18\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2010-10-02 23:35+0100\n"
"Last-Translator: Iñigo Varela <ivarela@softastur.org>\n"
"Language-Team: Asturian (ast)\n"
@@ -15,151 +15,153 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Virtaal 0.5.2\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "El paquete %s versión %s nun cumple una dependencia:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Total de nomes de paquetes: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Total de cadarmes de paquetes: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Paquetes normales: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Paquetes virtuales puros: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Paquetes virtuales cenciellos: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Paquetes virtuales amestaos: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Falten: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Versiones distintes en total: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Descripciones distintes en total: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Dependencies totales: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Rellaciones versión/ficheru en total: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Rellaciones descripción/ficheru en total: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Mapes de provisiones en total: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Cadenes globalizaes en total: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Espaciu de dependencies de versión en total: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Espaciu ociosu en total: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Informe del total d'espaciu: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "El ficheru de paquetes %s nun ta sincronizáu."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Nun s'alcontraron paquetes"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Has de dar polo menos un patrón de gueta"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Nun pue alcontrase'l paquete %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Ficheros de paquete:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"La caché nun ta sincronizada, nun puede facese x-ref a un ficheru de paquete"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Paquetes na chincheta:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(nun s'alcontró)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Instaláu: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Candidatu: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(dengún)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Chincheta de paquetes: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Tabla de versiones:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s pa %s compiláu en %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -236,35 +238,35 @@ msgstr ""
"Ver les páxines del manual apt-cache(8) y apt.conf(5) pa más información.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Da-y un nome a esti discu, como 'Debian 5.0.3 Discu 1'"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Inxerta un discu nel preséu y calca intro"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Falló al montar '%s' a '%s'"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Repite'l procesu colos demás CDs del conxuntu."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argumentos non empareyaos"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -292,596 +294,55 @@ msgstr ""
" -c=? Llee esti ficheru de configuración\n"
" -o=? Conseña una opción de configuración arbitraria, p. ex.\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[S/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[s/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "S"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Error de compilación d'espresión regular - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Los siguientes paquetes nun cumplen dependencies:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "pero %s ta instaláu"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "pero %s ta pa instalar"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "pero nun ye instalable"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "pero ye un paquete virtual"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "pero nun ta instaláu"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "pero nun va instalase"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " o"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Van instalase los siguientes paquetes NUEVOS:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Los siguientes paquetes van DESANICIASE:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Los siguientes paquetes tan reteníos:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Los siguientes paquetes van actualizase:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Los siguientes paquetes van DESACTUALIZASE:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Van camudase los siguientes paquetes reteníos:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (por %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"AVISU: Los siguientes paquetes esenciales van desaniciase.\n"
-"¡Esto NUN hai que facelo si nun sabes esautamente lo que faes!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu actualizaos, %lu nuevos instalaos, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstalaos, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu desactualizaos, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu para desaniciar y %lu nun actualizaos.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu nun instalaos dafechu o desaniciaos.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Nota, escoyendo '%s' pa la xera '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Nota, escoyendo '%s' pa regex '%s'\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "El paquete %s ye un paquete virtual ufríu por:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [Instaláu]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Nun ye versión candidata]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Has d'escoyer esplícitamente unu pa instalar."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"El paquete %s nun ta disponible, otru paquete refierse a él.\n"
-"Esto puede significar que falta el paquete, ta arrumbáu, o sólo\n"
-"ta disponible dende otra fonte\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Sicasí, los siguientes paquetes reemplacenlu:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "El paquete '%s' nun tien candidatu pa instalación"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Los paquetes virtuales como '%s' nun pueden desaniciase\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "El paquete %s nun ta instalau, nun va desaniciase\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "El paquete %s nun ta instalau, nun va desaniciase\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Nota, escoyendo %s nel llugar de %s\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "Saltando %s, ya ta instalau y la actualización nun ta activada.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "Saltando %s, nun ta instaláu y namái se requieren anovamientos.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "La reinstalación de %s nun ye dable, nun pue descargase.\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s yá ta na versión más nueva.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s axustáu como instaláu manualmente.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Esbillada la versión %s (%s) pa %s\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Esbillada la versión %s (%s) pa %s\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Iguando dependencies..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " falló."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Nun pudieron iguase les dependencies"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Nun pue amenorgase'l conxuntu d'actualización"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Fecho"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "Habríes d'executar 'apt-get -f install' para igualo."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dependencies incumplíes. Téntalo usando -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "AVISU: ¡Nun pudieron autenticase los siguientes paquetes!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Avisu d'autenticación saltáu.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "¿Instalar esos paquetes ensin verificación?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Dellos paquetes nun pudieron autenticase"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Hai problemes y utilizose -y ensin --force-yes"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Error internu, ¡InstallPackages llamose con paquetes frañaos!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Fai falta desaniciar los paquetes pero desaniciar ta torgáu."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Error internu, ordenar nun finó"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "Que raro.. Los tamaños nun concasen, escribe a apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Hai que descargar %sB/%sB d'archivos.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Hai que descargar %sB d'archivos.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Tres d'esta operación, van usase %sB d'espaciu de discu adicional.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "Tres d'esta operación, van lliberase %sB d'espaciu de discu.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Nun pue determinase l'espaciu llibre de %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Nun tienes espaciu libre bastante en %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Conseñose Trivial Only pero ésta nun ye una operación trivial."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Sí, ¡facer lo que digo!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Tas a piques de facer daqué potencialmente dañible.\n"
-"Pa continuar escribe la frase '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Encaboxar."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "¿Quies continuar?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Falló algamar %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Dellos ficheros nun pudieron descargase"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Descarga completa y en mou de sólo descarga"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Nun pudieron algamase dellos archivos, ¿seique executando apt-get update o "
-"tentando --fix-missing?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing y cambéu de mediu nun ta sofitao actualmente"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Nun pudieron iguase los paquetes que falten."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Encaboxando la instalación."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"El siguiente paquete desapareció del sistema como\n"
-"tolos ficheros fueron sobroescritos por otros paquetes:"
-msgstr[1] ""
-"Los siguientes paquetes desaparecieron del sistema como\n"
-"tolos ficheros fueron sobroescritos por otros paquetes:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Nota: Esto faise automáticamente y baxo demanda por dpkg."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Inorar release destín non disponible '%s' pal paquete '%s'"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Tomando '%s' como paquetes d'oríxenes en llugar de '%s'\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Inorar versión non disponible de '%s' del paquete '%s'"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "La orde update nun lleva argumentos"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, paez que AutoRemover destruyó daqué, lo que nun tendría\n"
-"por qué pasar. Por favor, unvía un informe de fallu escontra apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "La siguiente información pue aidar a resolver la situación:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Error internu, AutoRemover rompió coses"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "El siguiente paquete instalóse mou automáticu y yá nun se necesita:"
-msgstr[1] ""
-"Los siguientes paquetes instaláronse de manera automática y ya nun se "
-"necesiten:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "El paquete %lu instalóse de mou automáticu y yá nun se necesita.\n"
-msgstr[1] ""
-"Los paquetes %lu instaláronse de manera automática y ya nun se necesiten\n"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Usa 'apt-get autoremove' pa desinstalalos."
-msgstr[1] "Usa 'apt-get autoremove' pa desinstalalos."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Error internu, AllUpgrade rompió coses"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "Habríes d'executar 'apt-get -f install' para iguar estos:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o "
-"conseña una solución)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Dellos paquetes nun pudieron instalase. Esto puede significar que\n"
-"conseñaste una situación imposible o, si tas usando la distribución\n"
-"inestable, que dellos paquetes necesarios nun se crearon o que\n"
-"s'allugaron fuera d'Incoming."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Paquetes frañaos"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Instalaránse los siguientes paquetes extra:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Paquetes afalaos:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Paquetes encamentaos"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Nun pudo alcontrase'l paquete %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s axustáu como instaláu manualmente.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s axustáu como instaláu automáticamente.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Calculando l'anovamientu... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Falló"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Fecho"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Error internu, l'iguador de problemes frañó coses"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Nun pue bloquiase'l direutoriu de descarga"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "Has de conseñar polo menos un paquete p'algamar so fonte"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Nun pudo alcontrase un paquete fonte pa %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -890,7 +351,7 @@ msgstr ""
"AVISU: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, fuzzy, c-format
msgid ""
"Please use:\n"
@@ -902,87 +363,97 @@ msgstr ""
"pa baxar los caberos anovamientos (posiblemente tovía nun sacaos) pal "
"paquete.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Saltando'l ficheru yá descargáu '%s'\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Nun pue determinase l'espaciu llibre de %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Nun hai espaciu llibre bastante en %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Hai falta descargar %sB/%sB d'archivos fonte.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Hai falta descargar %sB d'archivos fonte.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Fonte descargada %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Falló la descarga de dellos archivos."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Descarga completa y en mou de sólo descarga"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "Saltando'l desempaquetáu de la fonte yá desempaquetada en %s\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Falló la orde de desempaquetáu '%s'.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Falló la orde build '%s'.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Falló el procesu fíu"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"Hai que conseñar polo menos un paquete pa verificar les dependencies de "
"construcción"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Nun pudo algamase información de dependencies de construcción pa %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s nun tien dependencies de construcción.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -991,7 +462,7 @@ msgstr ""
"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el "
"paquete %s"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1000,14 +471,14 @@ msgstr ""
"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el "
"paquete %s"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"Nun se pudo satisfacer la dependencia %s pa %s: El paquete instaláu %s ye "
"enforma nuevu"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1016,7 +487,7 @@ msgstr ""
"La dependencia %s en %s nun puede satisfacese porque denguna versión "
"disponible del paquete %s satisfaz los requisitos de versión"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1025,30 +496,30 @@ msgstr ""
"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el "
"paquete %s"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Les dependencies de construcción de %s nun pudieron satisfacese."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Fallu al procesar les dependencies de construcción"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Coneutando a %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Módulos sofitaos:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1139,103 +610,53 @@ msgstr ""
"pa más información y opciones.\n"
" Esti APT tien Poderes de Super Vaca.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"NOTA: ¡Esto sólo ye una simulación!\n"
-" apt-get necesita privilexos de root pa la execución real.\n"
-" ¡Ten tamién en cuenta que'l bloquéu ta desactiváu,\n"
-" asina que nun dependen de la pertinencia de la verdadera situación "
-"actual!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Oxe "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Des:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Descargaos %sB en %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Tresnando]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Cambeu de mediu: Por favor meti'l discu etiquetáu\n"
-" '%s'\n"
-"na unidá '%s' y calca Intro\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "pero nun ta instaláu"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s axustáu como instaláu manualmente.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s axustáu como instaláu automáticamente.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s yá ta na versión más nueva.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s yá ta na versión más nueva.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Esperaba %s pero nun taba ellí"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s axustáu como instaláu manualmente.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Nun pudo abrise %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1257,6 +678,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1354,8 +792,8 @@ msgstr "Gandió'l tiempu de conexón"
msgid "Server closed the connection"
msgstr "El sirvidor zarró la conexón"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Fallu de llectura"
@@ -1368,8 +806,8 @@ msgid "Protocol corruption"
msgstr "Corrupción del protocolu"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Fallu d'escritura"
@@ -1381,6 +819,10 @@ msgstr "Nun se pudo crear un socket"
msgid "Could not connect data socket, connection timed out"
msgstr "Nun se pudo coneutar el zócalu de datos; gandió'l tiempu de conexón"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Falló"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Nun se pudo coneutar un socket pasivu."
@@ -1423,7 +865,7 @@ msgstr "Gandió'l tiempu de conexón col zócalu de datos"
msgid "Unable to accept connection"
msgstr "Nun se pudo aceptar la conexón"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Hebo un problema al xenerar el hash del ficheru"
@@ -1554,81 +996,602 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Fallu al escribir nel ficheru"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Fallu al lleer nel sirvidor. El llau remotu zarró la conexón."
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Fallu al lleer nel sirvidor"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Fallu al escribir nel ficheru"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Falló la escoyeta"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Gandió'l tiempu de conexón"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Fallu al escribir nel ficheru de salida"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Esperando les testeres"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Fallu na llinia testera"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "El sirvidor HTTP mandó una testera incorreuta de rempuesta"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Length"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Range"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Esti sirvidor HTTP tien rotu'l soporte d'alcance"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Formatu de data desconocíu"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Falló la escoyeta"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Datos de testera incorreutos"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Gandió'l tiempu de conexón"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Fallo la conexón"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Fallu al escribir nel ficheru de salida"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Fallu internu"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Fallu al escribir nel ficheru"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Fallu al escribir nel ficheru"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Error internu, ¡InstallPackages llamose con paquetes frañaos!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Fallu al lleer nel sirvidor. El llau remotu zarró la conexón."
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Fai falta desaniciar los paquetes pero desaniciar ta torgáu."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Fallu al lleer nel sirvidor"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Error internu, ordenar nun finó"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Datos de testera incorreutos"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "Que raro.. Los tamaños nun concasen, escribe a apt@packages.debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Fallo la conexón"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Hai que descargar %sB/%sB d'archivos.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Fallu internu"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Hai que descargar %sB d'archivos.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Tres d'esta operación, van usase %sB d'espaciu de discu adicional.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Tres d'esta operación, van lliberase %sB d'espaciu de discu.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Nun tienes espaciu libre bastante en %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Hai problemes y utilizose -y ensin --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Conseñose Trivial Only pero ésta nun ye una operación trivial."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Sí, ¡facer lo que digo!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Tas a piques de facer daqué potencialmente dañible.\n"
+"Pa continuar escribe la frase '%s'\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Encaboxar."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "¿Quies continuar?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Dellos ficheros nun pudieron descargase"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Nun pudieron algamase dellos archivos, ¿seique executando apt-get update o "
+"tentando --fix-missing?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing y cambéu de mediu nun ta sofitao actualmente"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Nun pudieron iguase los paquetes que falten."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Encaboxando la instalación."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"El siguiente paquete desapareció del sistema como\n"
+"tolos ficheros fueron sobroescritos por otros paquetes:"
+msgstr[1] ""
+"Los siguientes paquetes desaparecieron del sistema como\n"
+"tolos ficheros fueron sobroescritos por otros paquetes:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Nota: Esto faise automáticamente y baxo demanda por dpkg."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Suponse que nun vamos esborrar coses; nun pue entamase AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, paez que AutoRemover destruyó daqué, lo que nun tendría\n"
+"por qué pasar. Por favor, unvía un informe de fallu escontra apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "La siguiente información pue aidar a resolver la situación:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Error internu, AutoRemover rompió coses"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "El siguiente paquete instalóse mou automáticu y yá nun se necesita:"
+msgstr[1] ""
+"Los siguientes paquetes instaláronse de manera automática y ya nun se "
+"necesiten:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "El paquete %lu instalóse de mou automáticu y yá nun se necesita.\n"
+msgstr[1] ""
+"Los paquetes %lu instaláronse de manera automática y ya nun se necesiten\n"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Usa 'apt-get autoremove' pa desinstalalos."
+msgstr[1] "Usa 'apt-get autoremove' pa desinstalalos."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Habríes d'executar 'apt-get -f install' para iguar estos:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o "
+"conseña una solución)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Dellos paquetes nun pudieron instalase. Esto puede significar que\n"
+"conseñaste una situación imposible o, si tas usando la distribución\n"
+"inestable, que dellos paquetes necesarios nun se crearon o que\n"
+"s'allugaron fuera d'Incoming."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Paquetes frañaos"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Instalaránse los siguientes paquetes extra:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Paquetes afalaos:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Paquetes encamentaos"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "AVISU: ¡Nun pudieron autenticase los siguientes paquetes!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Avisu d'autenticación saltáu.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Dellos paquetes nun pudieron autenticase"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "¿Instalar esos paquetes ensin verificación?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Falló algamar %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Instaláu]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Instaláu]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Instaláu]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Los siguientes paquetes nun cumplen dependencies:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "pero %s ta instaláu"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "pero %s ta pa instalar"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "pero nun ye instalable"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "pero ye un paquete virtual"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "pero nun ta instaláu"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "pero nun va instalase"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " o"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Van instalase los siguientes paquetes NUEVOS:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Los siguientes paquetes van DESANICIASE:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Los siguientes paquetes tan reteníos:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Los siguientes paquetes van actualizase:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Los siguientes paquetes van DESACTUALIZASE:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Van camudase los siguientes paquetes reteníos:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (por %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"AVISU: Los siguientes paquetes esenciales van desaniciase.\n"
+"¡Esto NUN hai que facelo si nun sabes esautamente lo que faes!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu actualizaos, %lu nuevos instalaos, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstalaos, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu desactualizaos, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu para desaniciar y %lu nun actualizaos.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu nun instalaos dafechu o desaniciaos.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[S/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[s/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "S"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Error de compilación d'espresión regular - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Iguando dependencies..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " falló."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Nun pudieron iguase les dependencies"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Nun pue amenorgase'l conxuntu d'actualización"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Fecho"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Habríes d'executar 'apt-get -f install' para igualo."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dependencies incumplíes. Téntalo usando -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "La orde update nun lleva argumentos"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Calculando l'anovamientu... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Error internu, AllUpgrade rompió coses"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Fecho"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"NOTA: ¡Esto sólo ye una simulación!\n"
+" apt-get necesita privilexos de root pa la execución real.\n"
+" ¡Ten tamién en cuenta que'l bloquéu ta desactiváu,\n"
+" asina que nun dependen de la pertinencia de la verdadera situación "
+"actual!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Nun pudo renomase %s como %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Oxe "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Des:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Descargaos %sB en %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Tresnando]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Cambeu de mediu: Por favor meti'l discu etiquetáu\n"
+" '%s'\n"
+"na unidá '%s' y calca Intro\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Nun ye a lleer %s"
@@ -1691,35 +1654,35 @@ msgstr "Falló criar un tubu IPC al soprocesu"
msgid "Connection closed prematurely"
msgstr "Conexón encaboxada prematuramente"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "¡Mal axuste por omisión!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Calca Intro pa continuar."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "¿Quies desaniciar los ficheros .deb descargaos previamente?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
"Ocurrieron dellos errores al desempaquetar. Los paquetes que s'instalaron "
"configurarse'l"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "van configurase. Esto pue causar errores duplicaos"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"o fallos causaos por dependencies que nun tán. Esto ta BIEN, sólo los fallos"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1971,36 +1934,36 @@ msgstr "Nun pudo lleese l'enllaz %s"
msgid "Failed to unlink %s"
msgstr "Nun pudo desenllazase %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Falló enllazar enllazr %s a %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Alcanzose'l llímite of %sB de desenllaz.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "L'archivu nun tien el campu paquetes"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s nun tien la entrada saltos\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " el curiador de %s ye %s y non %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s nun tien la entrada saltos de fonte\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s tampoco nun tiene una entrada binaria de saltos\n"
@@ -2079,7 +2042,7 @@ msgstr "Problema al desenllazar %s"
msgid "Failed to rename %s to %s"
msgstr "Nun pudo renomase %s como %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2150,7 +2113,7 @@ msgstr "Ficheru tollíu"
msgid "Tar checksum failed, archive corrupted"
msgstr "Falló la suma de control de tar, ficheru tollíu"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Testera del TAR triba %u desconocida, miembru %s"
@@ -2274,22 +2237,17 @@ msgid "Unable to stat %s"
msgstr "Nun ye a lleer %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Esti nun ye un ficheru DEB válidu, falta'l miembru '%s'"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "Esti nun ye un ficheru DEB válidu, falta'l miembru '%s', '%s' o '%s'"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Error internu, nun se pue atopar el miembru %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Ficheru de control inanalizable"
@@ -2349,88 +2307,88 @@ msgstr ""
"desactivao pol usuariu."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lih %limin %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Escoyeta %s que nun s'atopa"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Triba d'abreviatura que nun se reconoz: «%c»"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Abriendo ficheros de configuración %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Fallu de sintaxis %s:%u: Marca mal formada"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Fallu de sintaxis %s:%u: Puxarra extra dempués del valor"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
"Error de sintaxis %s:%u: Les directives pueden facese sólo nel nivel cimeru"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Fallu de sintaxis %s:%u: Demasiaes inclusiones añeraes"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Fallu de sintaxis %s:%u: Incluyendo dende equí"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, 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:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Fallu de sintaxis %s:%u: Directiva llimpia requier un tres opciones como "
"argumentos"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, 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"
@@ -2455,48 +2413,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Fecho"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "La opción de llinia d'ordes '%c' [de %s] ye desconocida."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Nun s'entiende la opción %s de la llinia d'ordes"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "La opción %s de la llinia d'ordes nun ye un valor booleanu"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "La opción %s necesita un argumentu."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Opción %s: L'axuste del elementu de configuración ha tener un =<val>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "La opción %s pide un argumentu enteru, non '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Opción '%s' enforma llarga"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "El sentíu %s nun s'entiende, prueba con braeru o falsu."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Operación incorreuta: %s"
@@ -2510,116 +2468,116 @@ msgstr "Nun puede algamase información del puntu de montaxe %s"
msgid "Failed to stat the cdrom"
msgstr "Nun se pudo montar el CD-ROM"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problemes zarrando'l ficheru gzip %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu de sólo llectura %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Nun puede abrise'l ficheru de bloquéu %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu %s montáu per nfs"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Nun se pudo torgar %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "El subprocesu %s recibió un fallu de segmentación."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "El subprocesu %s recibió una señal %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "El subprocesu %s devolvió un códigu d'error (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "El subprocesu %s terminó de manera inesperada"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Nun se pudo abrir el ficheru %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Nun pudo abrise un ficheru descriptor %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Nun pudo criase'l soprocesu IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Nun pudo executase'l compresor "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "lleíos, entá tenía de lleer %lu pero nun queda nada"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "escritos, entá tenía d'escribir %lu pero nun pudo facerse"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Problemes zarrando'l ficheru %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Hai problemes al renomar el ficheru %s a %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Hai problemes desvenceyando'l ficheru %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Hai problemes al sincronizar el ficheru"
@@ -2737,12 +2695,12 @@ msgstr "Nun se pudo abrir el ficheru d'estáu %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Falló la escritura del ficheru temporal d'estáu %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Nun se pudo tratar el ficheru de paquetes %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Nun se pudo tratar el ficheru de paquetes %s (2)"
@@ -2820,7 +2778,7 @@ msgstr "Llinia %u mal formada na llista d'oríxenes %s (triba)"
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "Triba '%s' desconocida na llinia %u de la llista d'oríxenes %s"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2829,12 +2787,12 @@ msgstr ""
"Nun pudó facese la configuración inmediatamente en '%s'. Por favor, mira man "
"5 apt.conf embaxo APT::Immediate-Configure for details. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Nun pudo abrise'l ficheru '%s'"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2857,7 +2815,7 @@ msgid ""
msgstr ""
"El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2865,19 +2823,10 @@ msgstr ""
"Error, pkgProblemResolver::Resolve xeneró frañadures, esto puede ser pola "
"mor de paquetes reteníos."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos reteníos."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Nun pudieron descargase dellos ficheros d'índiz; inoráronse o usáronse los "
-"antiguos nel so llugar."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2920,12 +2869,12 @@ msgstr "El métodu %s nun entamó correchamente"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Por favor, introduz el discu '%s' nel preséu '%s' y calca Intro."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "El sistema d'empaquetáu '%s' nun ta sofitáu"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Nun pudo determinase una triba de sistema d'empaquetáu afayadiza"
@@ -2958,18 +2907,18 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr ""
"Rexistru inválidu nel ficheru de preferencies %s, nun hai cabecera Paquete"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Nun s'entiende'l tipu de pin %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Nun hai prioridá (o ye cero) conseñada pa pin"
@@ -3037,44 +2986,48 @@ msgstr "Fallu de E/S al grabar caché d'oríxenes"
msgid "rename failed, %s (%s -> %s)."
msgstr "falló'l cambiu de nome, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "La suma MD5 nun concasa"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "La suma hash nun concasa"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "El tamañu nun concasa"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Operación incorreuta: %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Nun se pudo parchear el ficheru release %s"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "Nun hai clave pública denguna disponible pa les IDs de clave darréu:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Conflictu de distribución: %s (esperábase %s pero obtúvose %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3084,12 +3037,12 @@ msgstr ""
"anováu y va usase un ficheru índiz. Fallu GPG: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Fallu GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3098,16 +3051,12 @@ msgstr ""
"Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que "
"necesites iguar manualmente esti paquete (por faltar una arquitectura)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que "
-"necesites iguar manualmente esti paquete"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3115,16 +3064,12 @@ msgstr ""
"Los ficheros d'indiz de paquetes tan corrompíos. Nun hai campu Filename: pal "
"paquete %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "El tamañu nun concasa"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Nun se pudo parchear el ficheru release %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Ensin seiciones nel ficheru release %s"
@@ -3271,33 +3216,33 @@ msgstr "Nun puede alcontrase'l rexistru d'autenticación pa: %s"
msgid "Hash mismatch for: %s"
msgstr "El hash nun concasa pa: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Nun s'alcontró la distribución '%s' pa '%s'"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Nun s'alcontró la versión '%s' pa '%s'"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Nun pudo alcontrase la xera '%s'"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Nun pudo alcontrase dengún paquete por regex '%s'"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
"Nun pueden seleicionase versiones pal paquete'%s' como puramente virtual"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3306,21 +3251,21 @@ msgstr ""
"Nun puede seleicionase l'instalador o versión candidata pal paquete '%s' "
"como non tien nengún d'ellos"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Nun puede seleicionase la versión más nueva pal paquete'%s' como puramente "
"virtual"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Nun puede seleicionase versión candidata pal paquete %s que nun tien "
"candidata"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3346,111 +3291,132 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Executando dpkt"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Nun pudieron descargase dellos ficheros d'índiz; inoráronse o usáronse los "
+"antiguos nel so llugar."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Instalando %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Configurando %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Desinstalando %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "Desinstalóse dafechu %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Anotando desaniciáu de %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Executando activador de post-instalación de %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Falta'l direutoriu '%s'."
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Nun pudo abrise'l ficheru '%s'"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Preparando %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Desempaquetando %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Preparándose pa configurar %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s instaláu"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Preparándose pa desinstalar %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s desinstaláu"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Preparándose pa desinstalar dafechu %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Desinstalóse dafechu %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Nun se pue escribir en %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Nun puede escribise nel rexistru, falló openpty() (¿/dev/pts nun ta "
-"montáu?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Executando dpkt"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "Ensin informe escritu d'apport porque MaxReports llegó dafechu"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "problemes de dependencies - déxase ensin configurar"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3458,7 +3424,7 @@ msgstr ""
"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu que "
"siguió dende un fallu previu"
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3466,7 +3432,7 @@ msgstr ""
"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de "
"discu llenu"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3474,7 +3440,16 @@ msgstr ""
"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de "
"memoria"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de "
+"discu llenu"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3509,6 +3484,91 @@ msgstr ""
msgid "Not locked"
msgstr "Non bloquiáu"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Nota, escoyendo '%s' pa la xera '%s'\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Nota, escoyendo '%s' pa regex '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "El paquete %s ye un paquete virtual ufríu por:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Nun ye versión candidata]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Has d'escoyer esplícitamente unu pa instalar."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "El paquete %s nun ta disponible, otru paquete refierse a él.\n"
+#~ "Esto puede significar que falta el paquete, ta arrumbáu, o sólo\n"
+#~ "ta disponible dende otra fonte\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Sicasí, los siguientes paquetes reemplacenlu:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "El paquete '%s' nun tien candidatu pa instalación"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Los paquetes virtuales como '%s' nun pueden desaniciase\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "El paquete %s nun ta instalau, nun va desaniciase\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "El paquete %s nun ta instalau, nun va desaniciase\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Nota, escoyendo %s nel llugar de %s\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "Saltando %s, ya ta instalau y la actualización nun ta activada.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "Saltando %s, nun ta instaláu y namái se requieren anovamientos.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "La reinstalación de %s nun ye dable, nun pue descargase.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s yá ta na versión más nueva.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Esbillada la versión %s (%s) pa %s\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Esbillada la versión %s (%s) pa %s\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Inorar release destín non disponible '%s' pal paquete '%s'"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Esti nun ye un ficheru DEB válidu, falta'l miembru '%s', '%s' o '%s'"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "La suma MD5 nun concasa"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que "
+#~ "necesites iguar manualmente esti paquete"
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "Nun puede escribise nel rexistru, falló openpty() (¿/dev/pts nun ta "
+#~ "montáu?)\n"
+
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Saltando'l ficheru non esistente %s"
diff --git a/po/bg.po b/po/bg.po
index 01c334d5b..cb6dcd595 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.7.21\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-06-25 17:23+0300\n"
"Last-Translator: Damyan Ivanov <dmn@debian.org>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
@@ -21,151 +21,153 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"X-Generator: KBabel 1.11.4\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Пакетът %s верÑÐ¸Ñ %s има неудовлетворена завиÑимоÑÑ‚:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Общо имена на пакети : "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Общо пакетни Ñтруктури: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Ðормални пакети: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " ЧиÑти виртуални пакети: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Единични виртуални пакети: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " СмеÑени виртуални пакети: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " ЛипÑващи: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Общо уникални верÑии: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Общо уникални опиÑаниÑ: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Общо завиÑимоÑти: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Общо Ð¾Ñ‚Ð½Ð¾ÑˆÐµÐ½Ð¸Ñ Ð²ÐµÑ€ÑиÑ/файл: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Общо Ð¾Ñ‚Ð½Ð¾ÑˆÐµÐ½Ð¸Ñ Ð¾Ð¿Ð¸Ñание/файл: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Общо Ð¾Ñ‚Ð½Ð¾ÑˆÐµÐ½Ð¸Ñ â€žÐžÑигурÑва“: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Общо разгърнати низове: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Общо проÑтранÑтво за завиÑимоÑти по верÑии: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Общо празно проÑтранÑтво: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Общо отчетено проÑтранÑтво: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "ПакетниÑÑ‚ файл %s не е Ñинхронизиран."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "ÐÑма намерени пакети"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "ТрÑбва да въведете поне един шаблон за Ñ‚ÑŠÑ€Ñене"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr "Тази командата е оÑтарÑла. Използвайте „apt-mark showauto“ вмеÑто неÑ."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Пакетът %s не може да бъде намерен"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Пакетни файлове:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"Кешът не е Ñинхронизиран, не може да Ñе изпълни „x-ref“ на пакетен файл"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Отбити пакети:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(не Ñа намерени)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " ИнÑталирана: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Кандидат: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(нÑма)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Отбиване на пакета: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Таблица Ñ Ð²ÐµÑ€Ñиите:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s за %s компилиран на %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -237,35 +239,35 @@ msgstr ""
"За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð²Ð¸Ð¶Ñ‚Ðµ наръчниците apt-cache(8) и apt.conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Укажете име за този диÑк, например „Debian 5.0.3 Disk1“"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Сложете диÑк в уÑтройÑтвото и натиÑнете „Enter“"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "ÐеуÑпех при монтиране на %s на %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Повторете този Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð·Ð° оÑтаналите диÑкове от комплекта."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Ðргументите не Ñа по двойки"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -294,558 +296,32 @@ msgstr ""
" -o=? ÐаÑтройване на произволна конфигурационна опциÑ, Ñ‚.е. -o dir::cache=/"
"tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[Y/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[y/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "Y"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Грешка при компилирането на регулÑÑ€Ð½Ð¸Ñ Ð¸Ð·Ñ€Ð°Ð· - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Следните пакети имат неудовлетворени завиÑимоÑти:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "но е инÑталиран %s"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "но ще бъде инÑталиран %s"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "но той не може да бъде инÑталиран"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "но той е виртуален пакет"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "но той не е инÑталиран"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "но той нÑма да бъде инÑталиран"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " или"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Следните ÐОВИ пакети ще бъдат инÑталирани:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Следните пакети ще бъдат ПРЕМÐÐ¥ÐÐТИ:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Следните пакети нÑма да бъдат променени:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Следните пакети ще бъдат актуализирани:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Следните пакети ще бъдат ВЪРÐÐТИ КЪМ ПО-СТÐРРВЕРСИЯ:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Следните задържани пакети ще бъдат променени:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (поради %s) "
-
-#: cmdline/apt-get.cc:600
-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"
-"Това ÐЕ би Ñ‚Ñ€Ñбвало да Ñтава оÑвен ако знаете точно какво правите!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu актуализирани, %lu нови инÑталирани, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu преинÑталирани, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu върнати към по-Ñтара верÑиÑ, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu за премахване и %lu без промÑна.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu не Ñа напълно инÑталирани или премахнати.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Избиране на %s за задача „%s“\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Избиране на %s за регулÑрен израз „%s“\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Пакетът %s е виртуален пакет, оÑигурен от:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [ИнÑталиран]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [верÑиÑта не е кандидат]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "ТрÑбва изрично да изберете един за инÑталиране."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Пакетът %s не е наличен, но е в ÑпиÑъка ÑÑŠÑ Ð·Ð°Ð²Ð¸ÑимоÑти на друг пакет.\n"
-"Това може да означава, че пакета липÑва, оÑтарÑл е, или е доÑтъпен\n"
-"Ñамо от друг източник\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Обаче Ñледните пакети го замеÑтват:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Пакетът „%s“ нÑма кандидат за инÑталиране"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Виртуални пакети като „%s“ не могат да Ñе премахват\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"Пакетът „%s“ не е инÑталиран, така че не е премахнат. Може би имахте предвид "
-"„%s“?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Пакетът „%s“ не е инÑталиран, така че не е премахнат\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Избиране на „%s“ вмеÑто „%s“\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "ПропуÑкане на %s, вече е инÑталиран и не е маркиран за актуализациÑ.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"ПропуÑкане на %s, който не е инÑталиран при заÑвени Ñамо обновÑваниÑ.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "ПреинÑталациÑта на %s не е възможна, не може да бъде изтеглен.\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s вече е най-новата верÑиÑ.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s е отбелÑзан като ръчно инÑталиран.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Избрана е верÑÐ¸Ñ %s (%s) за %s\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Избрана е верÑÐ¸Ñ â€ž%s“ (%s) за „%s“ заради „%s“\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Коригиране на завиÑимоÑтите..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " пропадна."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "ÐеуÑпех при коригирането на завиÑимоÑтите"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "ÐеуÑпех при минимизирането на набора актуализации"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Готово"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr ""
-"Възможно е да изпълните „apt-get -f install“, за да коригирате тези "
-"неизправноÑти."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Ðеудовлетворени завиÑимоÑти. Опитайте Ñ â€ž-f“."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ПРЕДУПРЕЖДЕÐИЕ: Следните пакети не могат да бъдат удоÑтоверени!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Предупреждението за удоÑтоверÑването е пренебрегнато.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "ИнÑталиране на тези пакети без проверка?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "ÐÑкои пакети не можаха да бъдат удоÑтоверени"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Има проблеми и „-y“ е използвано без „--force-yes“"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при Ñчупени пакети!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "ТрÑбва да бъдат премахнати пакети, но премахването е изключено."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Вътрешна грешка, „Ordering“ не завърши"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Странно.. Размерите не Ñъвпадат, изпратете е-поща на apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB/%sB архиви.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB архиви.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr ""
-"След тази Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ñ‰Ðµ бъде използвано %sB допълнително диÑково "
-"проÑтранÑтво.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "След тази Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ñ‰Ðµ бъде оÑвободено %sB диÑково проÑтранÑтво.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "ÐеуÑпех при определÑнето на Ñвободното проÑтранÑтво в %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "ÐÑмате доÑтатъчно Ñвободно проÑтранÑтво в %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Указано е „Trivial Only“, но това не е тривиална операциÑ."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Да, прави каквото казвам!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Ðа път Ñте да направите нещо потенциално опаÑно.\n"
-"За да продължите, въведете фразата „%s“\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "ПрекъÑване."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "ИÑкате ли да продължите?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "ÐеуÑпех при изтеглÑнето на %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "ÐÑкои файлове не можаха да бъдат изтеглени"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "ИзтеглÑнето завърши в режим Ñамо на изтеглÑне"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"ÐеуÑпех при изтеглÑнето на нÑкои архиви, може да изпълните „apt-get update“ "
-"или да опитате Ñ â€ž--fix-missing“?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "„--fix-missing“ и превключване на ноÑители не Ñе поддържа вÑе още"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "ÐеуÑпех при коригирането на липÑващите пакети."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "ПрекъÑване на инÑталирането."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"СледниÑÑ‚ пакет е отÑтранен от ÑиÑтемата поради препокриване на вÑичките му "
-"файлове от други пакети:"
-msgstr[1] ""
-"Следните пакети Ñа отÑтранени от ÑиÑтемата поради препокриване на вÑичките "
-"им файлове от други пакети:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Това Ñе прави автоматично от dpkg."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Игнориране на неÑъщеÑтвуващо издание „%s“ на пакета „%s“"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Използване на пакет източник „%s“ вмеÑто „%s“\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Игнориране на неÑъщеÑтвуваща верÑÐ¸Ñ â€ž%s“ на пакета „%s“"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Командата „update“ не възприема аргументи"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr "Ðе би Ñ‚Ñ€Ñбвало да Ñе изтрива. AutoRemover нÑма да бъде Ñтартиран"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Хм, изглежда AutoRemover Ñкапа нещо, а това не би Ñ‚Ñ€Ñбвало\n"
-"да Ñе Ñлучва. Съобщете за грешка в пакета apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr ""
-"Следната Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¼Ð¾Ð¶Ðµ да помогне за намиране на изход от ÑитуациÑта:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Вътрешна грешка, AutoRemover Ñчупи нещо в ÑиÑтемата"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "СледниÑÑ‚ пакет е бил инÑталиран автоматично и вече не е необходим:"
-msgstr[1] ""
-"Следните пакети Ñа били инÑталирани автоматично и вече не Ñа необходими:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "%lu пакет е бил инÑталиран автоматично и вече не е необходим:\n"
-msgstr[1] ""
-"%lu пакета Ñа били инÑталирани автоматично и вече не Ñа необходими:\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Използвайте „apt-get autoremove“ за да го премахнете."
-msgstr[1] "Използвайте „apt-get autoremove“ за да ги премахнете."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Вътрешна грешка, „AllUpgrade“ Ñчупи нещо в ÑиÑтемата"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Ðеудовлетворени завиÑимоÑти. Опитайте „apt-get -f install“ без пакети (или "
-"укажете разрешение)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"ÐÑкои пакети не можаха да бъдат инÑталирани. Това може да означава,\n"
-"че Ñте изиÑкали невъзможна ÑÐ¸Ñ‚ÑƒÐ°Ñ†Ð¸Ñ Ð¸Ð»Ð¸ ако използвате неÑтабилната\n"
-"диÑтрибуциÑ, че нÑкои необходими пакети още не Ñа Ñъздадени или пък\n"
-"Ñа били премеÑтени от Incoming."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Счупени пакети"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Следните допълнителни пакети ще бъдат инÑталирани:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Предложени пакети:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Препоръчвани пакети:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "ÐеуÑпех при намирането на пакет %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s е отбелÑзан като ръчно инÑталиран.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s е отбелÑзан като автоматично инÑталиран.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -853,46 +329,24 @@ msgstr ""
"Тази команда е оÑтарÑла. ВмеÑто Ð½ÐµÑ Ð¸Ð·Ð¿Ð¾Ð»Ð·Ð²Ð°Ð¹Ñ‚Ðµ „apt-mark auto“ и „apt-mark "
"manual“."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "ИзчиÑлÑване на актуализациÑта..."
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "ÐеуÑпех"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Готово"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Вътрешна грешка, „problem resolver“ Ñчупи нещо в ÑиÑтемата"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "ÐеуÑпех при заключването на директориÑта за изтеглÑне"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "Ðе е открит източник, от който да Ñе изтегли верÑÐ¸Ñ â€ž%s“ на „%s“"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "ИзтеглÑне на %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "ТрÑбва да укажете поне един пакет за изтеглÑне на Ð¸Ð·Ñ…Ð¾Ð´Ð½Ð¸Ñ Ð¼Ñƒ код"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "ÐеуÑпех при намирането на изходен код на пакет %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -902,7 +356,7 @@ msgstr ""
"адреÑ:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -914,70 +368,80 @@ msgstr ""
"за да изтеглите поÑледните промени в пакета (евентуално в Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð½Ð° "
"разработка).\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "ПропуÑкане на вече Ð¸Ð·Ñ‚ÐµÐ³Ð»ÐµÐ½Ð¸Ñ Ñ„Ð°Ð¹Ð» „%s“\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "ÐеуÑпех при определÑнето на Ñвободното проÑтранÑтво в %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "ÐÑмате доÑтатъчно Ñвободно проÑтранÑтво в %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB/%sB архиви изходен код.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB архиви изходен код.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "ИзтеглÑне на изходен код %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "ÐеуÑпех при изтеглÑнето на нÑкои архиви."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "ИзтеглÑнето завърши в режим Ñамо на изтеглÑне"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr ""
"ПропуÑкане на разпакетирането на вече Ñ€Ð°Ð·Ð¿Ð°ÐºÐµÑ‚Ð¸Ñ€Ð°Ð½Ð¸Ñ Ð¸Ð·Ñ…Ð¾Ð´ÐµÐ½ код в %s\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Командата за разпакетиране „%s“ пропадна.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Проверете дали имате инÑталиран пакета „dpkg-dev“.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Командата за компилиране „%s“ пропадна.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "ПроцеÑÑŠÑ‚-потомък пропадна"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"ТрÑбва да укажете поне един пакет за проверка на завиÑимоÑти за компилиране"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -986,18 +450,18 @@ msgstr ""
"ЛипÑва Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° архитектурата %s. Прегледайте информациÑта за APT::"
"Architectures в apt.conf(5)."
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr ""
"ÐеуÑпех при получаването на Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° завиÑимоÑтите за компилиране на %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s нÑма завиÑимоÑти за компилиране.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1006,7 +470,7 @@ msgstr ""
"ЗавиÑимоÑÑ‚ %s за пакета %s не може да бъде удовлетворена, %s не Ñе позволÑва "
"за пакети „%s“"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1015,14 +479,14 @@ msgstr ""
"ЗавиÑимоÑÑ‚ %s за пакета %s не може да бъде удовлетворена, понеже пакета %s "
"не може да бъде намерен"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"ÐеуÑпех при удовлетворÑването на завиÑимоÑÑ‚ %s за пакета %s: ИнÑталираниÑÑ‚ "
"пакет %s е твърде нов"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1031,7 +495,7 @@ msgstr ""
"ЗавиÑимоÑÑ‚ %s за пакета %s не може да бъде удовлетворена, понеже верÑиÑта "
"кандидат на пакета %s не може да удовлетвори изиÑкването за верÑиÑ"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1040,30 +504,30 @@ msgstr ""
"ЗавиÑимоÑÑ‚ %s за пакета %s не може да бъде удовлетворена, понеже пакета %s "
"нÑма подходÑщи верÑии"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "ÐеуÑпех при удовлетворÑването на завиÑимоÑÑ‚ %s за пакета %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "ЗавиÑимоÑтите за компилиране на %s не можаха да бъдат удовлетворени."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "ÐеуÑпех при обработката на завиÑимоÑтите за компилиране"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Журнал на промените в %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Поддържани модули:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1153,102 +617,53 @@ msgstr ""
"Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¸ опции.\n"
" Това APT има Върховни Сили.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"Забележка: това е Ñамо ÑимулациÑ!\n"
-" apt-get има нужда от админиÑтративни права за да работи.\n"
-" Заключването е деактивирано, така че не разчитайте\n"
-" на повтарÑемоÑÑ‚ в реална ÑитуациÑ."
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Поп "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Изт:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Игн "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Грш "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Изтеглени %sB за %s (%sB/Ñек)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Ð’ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð½Ð° работа]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"СмÑна на ноÑител: Ñложете диÑка Ñ ÐµÑ‚Ð¸ÐºÐµÑ‚\n"
-" „%s“\n"
-"в уÑтройÑтвото „%s“ и натиÑнете „Enter“\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "Пакетът „%s“ не може да бъде маркиран, защото не е инÑталиран.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "Пакетът „%s“ вече е отбелÑзан като ръчно инÑталиран.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "Пакетът „%s“ вече е отбелÑзан като автоматично инÑталиран.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "Пакетът „%s“ вече е задуржан.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "Пакетът „%s“ вече е задържан.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Изчака Ñе завършването на %s, но той не беше пуÑнат"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "Пакетът „%s“ е задържан.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "ОтмÑна на задържането на пакета „%s“.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "ÐеуÑпех при изпълнÑване на dpkg. Имате ли админиÑтративни права?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1289,6 +704,23 @@ msgstr ""
" -o=? Указване на произволна наÑтройка, напр. -o dir::cache=/tmp\n"
"За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´Ð°Ð¹Ñ‚Ðµ ръководÑтвата apt-mark(8) и apt.conf(5)."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1386,8 +818,8 @@ msgstr "ДопуÑтимото време за Ñвързването изтеч
msgid "Server closed the connection"
msgstr "Сървърът разпадна връзката"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Грешка при четене"
@@ -1400,8 +832,8 @@ msgid "Protocol corruption"
msgstr "Развален протокол"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Грешка при запиÑ"
@@ -1415,6 +847,10 @@ msgstr ""
"ÐеуÑпех при Ñвързването на гнездо за данни, допуÑтимото време за Ñвързване "
"изтече"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "ÐеуÑпех"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "ÐеуÑпех при Ñвързването на паÑивно гнездо."
@@ -1457,7 +893,7 @@ msgstr "Времето за уÑтановÑване на връзка Ñ Ð³Ð½Ðµ
msgid "Unable to accept connection"
msgstr "Ðевъзможно е да Ñе приеме Ñвързването"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Проблем при хеширане на файла"
@@ -1591,81 +1027,605 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Празни файлове не могат да бъдат валидни архиви"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Грешка при запиÑа на файла"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Грешка при четене от Ñървъра. ОтдалечениÑÑ‚ Ñървър прекъÑна връзката"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Грешка при четене от Ñървъра"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Грешка при запиÑа на файл"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "ÐеуÑпех на избора"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "ДопуÑтимото време за Ñвързване изтече"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Грешка при запиÑа на изходен файл"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Чакане на заглавни чаÑти"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Ðевалиден ред на заглавна чаÑÑ‚"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "HTTP Ñървърът изпрати невалидна заглавна чаÑÑ‚ като отговор"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "HTTP Ñървърът изпрати невалидна заглавна чаÑÑ‚ „Content-Length“"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "HTTP Ñървърът изпрати невалидна заглавна чаÑÑ‚ „Content-Range“"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "HTTP Ñървърът нÑма поддръжка за прехвърлÑне на фрагменти на файлове"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "ÐеизвеÑтен формат на дата"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "ÐеуÑпех на избора"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Ðевалидни данни на заглавната чаÑÑ‚"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "ДопуÑтимото време за Ñвързване изтече"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "ÐеуÑпех при Ñвързването"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Грешка при запиÑа на изходен файл"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Вътрешна грешка"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Грешка при запиÑа на файл"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Грешка при запиÑа на файла"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при Ñчупени пакети!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Грешка при четене от Ñървъра. ОтдалечениÑÑ‚ Ñървър прекъÑна връзката"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "ТрÑбва да бъдат премахнати пакети, но премахването е изключено."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Грешка при четене от Ñървъра"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Вътрешна грешка, „Ordering“ не завърши"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Ðевалидни данни на заглавната чаÑÑ‚"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Странно.. Размерите не Ñъвпадат, изпратете е-поща на apt@packages.debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "ÐеуÑпех при Ñвързването"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB/%sB архиви.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Вътрешна грешка"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB архиви.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr ""
+"След тази Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ñ‰Ðµ бъде използвано %sB допълнително диÑково "
+"проÑтранÑтво.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "След тази Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ñ‰Ðµ бъде оÑвободено %sB диÑково проÑтранÑтво.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "ÐÑмате доÑтатъчно Ñвободно проÑтранÑтво в %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Има проблеми и „-y“ е използвано без „--force-yes“"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Указано е „Trivial Only“, но това не е тривиална операциÑ."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Да, прави каквото казвам!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Ðа път Ñте да направите нещо потенциално опаÑно.\n"
+"За да продължите, въведете фразата „%s“\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "ПрекъÑване."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "ИÑкате ли да продължите?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "ÐÑкои файлове не можаха да бъдат изтеглени"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"ÐеуÑпех при изтеглÑнето на нÑкои архиви, може да изпълните „apt-get update“ "
+"или да опитате Ñ â€ž--fix-missing“?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "„--fix-missing“ и превключване на ноÑители не Ñе поддържа вÑе още"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "ÐеуÑпех при коригирането на липÑващите пакети."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "ПрекъÑване на инÑталирането."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"СледниÑÑ‚ пакет е отÑтранен от ÑиÑтемата поради препокриване на вÑичките му "
+"файлове от други пакети:"
+msgstr[1] ""
+"Следните пакети Ñа отÑтранени от ÑиÑтемата поради препокриване на вÑичките "
+"им файлове от други пакети:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Това Ñе прави автоматично от dpkg."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Ðе би Ñ‚Ñ€Ñбвало да Ñе изтрива. AutoRemover нÑма да бъде Ñтартиран"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Хм, изглежда AutoRemover Ñкапа нещо, а това не би Ñ‚Ñ€Ñбвало\n"
+"да Ñе Ñлучва. Съобщете за грешка в пакета apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr ""
+"Следната Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¼Ð¾Ð¶Ðµ да помогне за намиране на изход от ÑитуациÑта:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Вътрешна грешка, AutoRemover Ñчупи нещо в ÑиÑтемата"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "СледниÑÑ‚ пакет е бил инÑталиран автоматично и вече не е необходим:"
+msgstr[1] ""
+"Следните пакети Ñа били инÑталирани автоматично и вече не Ñа необходими:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "%lu пакет е бил инÑталиран автоматично и вече не е необходим:\n"
+msgstr[1] ""
+"%lu пакета Ñа били инÑталирани автоматично и вече не Ñа необходими:\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Използвайте „apt-get autoremove“ за да го премахнете."
+msgstr[1] "Използвайте „apt-get autoremove“ за да ги премахнете."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Ðеудовлетворени завиÑимоÑти. Опитайте „apt-get -f install“ без пакети (или "
+"укажете разрешение)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"ÐÑкои пакети не можаха да бъдат инÑталирани. Това може да означава,\n"
+"че Ñте изиÑкали невъзможна ÑÐ¸Ñ‚ÑƒÐ°Ñ†Ð¸Ñ Ð¸Ð»Ð¸ ако използвате неÑтабилната\n"
+"диÑтрибуциÑ, че нÑкои необходими пакети още не Ñа Ñъздадени или пък\n"
+"Ñа били премеÑтени от Incoming."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Счупени пакети"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Следните допълнителни пакети ще бъдат инÑталирани:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Предложени пакети:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Препоръчвани пакети:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ПРЕДУПРЕЖДЕÐИЕ: Следните пакети не могат да бъдат удоÑтоверени!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Предупреждението за удоÑтоверÑването е пренебрегнато.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "ÐÑкои пакети не можаха да бъдат удоÑтоверени"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "ИнÑталиране на тези пакети без проверка?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "ÐеуÑпех при изтеглÑнето на %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [ИнÑталиран]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [ИнÑталиран]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [ИнÑталиран]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Следните пакети имат неудовлетворени завиÑимоÑти:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "но е инÑталиран %s"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "но ще бъде инÑталиран %s"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "но той не може да бъде инÑталиран"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "но той е виртуален пакет"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "но той не е инÑталиран"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "но той нÑма да бъде инÑталиран"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " или"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Следните ÐОВИ пакети ще бъдат инÑталирани:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Следните пакети ще бъдат ПРЕМÐÐ¥ÐÐТИ:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Следните пакети нÑма да бъдат променени:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Следните пакети ще бъдат актуализирани:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Следните пакети ще бъдат ВЪРÐÐТИ КЪМ ПО-СТÐРРВЕРСИЯ:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Следните задържани пакети ще бъдат променени:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (поради %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ПРЕДУПРЕЖДЕÐИЕ: Следните необходими пакети ще бъдат премахнати.\n"
+"Това ÐЕ би Ñ‚Ñ€Ñбвало да Ñтава оÑвен ако знаете точно какво правите!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu актуализирани, %lu нови инÑталирани, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu преинÑталирани, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu върнати към по-Ñтара верÑиÑ, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu за премахване и %lu без промÑна.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu не Ñа напълно инÑталирани или премахнати.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[Y/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[y/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "Y"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Грешка при компилирането на регулÑÑ€Ð½Ð¸Ñ Ð¸Ð·Ñ€Ð°Ð· - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Коригиране на завиÑимоÑтите..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " пропадна."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "ÐеуÑпех при коригирането на завиÑимоÑтите"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "ÐеуÑпех при минимизирането на набора актуализации"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Готово"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr ""
+"Възможно е да изпълните „apt-get -f install“, за да коригирате тези "
+"неизправноÑти."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Ðеудовлетворени завиÑимоÑти. Опитайте Ñ â€ž-f“."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Командата „update“ не възприема аргументи"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "ИзчиÑлÑване на актуализациÑта..."
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Вътрешна грешка, „AllUpgrade“ Ñчупи нещо в ÑиÑтемата"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Готово"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"Забележка: това е Ñамо ÑимулациÑ!\n"
+" apt-get има нужда от админиÑтративни права за да работи.\n"
+" Заключването е деактивирано, така че не разчитайте\n"
+" на повтарÑемоÑÑ‚ в реална ÑитуациÑ."
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "ÐеуÑпех при преименуването на %s на %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Поп "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Изт:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Игн "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Грш "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Изтеглени %sB за %s (%sB/Ñек)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Ð’ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð½Ð° работа]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"СмÑна на ноÑител: Ñложете диÑка Ñ ÐµÑ‚Ð¸ÐºÐµÑ‚\n"
+" „%s“\n"
+"в уÑтройÑтвото „%s“ и натиÑнете „Enter“\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "ÐеуÑпех при четенето на %s"
@@ -1728,33 +1688,33 @@ msgstr "ÐеуÑпех при Ñъздаването на IPC pipe към под
msgid "Connection closed prematurely"
msgstr "Връзката прекъÑна преждевременно"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Лоша Ñтандартна наÑтройка!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "ÐатиÑнете „Enter“, за да продължите."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Желаете ли да изтриете изтеглените пакетни файлове?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Възникнаха нÑкои грешки при разпакетирането. инÑталираните пакети"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "ще бъдат конфигурирани. Това може да доведе до дублирани грешки"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"или грешки, причинени от липÑващи завиÑимоÑти. Това е нормално, Ñамо грешките"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -2010,36 +1970,36 @@ msgstr "ÐеуÑпех при прочитането на връзка %s"
msgid "Failed to unlink %s"
msgstr "ÐеуÑпех при премахването на връзка %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** ÐеуÑпех при Ñъздаването на връзка %s към %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr "Превишен лимит на DeLink от %sB.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Ðрхивът нÑма поле „package“"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s нÑма Ð·Ð°Ð¿Ð¸Ñ â€žoverride“\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " Ð¿Ð¾Ð´Ð´ÑŠÑ€Ð¶Ð°Ñ‰Ð¸Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s е %s, а не %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s нÑма Ð·Ð°Ð¿Ð¸Ñ â€žsource override“\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s нÑма Ñъщо и Ð·Ð°Ð¿Ð¸Ñ â€žbinary override“\n"
@@ -2118,7 +2078,7 @@ msgstr "ÐеуÑпех при премахването на връзка на %s
msgid "Failed to rename %s to %s"
msgstr "ÐеуÑпех при преименуването на %s на %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2187,7 +2147,7 @@ msgstr "Развален архив"
msgid "Tar checksum failed, archive corrupted"
msgstr "ÐевÑрна контролна Ñума на tar, развален архив"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Ðепозната заглавна чаÑÑ‚ на TAR тип %u, елемент %s"
@@ -2311,22 +2271,17 @@ msgid "Unable to stat %s"
msgstr "ÐеуÑпех при получаването на атрибути за %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Това не е валиден DEB архив, липÑва елемент „%s“"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "Това не е валиден DEB архив, нÑма елемент „%s“, „%s“ или „%s“"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Вътрешна грешка, неуÑпех при намирането на ÑÑŠÑтавна чаÑÑ‚ %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Контролен файл, невъзможен за анализ"
@@ -2387,88 +2342,88 @@ msgstr ""
"забранено от потребителÑ."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%liч %liм %liÑ"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%liм %liÑ"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%liÑ"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Изборът %s не е намерен"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "ÐеизвеÑтен тип на абревиатура: „%c“"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "ОтварÑне на конфигурационен файл %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "Синтактична грешка %s:%u: Ð’ началото на блока нÑма име."
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Синтактична грешка %s:%u: Лошо форматиран таг"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Синтактична грешка %s:%u: Излишни Ñимволи Ñлед ÑтойноÑтта"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
"Синтактична грешка %s:%u: Директиви могат да Ñе задават Ñамо в най-горното "
"ниво"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Синтактична грешка %s:%u: Твърде много вложени „include“"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Синтактична грешка %s:%u: Извикан „include“ оттук"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Синтактична грешка %s:%u: Ðеподдържана директива „%s“"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Синтактична грешка %s:%u: директивата clear изиÑква аргумент дърво от опции"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Синтактична грешка %s:%u: Излишни Ñимволи в ÐºÑ€Ð°Ñ Ð½Ð° файла"
@@ -2493,48 +2448,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Готово"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "ÐеизвеÑтна Ð¾Ð¿Ñ†Ð¸Ñ Ð·Ð° команден ред „%c“ [от %s]."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "ОпциÑта за команден ред %s не е разпозната"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "ОпциÑта за команден ред %s не е булева"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "ÐžÐ¿Ñ†Ð¸Ñ %s изиÑква аргумент."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "ÐžÐ¿Ñ†Ð¸Ñ %s: Значението Ñ‚Ñ€Ñбва да има =<val>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "ÐžÐ¿Ñ†Ð¸Ñ %s изиÑква аргумент цÑло чиÑло, не „%s“"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "ÐžÐ¿Ñ†Ð¸Ñ â€ž%s“ е твърде дълга"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "СмиÑълът %s не е ÑÑен, опитайте true или false."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Ðевалидна Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ %s"
@@ -2548,120 +2503,120 @@ msgstr "ÐеуÑпех при намирането на атрибутите нÐ
msgid "Failed to stat the cdrom"
msgstr "ÐеуÑпех при намирането на атрибутите на cdrom"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Проблем при затварÑне на компреÑираниÑÑ‚ файл %s (gzip)"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
"Ðе Ñе използва заключване за файл за заключване %s, който е Ñамо за четене"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "ÐеуÑпех при отварÑнето на файл за заключване %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
"Ðе Ñе използва заключване за файл за заключване %s, който е монтиран по NFS"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "ÐеуÑпех при доÑтъпа до заключване %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "Ðе може да Ñе Ñъздаде ÑпиÑък от файлове, защото „%s“ не е директориÑ"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "ПропуÑкане на „%s“ в директориÑта „%s“, понеже не е обикновен файл"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr "ПропуÑкане на файла „%s“ в директориÑта „%s“, понеже нÑма разширение"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
"ПропуÑкане на файла „%s“ в директориÑта „%s“, понеже разширението му е грешно"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Ðарушение на защитата на паметта (segmentation fault) в подпроцеÑа %s."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Под-процеÑÑŠÑ‚ %s получи Ñигнал %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "ПодпроцеÑÑŠÑ‚ %s върна код за грешка (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "ПодпроцеÑÑŠÑ‚ %s завърши неочаквано"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "ÐеуÑпех при отварÑнето на файла %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "ÐеуÑпех при отварÑнето на файлов манипулатор %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "ÐеуÑпех при Ñъздаването на Ð¿Ð¾Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "ÐеуÑпех при изпълнението на компреÑиращата програма "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr ""
"грешка при четене, вÑе още има %llu за четене, но нÑма нито един оÑтанал"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "грешка при запиÑ, вÑе още име %llu за запиÑ, но не уÑпÑ"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Проблем при затварÑне на файла %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Проблем при преименуване на файла %s на %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Проблем при изтриване на файла %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Проблем при Ñинхронизиране на файла"
@@ -2778,12 +2733,12 @@ msgstr "ÐеуÑпех при отварÑнето на StateFile %s"
msgid "Failed to write temporary StateFile %s"
msgstr "ÐеуÑпех при Ð·Ð°Ð¿Ð¸Ñ Ð½Ð° временен StateFile %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "ÐеуÑпех при анализирането на пакетен файл %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "ÐеуÑпех при анализирането на пакетен файл %s (2)"
@@ -2865,7 +2820,7 @@ msgstr "Лошо форматиран ред %u в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "Типът „%s“ на ред %u в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s е неизвеÑтен."
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2874,12 +2829,12 @@ msgstr ""
"ÐеуÑпех при незабавната наÑтройка на „%s“. За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð²Ð¸Ð¶Ñ‚Ðµ "
"информациÑта за APT::Immediate-Configure в „man 5 apt.conf“. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "ÐеуÑпех при конфигуриране на „%s“. "
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2904,7 +2859,7 @@ msgstr ""
"Пакетът %s Ñ‚Ñ€Ñбва да бъде преинÑталиран, но не може да Ñе намери архив за "
"него."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2912,19 +2867,11 @@ msgstr ""
"Грешка, pkgProblemResolver::Resolve генерира повреди, това може да е "
"причинено от задържани пакети."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr ""
"ÐеуÑпех при коригирането на проблемите, имате задържани Ñчупени пакети."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"ÐÑкои индекÑни файлове не можаха да бъдат изтеглени. Те Ñа пренебрегнати или "
-"Ñа използвани по-Ñтари."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2967,12 +2914,12 @@ msgstr "Методът %s не Ñтартира правилно"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Сложете диÑка, озаглавен „%s“ в уÑтройÑтво „%s“ и натиÑнете „Enter“."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Пакетната ÑиÑтема „%s“ не е поддържана"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "ÐеуÑпех при определÑнето на подходÑща пакетна ÑиÑтема"
@@ -3009,17 +2956,17 @@ msgstr ""
"СтойноÑтта „%s“ на APT::Default-Release не е правилна, понеже в източниците "
"нÑма такова издание"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Ðевалиден Ð·Ð°Ð¿Ð¸Ñ Ð²ÑŠÐ² файла Ñ Ð½Ð°Ñтройки %s, липÑва заглавна чаÑÑ‚ Package"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "ÐеизвеÑтен тип за отбиване %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "ÐÑма указан приоритет (или е нула) на отбиването"
@@ -3091,16 +3038,20 @@ msgstr "Входно/изходна грешка при запазването Ð
msgid "rename failed, %s (%s -> %s)."
msgstr "преименуването Ñе провали, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "ÐеÑъответÑтвие на контролна Ñума MD5"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "ÐеÑъответÑтвие на контролната Ñума"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "ÐеÑъответÑтвие на размера"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Ðевалидна Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3109,16 +3060,16 @@ msgstr ""
"Ðе може да Ñе открие елемент „%s“ във файла Release (объркан ред в sources."
"list или повреден файл)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Ðе е открита контролна Ñума за „%s“ във файла Release"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "ÐÑма налични публични ключове за Ñледните идентификатори на ключове:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3127,12 +3078,12 @@ msgstr ""
"Файлът ÑÑŠÑ Ñлужебна Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° „%s“ е оÑтарÑл (валиден до %s). ÐÑма да Ñе "
"прилагат обновÑÐ²Ð°Ð½Ð¸Ñ Ð¾Ñ‚ това хранилище."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Конфликт в диÑтрибуциÑта: %s (очаквана: %s, намерена: %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3142,12 +3093,12 @@ msgstr ""
"използват Ñтарите индекÑни файлове. Грешка от GPG: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Грешка от GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3156,32 +3107,24 @@ msgstr ""
"ÐеуÑпех при намирането на файл за пакет %s. Това може да означава, че Ñ‚Ñ€Ñбва "
"ръчно да оправите този пакет (поради пропуÑната архитектура)."
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"ÐеуÑпех при намирането на файл за пакет %s. Това може да означава, че Ñ‚Ñ€Ñбва "
-"ръчно да оправите този пакет."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "Ðе е открит източник, от който да Ñе изтегли верÑÐ¸Ñ â€ž%s“ на „%s“"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
"ИндекÑните файлове на пакета Ñа повредени. ÐÑма поле Filename: за пакет %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "ÐеÑъответÑтвие на размера"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "ÐеуÑпех при анализиране на файл Release %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Във файла Release %s липÑват раздели"
@@ -3326,32 +3269,32 @@ msgstr "Ðе е намерен oторизационен Ð·Ð°Ð¿Ð¸Ñ Ð·Ð°: %s"
msgid "Hash mismatch for: %s"
msgstr "ÐеÑъответÑтвие на контролната Ñума за: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Ðе е намерено издание „%s“ на „%s“"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Ðе е намерена верÑÐ¸Ñ â€ž%s“ на „%s“"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "ÐеуÑпех при намиране на задача „%s“"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Ðе Ñа намерен пакети, отговарÑщ на регулÑÑ€Ð½Ð¸Ñ Ð¸Ð·Ñ€Ð°Ð· „%s“"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "Ðе е възможно избиране на верÑÐ¸Ñ Ð·Ð° пакета „%s“ понеже е виртуален"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3360,21 +3303,21 @@ msgstr ""
"Ðе е възможно избиране на инÑталирана или кандидат верÑÐ¸Ñ Ð·Ð° пакета „%s“ "
"понеже той нÑма нито едната"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Ðе е възможно избиране на на поÑледната верÑÐ¸Ñ Ð·Ð° пакета „%s“, защото е "
"виртуален"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Ðе е възможно избиране на кандидат-верÑÐ¸Ñ Ð·Ð° пакета „%s“, защото нÑма "
"подходÑщ кандидати"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3403,113 +3346,133 @@ msgstr ""
msgid "Execute external solver"
msgstr "ИзпълнÑване на външна програма за удовлетворÑване на завиÑимоÑти"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "ИзпълнÑване на dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"ÐÑкои индекÑни файлове не можаха да бъдат изтеглени. Те Ñа пренебрегнати или "
+"Ñа използвани по-Ñтари."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "ИнÑталиране на %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Конфигуриране на %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Премахване на %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "Окончателно премахване на %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "ОтбелÑзване на изчезването на %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Изпълнение на тригер Ñлед инÑталиране %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "ДиректориÑта „%s“ липÑва"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "ÐеуÑпех при отварÑне на файла „%s“"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "ПодготвÑне на %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Разпакетиране на %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "ПодготвÑне на %s за конфигуриране"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s е инÑталиран"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "ПодготвÑне за премахване на %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s е премахнат"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Подготовка за пълно премахване на %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s е напълно премахнат"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "ÐеуÑпех при запиÑа на %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"ÐеуÑпех при Ð·Ð°Ð¿Ð¸Ñ Ð² журнала, openpty() Ñе провали (дали /dev/pts е "
-"монтирана?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "ИзпълнÑване на dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "ОперациÑта е прекъÑната"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
"Поради доÑтигане на макÑÐ¸Ð¼Ð°Ð»Ð½Ð¸Ñ Ð±Ñ€Ð¾Ð¹ доклади (MaxReports) не е запиÑан нов "
"доклад за завиÑимоÑтите."
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "отлагане на наÑтройката поради неудовлетворени завиÑимоÑти"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3517,7 +3480,7 @@ msgstr ""
"Доклад за завиÑимоÑтите не е запиÑан защото Ñъобщението за грешка е породено "
"от друга грешка."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3525,7 +3488,7 @@ msgstr ""
"Доклад за завиÑимоÑтите не е запиÑан защото грешката е причинена от "
"недоÑтатъчно диÑково проÑтранÑтво"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3533,7 +3496,16 @@ msgstr ""
"Доклад за завиÑимоÑтите не е запиÑан защото грешката е причинена от "
"недоÑтатъчна оперативна памет"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Доклад за завиÑимоÑтите не е запиÑан защото грешката е причинена от "
+"недоÑтатъчно диÑково проÑтранÑтво"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3569,6 +3541,94 @@ msgstr ""
msgid "Not locked"
msgstr "Без заключване"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Избиране на %s за задача „%s“\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Избиране на %s за регулÑрен израз „%s“\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Пакетът %s е виртуален пакет, оÑигурен от:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [верÑиÑта не е кандидат]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "ТрÑбва изрично да изберете един за инÑталиране."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Пакетът %s не е наличен, но е в ÑпиÑъка ÑÑŠÑ Ð·Ð°Ð²Ð¸ÑимоÑти на друг пакет.\n"
+#~ "Това може да означава, че пакета липÑва, оÑтарÑл е, или е доÑтъпен\n"
+#~ "Ñамо от друг източник\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Обаче Ñледните пакети го замеÑтват:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Пакетът „%s“ нÑма кандидат за инÑталиране"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Виртуални пакети като „%s“ не могат да Ñе премахват\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Пакетът „%s“ не е инÑталиран, така че не е премахнат. Може би имахте "
+#~ "предвид „%s“?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Пакетът „%s“ не е инÑталиран, така че не е премахнат\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Избиране на „%s“ вмеÑто „%s“\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "ПропуÑкане на %s, вече е инÑталиран и не е маркиран за актуализациÑ.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "ПропуÑкане на %s, който не е инÑталиран при заÑвени Ñамо обновÑваниÑ.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "ПреинÑталациÑта на %s не е възможна, не може да бъде изтеглен.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s вече е най-новата верÑиÑ.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Избрана е верÑÐ¸Ñ %s (%s) за %s\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Избрана е верÑÐ¸Ñ â€ž%s“ (%s) за „%s“ заради „%s“\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Игнориране на неÑъщеÑтвуващо издание „%s“ на пакета „%s“"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "ИзтеглÑне на %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "Това не е валиден DEB архив, нÑма елемент „%s“, „%s“ или „%s“"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "ÐеÑъответÑтвие на контролна Ñума MD5"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "ÐеуÑпех при намирането на файл за пакет %s. Това може да означава, че "
+#~ "Ñ‚Ñ€Ñбва ръчно да оправите този пакет."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "ÐеуÑпех при Ð·Ð°Ð¿Ð¸Ñ Ð² журнала, openpty() Ñе провали (дали /dev/pts е "
+#~ "монтирана?)\n"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "Файлът %s не започва Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° подпиÑване в обикновен текÑÑ‚."
diff --git a/po/bs.po b/po/bs.po
index e8c5fca0e..b9302d5f0 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.5.26\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2004-05-06 15:25+0100\n"
"Last-Translator: Safir Šećerović <sapphire@linux.org.ba>\n"
"Language-Team: Bosnian <lokal@lugbih.org>\n"
@@ -15,153 +15,155 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Paket %s verzije %s ima nezadovoljenu zavisnost:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Ukupno naziva paketa:"
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "Ukupno naziva paketa:"
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Normalni paketi:"
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " ÄŒisto virtuelni paketi:"
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " PojedinaÄni virutuelni paketi:"
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Miješani virtuelni paketi:"
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Nedostajući:"
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Ukupno razliÄitih verzija:"
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
#, fuzzy
msgid "Total distinct descriptions: "
msgstr "Ukupno razliÄitih verzija:"
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Ukupno zavisnosti:"
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Ukupno Verzija/Datoteka odnosa:"
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
#, fuzzy
msgid "Total Desc/File relations: "
msgstr "Ukupno Verzija/Datoteka odnosa:"
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr ""
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr ""
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr ""
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr ""
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr ""
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr ""
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Paketi nisu pronađeni"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr ""
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Ne mogu pronaći paket %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Datoteke paketa:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr ""
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr ""
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Instalirano:"
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr ""
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr ""
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr ""
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr ""
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr ""
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -199,35 +201,35 @@ msgid ""
msgstr ""
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr ""
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Ne mogu otvoriti %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr ""
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argumenti nisu u parovima"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -255,581 +257,62 @@ msgstr ""
" -c=? ProÄitaj ovu konfiguracijsku datoteku\n"
" -o=? Podesi odgovarajuću konfiguracijsku opciju, npr. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr ""
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr ""
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "ali je %s instaliran"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "ali se %s treba instalirati"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "ali se ne može instalirati"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "ali je virtuelni paket"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "ali nije instaliran"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "ali se neće instalirati"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " ili"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Slijedeći NOVI paketi će biti instalirani:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Slijedeći paketi će biti UKLONJENI:"
-
-#: cmdline/apt-get.cc:475
-#, fuzzy
-msgid "The following packages have been kept back:"
-msgstr "Slijedeći paketi su zadržani:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Slijedeći paketi će biti nadograđeni:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr ""
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr ""
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr ""
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-
-#: cmdline/apt-get.cc:631
+#: cmdline/apt-get.cc:313
#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr ""
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr ""
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr ""
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr "[Instalirano]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "Verzije kandidata"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr ""
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Međutim, slijedeći paketi ga zamjenjuju:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr ""
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+msgid "Picking '%s' as source package instead of '%s'\n"
msgstr ""
-#: cmdline/apt-get.cc:863
+#: cmdline/apt-get.cc:367
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:868
+#: cmdline/apt-get.cc:398
#, c-format
-msgid "%s is already the newest version.\n"
+msgid "Couldn't find package %s"
msgstr ""
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
#, fuzzy, c-format
msgid "%s set to manually installed.\n"
msgstr "ali se %s treba instalirati"
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Ispravljam zavisnosti..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr ""
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Ne mogu ispraviti zavisnosti"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr ""
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Urađeno"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr ""
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Nezadovoljene zavisnosti. Pokušajte koristeći -f."
-
-#: cmdline/apt-get.cc:1097
-#, fuzzy
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "Slijedeći paketi će biti nadograđeni:"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr ""
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr ""
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr ""
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr ""
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr ""
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr ""
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr ""
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr ""
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr ""
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Da, uradi kako kažem!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Odustani."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Da li želite nastaviti?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr ""
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr ""
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr ""
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr ""
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Odustajem od instalacije."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
-#, c-format
-msgid "Picking '%s' as source package instead of '%s'\n"
-msgstr ""
-
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
-#, c-format
-msgid "Ignore unavailable version '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr ""
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr ""
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr ""
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "Slijedeći NOVI paketi će biti instalirani:"
-msgstr[1] "Slijedeći NOVI paketi će biti instalirani:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "Slijedeći NOVI paketi će biti instalirani:"
-msgstr[1] "Slijedeći NOVI paketi će biti instalirani:"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr ""
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr ""
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Oštećeni paketi"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Slijedeći dodatni paketi će biti instalirani:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Predloženi paketi:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "PreporuÄeni paketi:"
-
-#: cmdline/apt-get.cc:2182
-#, c-format
-msgid "Couldn't find package %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "ali se %s treba instalirati"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "RaÄunam nadogradnju..."
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Neuspješno"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Urađeno"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr ""
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr ""
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr ""
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr ""
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -837,141 +320,151 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr ""
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr ""
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr ""
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr ""
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr ""
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr ""
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr ""
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr ""
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr ""
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr ""
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr ""
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr ""
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr ""
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
"packages"
msgstr ""
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
"found"
msgstr ""
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
"package %s can't satisfy version requirements"
msgstr ""
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
"version"
msgstr ""
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr ""
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr ""
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr ""
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr ""
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Podržani moduli:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1017,95 +510,53 @@ msgid ""
" This APT has Super Cow Powers.\n"
msgstr ""
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr ""
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr ""
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr ""
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr ""
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr ""
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr ""
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "ali nije instaliran"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "ali se %s treba instalirati"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "ali se %s treba instalirati"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr ""
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr ""
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr ""
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "ali se %s treba instalirati"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Ne mogu otvoriti %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1127,6 +578,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1222,8 +690,8 @@ msgstr ""
msgid "Server closed the connection"
msgstr "Server je zatvorio vezu"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "GreÅ¡ka pri Äitanju"
@@ -1237,8 +705,8 @@ msgid "Protocol corruption"
msgstr "Oštećenje protokola"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Greška pri pisanju"
@@ -1250,6 +718,10 @@ msgstr ""
msgid "Could not connect data socket, connection timed out"
msgstr ""
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Neuspješno"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr ""
@@ -1292,7 +764,7 @@ msgstr ""
msgid "Unable to accept connection"
msgstr ""
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr ""
@@ -1421,81 +893,573 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr ""
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr ""
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr ""
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr ""
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr ""
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr ""
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "ÄŒekam na zaglavlja"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr ""
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr ""
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr ""
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr ""
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr ""
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Nepoznat oblik datuma"
-#: methods/http.cc:826
-msgid "Select failed"
+#: methods/server.cc:490
+msgid "Bad header data"
msgstr ""
-#: methods/http.cc:831
-msgid "Connection timed out"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Povezivanje neuspješno"
+
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Unutrašnja greška"
+
+#: apt-private/private-list.cc:143
+msgid "Listing"
msgstr ""
-#: methods/http.cc:854
-msgid "Error writing to output file"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
msgstr ""
-#: methods/http.cc:885
-msgid "Error writing to file"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
msgstr ""
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
-#: methods/http.cc:929
-msgid "Error reading from server"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
msgstr ""
-#: methods/http.cc:1197
-msgid "Bad header data"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
msgstr ""
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Povezivanje neuspješno"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr ""
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Unutrašnja greška"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr ""
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr ""
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr ""
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Da, uradi kako kažem!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Odustani."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Da li želite nastaviti?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr ""
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr ""
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr ""
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Odustajem od instalacije."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr ""
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr ""
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "Slijedeći NOVI paketi će biti instalirani:"
+msgstr[1] "Slijedeći NOVI paketi će biti instalirani:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "Slijedeći NOVI paketi će biti instalirani:"
+msgstr[1] "Slijedeći NOVI paketi će biti instalirani:"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Oštećeni paketi"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Slijedeći dodatni paketi će biti instalirani:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Predloženi paketi:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "PreporuÄeni paketi:"
+
+#: apt-private/private-download.cc:32
+#, fuzzy
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "Slijedeći paketi će biti nadograđeni:"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr ""
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr ""
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr ""
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr ""
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr "[Instalirano]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr "[Instalirano]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr "[Instalirano]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr ""
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "ali je %s instaliran"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "ali se %s treba instalirati"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "ali se ne može instalirati"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "ali je virtuelni paket"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "ali nije instaliran"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "ali se neće instalirati"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " ili"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Slijedeći NOVI paketi će biti instalirani:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Slijedeći paketi će biti UKLONJENI:"
+
+#: apt-private/private-output.cc:500
+#, fuzzy
+msgid "The following packages have been kept back:"
+msgstr "Slijedeći paketi su zadržani:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Slijedeći paketi će biti nadograđeni:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr ""
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr ""
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr ""
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr ""
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr ""
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr ""
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr ""
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr ""
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr ""
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Ispravljam zavisnosti..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr ""
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Ne mogu ispraviti zavisnosti"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr ""
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Urađeno"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr ""
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Nezadovoljene zavisnosti. Pokušajte koristeći -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr ""
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "RaÄunam nadogradnju..."
+
+#: apt-private/private-upgrade.cc:23
+msgid "Internal error, Upgrade broke stuff"
+msgstr ""
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Urađeno"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Ne mogu otvoriti %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr ""
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr ""
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr ""
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr ""
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr ""
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr ""
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Ne mogu Äitati %s"
@@ -1554,32 +1518,32 @@ msgstr ""
msgid "Connection closed prematurely"
msgstr ""
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Loša podrazumjevana postavka!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Pritisnite enter za nastavak."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr ""
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr ""
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1778,36 +1742,36 @@ msgstr ""
msgid "Failed to unlink %s"
msgstr ""
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr ""
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr ""
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr ""
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr ""
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr ""
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr ""
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr ""
@@ -1886,7 +1850,7 @@ msgstr ""
msgid "Failed to rename %s to %s"
msgstr ""
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -1934,7 +1898,7 @@ msgstr "Oštećena arhiva"
msgid "Tar checksum failed, archive corrupted"
msgstr "Provjera Tar kontrolnog zbira nije uspjela, arhiva oštećena"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr ""
@@ -2058,22 +2022,17 @@ msgid "Unable to stat %s"
msgstr ""
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr ""
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr ""
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr ""
@@ -2131,85 +2090,85 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr ""
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr ""
@@ -2234,48 +2193,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr ""
@@ -2289,116 +2248,116 @@ msgstr ""
msgid "Failed to stat the cdrom"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "Ne mogu otvoriti %s"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "Ne mogu ukloniti %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr ""
@@ -2517,12 +2476,12 @@ msgstr "Ne mogu otvoriti %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Ne mogu ukloniti %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr ""
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr ""
@@ -2597,19 +2556,19 @@ msgstr ""
msgid "Type '%s' is not known on line %u in source list %s"
msgstr ""
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Ne mogu otvoriti %s"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2628,22 +2587,16 @@ msgid ""
"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
msgstr ""
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr ""
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2686,12 +2639,12 @@ msgstr ""
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr ""
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr ""
@@ -2723,17 +2676,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr ""
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr ""
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr ""
@@ -2800,44 +2753,47 @@ msgstr ""
msgid "rename failed, %s (%s -> %s)."
msgstr ""
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
+#: apt-pkg/acquire-item.cc:154
+msgid "Hash Sum mismatch"
msgstr ""
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
-msgid "Hash Sum mismatch"
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
msgstr ""
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:164
+msgid "Invalid file format"
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Ne mogu otvoriti DB datoteku %s"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -2845,41 +2801,35 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, 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:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr ""
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "Ne mogu otvoriti DB datoteku %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr ""
@@ -3019,49 +2969,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr ""
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr ""
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr ""
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "Ne mogu otvoriti %s"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr ""
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3086,127 +3036,153 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, fuzzy, c-format
msgid "Installing %s"
msgstr " Instalirano:"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, fuzzy, c-format
msgid "Configuring %s"
msgstr "Povezujem se sa %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Otvaram %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "Ne mogu ukloniti %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr ""
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "Ne mogu otvoriti %s"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, fuzzy, c-format
msgid "Preparing %s"
msgstr "Otvaram %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, fuzzy, c-format
msgid "Unpacking %s"
msgstr "Otvaram %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, fuzzy, c-format
msgid "Installed %s"
msgstr " Instalirano:"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, fuzzy, c-format
msgid "Removed %s"
msgstr "PreporuÄuje"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, fuzzy, c-format
msgid "Completely removed %s"
msgstr "Ne mogu ukloniti %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Ne mogu zapisati na %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3235,6 +3211,13 @@ msgstr ""
msgid "Not locked"
msgstr ""
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "Verzije kandidata"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Međutim, slijedeći paketi ga zamjenjuju:"
+
#~ msgid "Failed to remove %s"
#~ msgstr "Ne mogu ukloniti %s"
diff --git a/po/ca.po b/po/ca.po
index af812a5c6..c6a1fff4d 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.9.7.6\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-10-19 13:30+0200\n"
"Last-Translator: Jordi Mallach <jordi@debian.org>\n"
"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
@@ -18,152 +18,154 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "El paquet %s versió %s té una dependència sense satisfer:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Nombre total de paquets: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Nombre total d'estructures de paquets: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Paquets normals: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Paquets virtuals purs: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Paquets virtuals únics: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Paquets virtuals mixtes: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Falten: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Nombre total de versions diferents: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Nombre total de descripcions diferents: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Nombre total de dependències: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Nombre total de relacions versió/fitxer: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Nombre total de relacions descripció/fitxer: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Nombre total dels mapes aportats: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Nombre total de cadenes globals: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Nombre total de l'espai per a dependències de versió: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Nombre total de l'espai desaprofitat: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Nombre total de l'espai atribuït a: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "El fitxer %s del paquet està desincronitzat."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "No s'han trobat paquets"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Heu de donar com a mínim un patró de cerca"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
"Aquesta ordre és desaconsellada. Empreu «apt-mark showauto» en el seu lloc."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "No s'ha trobat el paquet %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Fitxers de paquets:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"Memòria cau no sincronitzada, no es pot fer x-ref a un fitxer del paquet"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Paquets etiquetats:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(no trobat)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Instaŀlat: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Candidat: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(cap)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Etiqueta del paquet: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Taula de versió:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s per a %s compilat el %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -238,35 +240,35 @@ msgstr ""
"informació.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Doneu un nom per a aquest disc, com per exemple «Debian 5.0.3 Disc 1»"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "No s'ha pogut muntar «%s» a «%s»"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Repetiu aquest procés per a la resta de CD del vostre joc."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Els arguments no són en parells"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -294,562 +296,32 @@ msgstr ""
" -c=? Llegeix aquest fitxer de configuració\n"
" -o=? Estableix una opció de conf arbitrària, p. ex. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[S/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[s/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "S"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "S'ha produït un error de compilació de l'expressió regular - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Els següents paquets tenen dependències sense satisfer:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "però està instaŀlat %s"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "però s'instaŀlarà %s"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "però no és instaŀlable"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "però és un paquet virtual"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "però no està instaŀlat"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "però no serà instaŀlat"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " o"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "S'instaŀlaran els paquets NOUS següents:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Es SUPRIMIRAN els paquets següents:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "S'han mantingut els paquets següents:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "S'actualitzaran els paquets següents:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Es DESACTUALITZARAN els paquets següents:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Es canviaran els paquets retinguts següents:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (per %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"AVÃS: Es suprimiran els paquets essencials següents.\n"
-"Això NO s'ha de fer a menys que sapigueu exactament el que esteu fent!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu actualitzats, %lu nous a instaŀlar, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstaŀlats, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu desactualitzats, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu a suprimir i %lu no actualitzats.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu no instaŀlats o suprimits completament.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Nota: s'està seleccionant «%s» per a la tasca «%s»\n"
-
-#: cmdline/apt-get.cc:669
-#, 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:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Instaŀlat]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr "[Versió no candidata]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Necessiteu seleccionar-ne un explícitament per a instaŀlar-lo."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"El paquet %s no té versió disponible, però un altre paquet\n"
-"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:729
-msgid "However the following packages replace it:"
-msgstr "Tot i que els següents paquets el reemplacen:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "El paquet «%s» no té candidat d'instaŀlació"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Els paquets virtuals com «%s» no es poden suprimir\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"El paquet «%s» no està instaŀlat, així doncs no es suprimirà. Volíeu dir "
-"«%s»?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "El paquet «%s» no està instaŀlat, així doncs no es suprimirà\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Nota: s'està seleccionant «%s» en lloc de «%s»\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"S'està ometent %s, ja està instaŀlat i l'actualització no està establerta.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"S'està ometent '%s', no està instaŀlat i només es demana l'actualització.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "No es possible la reinstaŀlació del paquet %s, no es pot baixar.\n"
-
-#: cmdline/apt-get.cc:868
-#, 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:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "S'ha marcat %s com instaŀlat manualment.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Versió seleccionada «%s» (%s) per a «%s»\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Versió seleccionada «%s» (%s) per a «%s» degut a «%s»\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "S'estan corregint les dependències…"
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " ha fallat."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "No es poden corregir les dependències"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "No es pot minimitzar el joc de versions revisades"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Fet"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dependències sense satisfer. Proveu-ho emprant -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "AVÃS: No es poden autenticar els següents paquets!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "S'ha descartat l'avís d'autenticació.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Voleu instaŀlar aquests paquets sense verificar-los?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "No s'ha pogut autenticar alguns paquets"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-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:1169
-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:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "S'ha produït un error intern, l'ordenació no ha acabat"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Què estrany… les mides no coincideixen, informeu a apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "S'ha d'obtenir %sB/%sB d'arxius.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "S'ha d'obtenir %sB d'arxius.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, 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"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, 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:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "No teniu prou espai lliure en %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "S'ha especificat «Trivial Only» però aquesta operació no és trivial."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Sí, fes el que et dic!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Esteu a punt de fer quelcom potencialment nociu.\n"
-"Per continuar escriviu la frase «%s»\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Avortat."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Voleu continuar?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "No s'ha pogut obtenir %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Alguns fitxers no s'han pogut baixar"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Baixada completa i en mode de només baixada"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"No es poden baixar alguns arxius, proveu a executar apt-get update o "
-"intenteu-ho amb --fix-missing."
-
-#: cmdline/apt-get.cc:1414
-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:1419
-msgid "Unable to correct missing packages."
-msgstr "No es poden corregir els paquets que falten."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "S'està avortant la instaŀlació."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"El següent paquet ha desaparegut del vostre sistema ja\n"
-"que tots els fitxers s'han sobreescrit per altres paquets:"
-msgstr[1] ""
-"Els següents paquets han desaparegut del vostre sistema ja\n"
-"que tots els fitxers s'han sobreescrit per altres paquets:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Nota: Això ho fa el dpkg automàticament i a propòsit."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Ignora la versió objectiu «%s» no disponible del paquet «%s»"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "S'està agafant «%s» com a paquet font en lloc de '%s'\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Descarta la versió «%s» no disponible del paquet «%s»"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "L'ordre update no pren arguments"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Sembla que el supressor automàtic ha destruït alguna cosa que no deuria. Si "
-"us plau, envieu un informe d'error per a l'apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-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:1853
-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:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"El paquet següent s'ha instaŀlat automàticament i ja no serà necessari:"
-msgstr[1] ""
-"Els paquets següents s'han instaŀlat automàticament i ja no són necessaris:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"El paquet %lu es va instaŀlar automàticament i ja no és necessari:\n"
-msgstr[1] ""
-"Els paquets %lu es van s'instaŀlar automàticament i ja no són necessaris:\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Empreu «apt-get autoremove» per a suprimir-lo."
-msgstr[1] "Empreu «apt-get autoremove» per a suprimir-los."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Error intern, AllUpgrade ha trencat coses"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "Potser voldreu executar «apt-get -f install» per corregir-ho:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Dependències insatisfetes. Proveu amb «apt-get -f install» sense paquets (o "
-"especifiqueu una solució)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"No s'han pogut instaŀlar alguns paquets. Això pot ser degut a que heu\n"
-"demanat una situació impossible o que esteu emprant la distribució\n"
-"«unstable» i alguns paquets requerits encara no han estat creats o bé\n"
-"encara no els hi han introduït des d'«Incoming»."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Paquets trencats"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "S'instaŀlaran els següents paquets extres:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Paquets suggerits:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Paquets recomanats:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "No s'ha pogut trobar el paquet %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "S'ha marcat %s com instaŀlat manualment.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "S'ha marcat %s com instaŀlat automàticament.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -857,47 +329,25 @@ msgstr ""
"Aquesta ordre és desaconsellada. Empreu «apt-mark auto» i «apt-mark manual» "
"en el seu lloc."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "S'està calculant l'actualització… "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Ha fallat"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Fet"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
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:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "No és possible blocar el directori de descàrrega"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "No es troba una font per baixar la versió «%s» de «%s»"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "S'està baixant %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, 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:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -907,7 +357,7 @@ msgstr ""
"versions «%s» a:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -919,71 +369,81 @@ msgstr ""
"per obtenir les últimes actualitzacions (possiblement no publicades) del "
"paquet.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "S'està ometent el fitxer ja baixat «%s»\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, 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:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "No teniu prou espai lliure en %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Es necessita baixar %sB/%sB d'arxius font.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Es necessita baixar %sB d'arxius font.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Obtén el font %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "No s'ha pogut baixar alguns arxius."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Baixada completa i en mode de només baixada"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "L'ordre de desempaquetar «%s» ha fallat.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Comproveu si el paquet «dpkgdev» està instaŀlat.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "L'ordre de construir «%s» ha fallat.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Ha fallat el procés fill"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -992,18 +452,18 @@ msgstr ""
"No hi ha informació d'arquitectura disponible per a %s. Vegeu apt.conf(5) "
"APT::Architectures per a configurar-ho"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s no té dependències de construcció.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1012,7 +472,7 @@ msgstr ""
"La dependència %s en %s no es pot satisfer perquè %s no és permès als "
"paquets «%s»"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1021,14 +481,14 @@ msgstr ""
"La dependència %s en %s no es pot satisfer perquè no es pot trobar el paquet "
"%s"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"No s'ha pogut satisfer la dependència %s per a %s: El paquet instaŀlat %s és "
"massa nou"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1037,7 +497,7 @@ msgstr ""
"La dependència %s per a %s no es pot satisfer perquè la versió candidata del "
"paquet %s no pot satisfer els requeriments de versions"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1046,30 +506,30 @@ msgstr ""
"La dependència %s en %s no es pot satisfer perquè el paquet %s no té versió "
"candidata"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, 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:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "No es poden processar les dependències de construcció"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Registre de canvis per a %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Mòduls suportats:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1161,102 +621,53 @@ msgstr ""
"per a obtenir més informació i opcions.\n"
" Aquest APT té superpoders bovins.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"Nota: Això només és una simulació!\n"
-" L'apt-get necessita privilegis de root per a l'execució real.\n"
-" Tingueu en ment que el bloqueig està desactivat,\n"
-" per tant, no es depèn de la situació actual real."
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Obj "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Bai:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "S'ha baixat %sB en %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Treballant]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Canvi de medi: inseriu el disc amb l'etiqueta\n"
-" «%s»\n"
-"en la unitat «%s» i premeu Intro\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s no es pot marcar perquè no està instaŀlat.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s ja estava marcat com instaŀlat manualment.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s ja estava marcat com instaŀlat automàticament.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s ja estava retingut.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s ja estava no retingut.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Esperava %s però no hi era"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "S'ha marcat %s com retingut.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "S'ha cancel·lat la marca de retenció en %s.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "L'execució del dpkg ha fallat. Sou root?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1278,6 +689,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1375,8 +803,8 @@ msgstr "Temps de connexió finalitzat"
msgid "Server closed the connection"
msgstr "El servidor ha tancat la connexió"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Error de lectura"
@@ -1389,8 +817,8 @@ msgid "Protocol corruption"
msgstr "Protocol corromput"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Error d'escriptura"
@@ -1402,6 +830,10 @@ msgstr "No s'ha pogut crear un sòcol"
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:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Ha fallat"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "No s'ha pogut connectar amb el sòcol passiu."
@@ -1445,7 +877,7 @@ msgstr "S'ha esgotat el temps de connexió al sòcol de dades"
msgid "Unable to accept connection"
msgstr "No es pot acceptar la connexió"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problema escollint el fitxer"
@@ -1579,82 +1011,609 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Els fitxers buits no poden ser arxius vàlids"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "S'ha produït un error en escriure al fitxer"
+
+#: methods/http.cc:533
+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:535
+msgid "Error reading from server"
+msgstr "S'ha produït un error en llegir des del servidor"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "S'ha produït un error en escriure al fitxer"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Ha fallat la selecció"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Connexió finalitzada"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "S'ha produït un error en escriure al fitxer de sortida"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "S'estan esperant les capçaleres"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Línia de capçalera incorrecta"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
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:606
+#: methods/server.cc:176
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:621
+#: methods/server.cc:199
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:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Aquest servidor HTTP té el suport d'abast trencat"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Format de la data desconegut"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Ha fallat la selecció"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Capçalera de dades no vàlida"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Connexió finalitzada"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Ha fallat la connexió"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "S'ha produït un error en escriure al fitxer de sortida"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Error intern"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "S'ha produït un error en escriure al fitxer"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "S'ha produït un error en escriure al fitxer"
+#: apt-private/private-install.cc:93
+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!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
msgstr ""
-"S'ha produït un error en llegir, el servidor remot ha tancat la connexió"
+"Els paquets necessiten ser suprimits però s'ha inhabilitat la supressió."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "S'ha produït un error en llegir des del servidor"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "S'ha produït un error intern, l'ordenació no ha acabat"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Capçalera de dades no vàlida"
+#: apt-private/private-install.cc:159
+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"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Ha fallat la connexió"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "S'ha d'obtenir %sB/%sB d'arxius.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Error intern"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "S'ha d'obtenir %sB d'arxius.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, 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"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Després d'aquesta operació s'alliberaran %sB d'espai en disc.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "No teniu prou espai lliure en %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Hi ha problemes i s'ha emprat -y sense --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "S'ha especificat «Trivial Only» però aquesta operació no és trivial."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Sí, fes el que et dic!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Esteu a punt de fer quelcom potencialment nociu.\n"
+"Per continuar escriviu la frase «%s»\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Avortat."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Voleu continuar?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Alguns fitxers no s'han pogut baixar"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"No es poden baixar alguns arxius, proveu a executar apt-get update o "
+"intenteu-ho amb --fix-missing."
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing i els medi intercanviables actualment no estan suportats"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "No es poden corregir els paquets que falten."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "S'està avortant la instaŀlació."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"El següent paquet ha desaparegut del vostre sistema ja\n"
+"que tots els fitxers s'han sobreescrit per altres paquets:"
+msgstr[1] ""
+"Els següents paquets han desaparegut del vostre sistema ja\n"
+"que tots els fitxers s'han sobreescrit per altres paquets:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Nota: Això ho fa el dpkg automàticament i a propòsit."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+"Es suposa que no hauriem de suprimir coses, no es pot iniciar el supressor "
+"automàtic"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Sembla que el supressor automàtic ha destruït alguna cosa que no deuria. Si "
+"us plau, envieu un informe d'error per a l'apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "La informació següent pot ajudar-vos a resoldre la situació:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "S'ha produït un error intern, el supressor automàtic ha trencat coses"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"El paquet següent s'ha instaŀlat automàticament i ja no serà necessari:"
+msgstr[1] ""
+"Els paquets següents s'han instaŀlat automàticament i ja no són necessaris:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"El paquet %lu es va instaŀlar automàticament i ja no és necessari:\n"
+msgstr[1] ""
+"Els paquets %lu es van s'instaŀlar automàticament i ja no són necessaris:\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Empreu «apt-get autoremove» per a suprimir-lo."
+msgstr[1] "Empreu «apt-get autoremove» per a suprimir-los."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Potser voldreu executar «apt-get -f install» per corregir-ho:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Dependències insatisfetes. Proveu amb «apt-get -f install» sense paquets (o "
+"especifiqueu una solució)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"No s'han pogut instaŀlar alguns paquets. Això pot ser degut a que heu\n"
+"demanat una situació impossible o que esteu emprant la distribució\n"
+"«unstable» i alguns paquets requerits encara no han estat creats o bé\n"
+"encara no els hi han introduït des d'«Incoming»."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Paquets trencats"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "S'instaŀlaran els següents paquets extres:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Paquets suggerits:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Paquets recomanats:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "AVÃS: No es poden autenticar els següents paquets!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "S'ha descartat l'avís d'autenticació.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "No s'ha pogut autenticar alguns paquets"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Voleu instaŀlar aquests paquets sense verificar-los?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "No s'ha pogut obtenir %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Instaŀlat]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Instaŀlat]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Instaŀlat]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Els següents paquets tenen dependències sense satisfer:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "però està instaŀlat %s"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "però s'instaŀlarà %s"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "però no és instaŀlable"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "però és un paquet virtual"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "però no està instaŀlat"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "però no serà instaŀlat"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " o"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "S'instaŀlaran els paquets NOUS següents:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Es SUPRIMIRAN els paquets següents:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "S'han mantingut els paquets següents:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "S'actualitzaran els paquets següents:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Es DESACTUALITZARAN els paquets següents:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Es canviaran els paquets retinguts següents:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (per %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"AVÃS: Es suprimiran els paquets essencials següents.\n"
+"Això NO s'ha de fer a menys que sapigueu exactament el que esteu fent!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu actualitzats, %lu nous a instaŀlar, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstaŀlats, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu desactualitzats, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu a suprimir i %lu no actualitzats.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu no instaŀlats o suprimits completament.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[S/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[s/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "S"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "S'ha produït un error de compilació de l'expressió regular - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "S'estan corregint les dependències…"
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " ha fallat."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "No es poden corregir les dependències"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "No es pot minimitzar el joc de versions revisades"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Fet"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Potser voldreu executar «apt-get -f install» per a corregir-ho."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dependències sense satisfer. Proveu-ho emprant -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "L'ordre update no pren arguments"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "S'està calculant l'actualització… "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Error intern, AllUpgrade ha trencat coses"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Fet"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"Nota: Això només és una simulació!\n"
+" L'apt-get necessita privilegis de root per a l'execució real.\n"
+" Tingueu en ment que el bloqueig està desactivat,\n"
+" per tant, no es depèn de la situació actual real."
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "No s'ha pogut canviar el nom de %s a %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Obj "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Bai:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "S'ha baixat %sB en %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Treballant]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Canvi de medi: inseriu el disc amb l'etiqueta\n"
+" «%s»\n"
+"en la unitat «%s» i premeu Intro\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "No es pot llegir %s"
@@ -1717,35 +1676,35 @@ msgstr "No s'ha pogut crear el conducte IPC al subprocés"
msgid "Connection closed prematurely"
msgstr "La connexió s'ha tancat prematurament"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Paràmetre per defecte incorrecte!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Premeu Intro per a continuar."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Voleu suprimir els paquets .deb baixats prèviament?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
"S'han produït alguns errors en desempaquetar. Els paquets que s'han instaŀlat"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "seran configurats. Això pot provocar errors duplicats"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"o errors causats per dependències sense satisfer. Això està bé, només els "
"errors"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1996,36 +1955,36 @@ msgstr "No s'ha pogut llegir l'enllaç %s"
msgid "Failed to unlink %s"
msgstr "No s'ha pogut alliberar %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** No s'ha pogut enllaçar %s a %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " DeLink s'ha arribat al límit de %sB.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Arxiu sense el camp paquet"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s no té una entrada dominant\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " el mantenidor de %s és %s, no %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s no té una entrada dominant de font\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s no té una entrada dominant de binari\n"
@@ -2104,7 +2063,7 @@ msgstr "S'ha trobat un problema treient l'enllaç %s"
msgid "Failed to rename %s to %s"
msgstr "No s'ha pogut canviar el nom de %s a %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2173,7 +2132,7 @@ msgstr "Arxiu corromput"
msgid "Tar checksum failed, archive corrupted"
msgstr "La suma de comprovació de tar ha fallat, arxiu corromput"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Capçalera TAR desconeguda del tipus %u, membre %s"
@@ -2297,22 +2256,17 @@ msgid "Unable to stat %s"
msgstr "No es pot veure l'estat de %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Aquest no és un arxiu DEB vàlid, falta el membre «%s»"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "Aquest no és un arxiu DEB vàlid, li manca el membre «%s», «%s» o «%s»"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Error intern, no s'ha pogut localitzar al membre %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "El fitxer de control no es pot analitzar"
@@ -2373,87 +2327,87 @@ msgstr ""
"està deshabilitat per l'usuari."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lih %limin %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "No s'ha trobat la selecció %s"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Abreujament de tipus no reconegut: «%c»"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "S'està obrint el fitxer de configuració %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Error sintàctic %s:%u: Etiqueta malformada"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, 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:869
+#: apt-pkg/contrib/configuration.cc:881
#, 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:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Error sintàctic %s:%u: la directiva clear requereix un arbre d'opcions com a "
"argument"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, 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"
@@ -2478,48 +2432,48 @@ msgstr "…"
msgid "%c%s... %u%%"
msgstr "%c%s… %u%%"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "L'opció de la línia d'ordres «%c» [de %s] és desconeguda."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "No s'entén l'opció de la línia d'ordres %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "No és lògica l'opció de la línia d'ordres %s"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "L'opció de la línia d'ordres %s precisa un paràmetre."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Opció %s: Paràmetre de configuració ha de ser en la forma =<val>"
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "L'opció %s precisa un paràmetre numèric, no '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "L'opció '%s' és massa llarga"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "El sentit %s no s'entén, proveu «true» (vertader) o «false» (fals)."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Operació no vàlida %s"
@@ -2533,50 +2487,50 @@ msgstr "No es pot obtenir informació del punt de muntatge %s"
msgid "Failed to stat the cdrom"
msgstr "No s'ha pogut fer «stat» del cdrom"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Ha hagut un problema en tancar el fitxer gzip %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
"No s'empren blocats per a llegir el fitxer de blocat de sols lectura %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "No es pot resoldre el fitxer de blocat %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "No s'empren blocats per al fitxer de blocat %s de muntar nfs"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "No s'ha pogut blocar %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "No es pot crear la llista de fitxers perquè «%s» no és un directori"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "S'està descartant «%s» al directori «%s» perquè no és un fitxer normal"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
"S'està descartant «%s» al directori «%s» perquè no té extensió del nom de "
"fitxer"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
@@ -2584,70 +2538,70 @@ msgstr ""
"S'està descartant «%s» al directori «%s» perquè té una extensió del nom de "
"fitxer invàlida"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "El sub-procés %s ha rebut una violació de segment."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "El sub-procés %s ha rebut un senyal %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "El sub-procés %s ha retornat un codi d'error (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "El sub-procés %s ha sortit inesperadament"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "No s'ha pogut obrir el fitxer %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "No s'ha pogut obrir el descriptor del fitxer %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "No s'ha pogut crear el subprocés IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "No s'ha pogut executar el compressor "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "llegits, falten %llu per llegir, però no queda res"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "escrits, falten %llu per escriure però no s'ha pogut"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Ha hagut un problema en tancar el fitxer %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Ha hagut un problema en reanomenar el fitxer %s a %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Ha hagut un problema en desenllaçar el fitxer %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Ha hagut un problema en sincronitzar el fitxer"
@@ -2764,12 +2718,12 @@ msgstr "No s'ha pogut obrir el fitxer d'estat %s"
msgid "Failed to write temporary StateFile %s"
msgstr "No s'ha pogut escriure el fitxer d'estat temporal %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "No es pot analitzar el fitxer del paquet %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "No es pot analitzar el fitxer del paquet %s (2)"
@@ -2847,7 +2801,7 @@ msgstr "La línia %u és malformada en la llista de fonts %s (tipus)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2856,12 +2810,12 @@ msgstr ""
"No s'ha pogut realitzar la configuració immediata de «%s». Vegeu man 5 apt."
"conf, sota APT::Immediate-Configure per a més detalls. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "No s'ha pogut configurar «%s»."
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2885,7 +2839,7 @@ msgid ""
msgstr ""
"El paquet %s necessita ser reinstaŀlat, però no se li pot trobar un arxiu."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2893,20 +2847,12 @@ msgstr ""
"Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat "
"causat per paquets retinguts."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
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:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Alguns índex no s'han pogut baixar. S'han descartat, o en el seu lloc s'han "
-"emprat els antics."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2949,12 +2895,12 @@ msgstr "El mètode %s no s'ha iniciat correctament"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Inseriu el disc amb l'etiqueta: «%s» en la unitat «%s» i premeu Intro."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "El sistema d'empaquetament «%s» no està suportat"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "No es pot determinar un tipus de sistema d'empaquetament adequat."
@@ -2990,17 +2936,17 @@ msgstr ""
"El valor «%s» és invàlid per a APT:Default-Release donat que aquest "
"llançament no és disponible a les fonts"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Registre no vàlid al fitxer de preferències %s, paquet sense capçalera"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "No s'ha entès el pin de tipus %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "No hi ha prioritat especificada per al pin (o és zero)"
@@ -3074,16 +3020,20 @@ msgstr "Error d'E/S en desar la memòria cau de la font"
msgid "rename failed, %s (%s -> %s)."
msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "La suma MD5 no concorda"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "La suma resum no concorda"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "La mida no concorda"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Operació no vàlida %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3092,16 +3042,16 @@ msgstr ""
"No s'ha trobat l'entrada «%s» esperada, al fitxer Release (entrada errònia "
"al sources.list o fitxer malformat)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "No s'ha trobat la suma de comprovació per a «%s» al fitxer Release"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3110,12 +3060,12 @@ msgstr ""
"El fitxer Release per a %s ha caducat (invàlid des de %s). Les "
"actualitzacions per a aquest dipòsit no s'aplicaran."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Distribució en conflicte: %s (s'esperava %s però s'ha obtingut %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3126,12 +3076,12 @@ msgstr ""
"%s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "S'ha produït un error amb el GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3141,16 +3091,12 @@ msgstr ""
"significar que haureu d'arreglar aquest paquet manualment (segons "
"arquitectura)."
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"No s'ha trobat un fitxer pel paquet %s. Això podria significar que haureu "
-"d'arreglar aquest paquet manualment."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "No es troba una font per baixar la versió «%s» de «%s»"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3158,16 +3104,12 @@ msgstr ""
"L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp "
"per al paquet %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "La mida no concorda"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "No es pot analitzar el fitxer Release %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "No hi ha seccions al fitxer Release %s"
@@ -3314,34 +3256,34 @@ msgstr "No s'ha pogut trobar el registre d'autenticatió per a: %s"
msgid "Hash mismatch for: %s"
msgstr "El resum no coincideix per a: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "No s'ha trobat la versió puntual «%s» per a «%s»"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "No s'ha trobat la versió «%s» per a «%s»"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "No s'ha pogut trobar la tasca «%s»"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
"No s'han pogut seleccionar les versions del paquet «%s» ja que és purament "
"virtual"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3350,21 +3292,21 @@ msgstr ""
"No s'han pogut seleccionar la versió instaŀlada ni la candidata del paquet "
"«%s» ja que no estan disponibles cap de les dues"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"No s'ha pogut seleccionar la versió més nova del paquet «%s» ja que és "
"purament virtual"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"No s'ha pogut seleccionar la versió candidata del paquet %s ja que no té "
"candidata"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3391,111 +3333,131 @@ msgstr "El resoledor extern ha fallat sense un missatge d'error adient"
msgid "Execute external solver"
msgstr "Executa un resoledor extern"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "S'està executant dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Alguns índex no s'han pogut baixar. S'han descartat, o en el seu lloc s'han "
+"emprat els antics."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "S'està instaŀlant %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "S'està configurant el paquet %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "S'està suprimint el paquet %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "S'ha suprimit completament %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "S'està anotant la desaparició de %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "S'està executant l'activador de postinstaŀlació %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Manca el directori «%s»"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "No s'ha pogut obrir el fitxer «%s»"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "S'està preparant el paquet %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "S'està desempaquetant %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "S'està preparant per a configurar el paquet %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "S'ha instaŀlat el paquet %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "S'està preparant per a la supressió del paquet %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "S'ha suprimit el paquet %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "S'està preparant per a suprimir completament el paquet %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "S'ha suprimit completament el paquet %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "No es pot escriure en %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"No es pot escriure el registre, ha fallat openpty() (no s'ha muntat /dev/"
-"pts?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "S'està executant dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "S'ha interromput l'operació abans que pogués finalitzar"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "No s'ha escrit cap informe perquè ja s'ha superat MaxReports"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "S'han produït problemes de depències, es deixa sense configurar"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3503,7 +3465,7 @@ msgstr ""
"No s'ha escrit cap informe perquè el missatge d'error indica que és un error "
"consequent de una fallida anterior."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3511,7 +3473,7 @@ msgstr ""
"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per "
"disc ple"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3519,7 +3481,16 @@ msgstr ""
"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per "
"falta de memòria"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per "
+"disc ple"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3554,6 +3525,97 @@ msgstr ""
msgid "Not locked"
msgstr "No blocat"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Nota: s'està seleccionant «%s» per a la tasca «%s»\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Nota: s'està seleccionant «%s» per a l'expressió regular «%s»\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "El paquet %s és un paquet virtual proveït per:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr "[Versió no candidata]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Necessiteu seleccionar-ne un explícitament per a instaŀlar-lo."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "El paquet %s no té versió disponible, però un altre paquet\n"
+#~ "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"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Tot i que els següents paquets el reemplacen:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "El paquet «%s» no té candidat d'instaŀlació"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Els paquets virtuals com «%s» no es poden suprimir\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "El paquet «%s» no està instaŀlat, així doncs no es suprimirà. Volíeu dir "
+#~ "«%s»?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "El paquet «%s» no està instaŀlat, així doncs no es suprimirà\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Nota: s'està seleccionant «%s» en lloc de «%s»\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "S'està ometent %s, ja està instaŀlat i l'actualització no està "
+#~ "establerta.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "S'està ometent '%s', no està instaŀlat i només es demana "
+#~ "l'actualització.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "No es possible la reinstaŀlació del paquet %s, no es pot baixar.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s ja es troba en la versió més recent.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Versió seleccionada «%s» (%s) per a «%s»\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Versió seleccionada «%s» (%s) per a «%s» degut a «%s»\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Ignora la versió objectiu «%s» no disponible del paquet «%s»"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "S'està baixant %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Aquest no és un arxiu DEB vàlid, li manca el membre «%s», «%s» o «%s»"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "La suma MD5 no concorda"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "No s'ha trobat un fitxer pel paquet %s. Això podria significar que haureu "
+#~ "d'arreglar aquest paquet manualment."
+
+#~ 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"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "El fitxer %s no comença amb un missatge signat en clar"
diff --git a/po/cs.po b/po/cs.po
index 697bf0eae..7e90a7516 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-07-08 13:46+0200\n"
"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
@@ -17,150 +17,152 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n>=2 && n<=4 ? 1 : 2;\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Balík %s verze %s má nesplněné závislosti:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Celkem názvů balíků: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Celkem struktur balíků: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Normálních balíků: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Čistě virtuálních balíků: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Jednoduchých virtuálních balíků: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Smíšených virtuálních balíků: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Chybějících: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Celkem různých verzí: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Celkem různých popisů: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Celkem závislostí: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Celkem vztahů ver/soubor: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Celkem vztahů popis/soubor: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Celkem poskytnutých mapování: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Celkem globovaných řetězců: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Celkem místa závislých verzí: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Celkem jalového místa: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Celkem přiřazeného místa: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Soubor balíku %s je špatně synchronizovaný."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Nebyly nalezeny žádné balíky"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Musíte zadat alespoň jeden vyhledávací vzor"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr "Tento příkaz je zastaralý, použijte místo něj „apt-mark showauto“."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Nelze najít balík %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Soubory balíku:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Cache není synchronizovaná, nemohu se odkázat na soubor balíku"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Vypíchnuté balíky:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(nenalezeno)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Instalovaná verze: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Kandidát: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(žádná)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Vypíchnutý balík: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Tabulka verzí:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s pro %s zkompilován na %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -230,35 +232,35 @@ msgstr ""
"Více informací viz manuálové stránky apt-cache(8) a apt.conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Zadejte prosím název tohoto média, např. „Debian 5.0.3 Disk 1“"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Selhalo připojení „%s“ na „%s“"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Tento proces opakujte pro všechna zbývající média."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argumenty nejsou v párech"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -286,558 +288,32 @@ msgstr ""
" -c=? NaÄte tento konfiguraÄní soubor\n"
" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[Y/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[y/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "Y"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Chyba při kompilaci regulárního výrazu - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Následující balíky mají nesplněné závislosti:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "ale %s je nainstalován"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "ale %s se bude instalovat"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "ale nedá se nainstalovat"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "ale je to virtuální balík"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "ale není nainstalovaný"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "ale nebude se instalovat"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " nebo"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Následující NOVÉ balíky budou nainstalovány:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Následující balíky budou ODSTRANĚNY:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Následující balíky jsou podrženy v aktuální verzi:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Následující balíky budou aktualizovány:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Následující balíky budou DEGRADOVÃNY:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Následující podržené balíky budou změněny:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (kvůli %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"VAROVÃNÃ: Následující nezbytné balíky budou odstranÄ›ny.\n"
-"Pokud přesně nevíte, co děláte, NEDĚLEJTE to!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu aktualizováno, %lu nově instalováno, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu přeinstalováno, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu degradováno, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu k odstranění a %lu neaktualizováno.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu instalováno nebo odstranÄ›no pouze ÄásteÄnÄ›.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Pozn: vybírám „%s“ pro úlohu „%s“\n"
-
-#: cmdline/apt-get.cc:669
-#, 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:686
-#, 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:697
-msgid " [Installed]"
-msgstr "[Instalovaný]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Není kandidátská verze]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Měli byste explicitně vybrat jeden k instalaci."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Balík %s není dostupný, ale jiný balík se na něj odkazuje.\n"
-"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:729
-msgid "However the following packages replace it:"
-msgstr "Nicméně následující balíky jej nahrazují:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Balík „%s“ nemá kandidáta pro instalaci"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Virtuální balíky jako „%s“ nemohou být odstraněny\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"Balík „%s“ není nainstalován, nelze tedy odstranit. Mysleli jste „%s“?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, 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:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Pozn: Vybírám „%s“ místo „%s“\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"Přeskakuji %s, protože není nainstalován a vyžadovány jsou pouze "
-"aktualizace.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Přeinstalace %s není možná, protože nelze stáhnout.\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s je již nejnovější verze.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s nastaven jako instalovaný ruÄnÄ›.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Vybraná verze „%s“ (%s) pro „%s“\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Vybraná verze „%s“ (%s) pro „%s“ kvůli „%s“\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Opravuji závislosti…"
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " selhalo."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Nelze opravit závislosti"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Nelze minimalizovat sadu pro aktualizaci"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Hotovo"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Nesplněné závislosti. Zkuste použít -f."
-
-#: cmdline/apt-get.cc:1097
-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:1101
-msgid "Authentication warning overridden.\n"
-msgstr "AutentizaÄní varování potlaÄeno.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Instalovat tyto balíky bez ověření?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Některé balíky nemohly být autentizovány"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-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:1169
-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:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Vnitřní chyba, třídění nedoběhlo do konce"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Jak podivné… velikosti nesouhlasí, ohlaste to na apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Potřebuji stáhnout %sB/%sB archivů.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Potřebuji stáhnout %sB archivů.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Po této operaci bude na disku použito dalších %sB.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Nelze urÄit volné místo v %s"
-
-#: cmdline/apt-get.cc:1270
-#, 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:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Udáno „pouze triviální“, ovšem toto není triviální operace."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Ano, udělej to tak, jak říkám!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Chystáte se vykonat něco potenciálně škodlivého.\n"
-"Pro pokraÄování opiÅ¡te frázi „%s“\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Přerušeno."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Chcete pokraÄovat?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Selhalo stažení %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Některé soubory nemohly být staženy"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Stahování dokonÄeno v režimu pouze stáhnout"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Nelze stáhnout některé archivy. Možná spusťte apt-get update nebo zkuste --"
-"fix-missing?"
-
-#: cmdline/apt-get.cc:1414
-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:1419
-msgid "Unable to correct missing packages."
-msgstr "Nelze opravit chybějící balíky."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Přerušuji instalaci."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Následující balík z tohoto systému zmizel, protože\n"
-"všechny jeho soubory byly přepsány jinými balíky:"
-msgstr[1] ""
-"Následující balíky z tohoto systému zmizely, protože\n"
-"všechny jejich soubory byly přepsány jinými balíky:"
-msgstr[2] ""
-"Následující balíky z tohoto systému zmizely, protože\n"
-"všechny jejich soubory byly přepsány jinými balíky:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Poznámka: Toto má svůj důvod a děje se automaticky v dpkg."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Ignoruje se nedostupné vydání „%s“ balíku „%s“"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Vybírám „%s“ jako zdrojový balík místo „%s“\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Ignoruje se nedostupná verze „%s“ balíku „%s“"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Příkaz update neakceptuje žádné argumenty"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, zdá se, že AutoRemover zniÄil nÄ›co, co nemÄ›l.\n"
-"Nahlaste prosím chybu v apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-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:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Vnitřní chyba, AutoRemover pokazil věci"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "Následující balík byl nainstalován automaticky a již není potřeba:"
-msgstr[1] ""
-"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:"
-msgstr[2] ""
-"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "%lu balík byl nainstalován automaticky a již není potřeba.\n"
-msgstr[1] "%lu balíky byly nainstalovány automaticky a již nejsou potřeba.\n"
-msgstr[2] "%lu balíků bylo nainstalováno automaticky a již nejsou potřeba.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Pro jeho odstranění použijte „apt-get autoremove“."
-msgstr[1] "Pro jejich odstranění použijte „apt-get autoremove“."
-msgstr[2] "Pro jejich odstranění použijte „apt-get autoremove“."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Vnitřní chyba, AllUpgrade pokazil věci"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Nesplněné závislosti. Zkuste spustit „apt-get -f install“ bez balíků (nebo "
-"navrhněte řešení)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Některé balíky nemohly být instalovány. To může znamenat, že požadujete\n"
-"nemožnou situaci, nebo, pokud používáte nestabilní distribuci, že\n"
-"vyžadované balíky ještě nebyly vytvořeny nebo přesunuty z Příchozí fronty."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Poškozené balíky"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Následující extra balíky budou instalovány:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Navrhované balíky:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "DoporuÄované balíky:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Nelze najít balík %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s nastaven jako instalovaný ruÄnÄ›.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s nastaven jako instalovaný automaticky.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -845,46 +321,24 @@ msgstr ""
"Tento příkaz je zastaralý, použijte místo něj „apt-mark auto“ a „apt-mark "
"manual“."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "PropoÄítávám aktualizaci… "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Selhalo"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Hotovo"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Vnitřní chyba, řešitel problémů pokazil věci"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Nelze zamknout adresář pro stahování"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "Nelze najít zdroj pro stažení verze „%s“ balíku „%s“"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "Stahuje se %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Nelze najít zdrojový balík pro %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -893,7 +347,7 @@ msgstr ""
"INFO: Balík „%s“ je spravován v systému pro správu verzí „%s“ na:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -904,70 +358,80 @@ msgstr ""
"použijte:\n"
"bzr branch %s\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Přeskakuji dříve stažený soubor „%s“\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Nelze urÄit volné místo v %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Na %s nemáte dostatek volného místa"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Potřebuji stáhnout %sB/%sB zdrojových archivů.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, 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:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Stažení zdroje %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Stažení některých archivů selhalo."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Stahování dokonÄeno v režimu pouze stáhnout"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Příkaz pro rozbalení „%s“ selhal.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Příkaz pro sestavení „%s“ selhal.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Synovský proces selhal"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -976,17 +440,17 @@ msgstr ""
"O architektuÅ™e %s nejsou známy žádné informace. Pro nastavení si pÅ™eÄtÄ›te "
"Äást APT::Architectures v manuálové stránce apt.conf(5)"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Nelze získat závislosti pro sestavení %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s nemá žádné závislosti pro sestavení.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -995,20 +459,20 @@ msgstr ""
"závislost %s pro %s nemůže být splněna, protože %s není na balících „%s“ "
"dovolena"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
"found"
msgstr "závislost %s pro %s nemůže být splněna, protože balík %s nebyl nalezen"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"Selhalo splnění závislosti %s pro %s: Instalovaný balík %s je příliš nový"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1017,7 +481,7 @@ msgstr ""
"závislost %s pro %s nemůže být splněna, protože kandidátská verze balíku %s "
"nesplňuje požadavek na verzi"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1026,30 +490,30 @@ msgstr ""
"závislost %s pro %s nemůže být splněna, protože balík %s nemá kandidátskou "
"verzi"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Selhalo splnění závislosti %s pro %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, 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:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Chyba při zpracování závislostí pro sestavení"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Seznam změn %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Podporované moduly:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1136,102 +600,53 @@ msgstr ""
"a apt.conf(5).\n"
" Tato APT má schopnosti svaté krávy.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"INFO: Toto je pouze simulace!\n"
-" apt-get vyžaduje pro skuteÄný bÄ›h rootovská oprávnÄ›ní.\n"
-" Mějte také na paměti, že je vypnuto zamykání, tudíž\n"
-" tyto výsledky nemusí mít s realitou nic spoleÄného!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Cíl "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Mám:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Staženo %sB za %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Pracuji]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Výměna média: Vložte disk nazvaný\n"
-" „%s“\n"
-"do mechaniky „%s“ a stiskněte enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s nemůže být oznaÄen, protože není nainstalovaný.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s již byl nastaven jako instalovaný ruÄnÄ›.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s již byl nastaven jako instalovaný automaticky.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s již byl podržen v aktuální verzi.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s již nebyl držen v aktuální verzi.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "ÄŒekal jsem na %s, ale nebyl tam"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s bude podržen v aktuální verzi.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "Podržení balíku %s v aktuální verzi bylo zrušeno.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "Spuštění dpkg selhalo. Jste root?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1271,6 +686,23 @@ msgstr ""
" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
"Více informací viz manuálové stránky apt-mark(8) a apt.conf(5)."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1368,8 +800,8 @@ msgstr "Čas spojení vypršel"
msgid "Server closed the connection"
msgstr "Server uzavřel spojení"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Chyba Ätení"
@@ -1382,8 +814,8 @@ msgid "Protocol corruption"
msgstr "Porušení protokolu"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Chyba zápisu"
@@ -1395,6 +827,10 @@ msgstr "Nelze vytvořit socket"
msgid "Could not connect data socket, connection timed out"
msgstr "Nelze pÅ™ipojit datový socket, Äas spojení vyprÅ¡el"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Selhalo"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Nelze připojit pasivní socket."
@@ -1437,7 +873,7 @@ msgstr "Spojení datového socketu vypršelo"
msgid "Unable to accept connection"
msgstr "Nelze přijmout spojení"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problém s kontrolním souÄtem souboru"
@@ -1567,81 +1003,605 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Prázdné soubory nejsou platnými archivy"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Chyba zápisu do souboru"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Chyba Ätení ze serveru. Druhá strana zavÅ™ela spojení"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Chyba Ätení ze serveru"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Chyba zápisu do souboru"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Výběr selhal"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Čas spojení vypršel"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Chyba zápisu do výstupního souboru"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "ÄŒekám na hlaviÄky"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Chybná hlaviÄka"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "Http server poslal neplatnou hlaviÄku odpovÄ›di"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "Http server poslal neplatnou hlaviÄku Content-Length"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "Http server poslal neplatnou hlaviÄku Content-Range"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Tento HTTP server má porouchanou podporu rozsahů"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Neznámý formát data"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Výběr selhal"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Špatné datové záhlaví"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Čas spojení vypršel"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Spojení selhalo"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Chyba zápisu do výstupního souboru"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Vnitřní chyba"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Chyba zápisu do souboru"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Chyba zápisu do souboru"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Vnitřní chyba, InstallPackages byl zavolán s porušenými balíky!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Chyba Ätení ze serveru. Druhá strana zavÅ™ela spojení"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Balík je potřeba odstranit ale funkce Odstranit je vypnuta."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Chyba Ätení ze serveru"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Vnitřní chyba, třídění nedoběhlo do konce"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Špatné datové záhlaví"
+#: apt-private/private-install.cc:159
+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"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Spojení selhalo"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Potřebuji stáhnout %sB/%sB archivů.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Vnitřní chyba"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Potřebuji stáhnout %sB archivů.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Po této operaci bude na disku použito dalších %sB.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Po této operaci bude na disku uvolněno %sB.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "V %s nemáte dostatek volného místa."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Udáno „pouze triviální“, ovšem toto není triviální operace."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Ano, udělej to tak, jak říkám!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Chystáte se vykonat něco potenciálně škodlivého.\n"
+"Pro pokraÄování opiÅ¡te frázi „%s“\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Přerušeno."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Chcete pokraÄovat?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Některé soubory nemohly být staženy"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Nelze stáhnout některé archivy. Možná spusťte apt-get update nebo zkuste --"
+"fix-missing?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing a výměna média nejsou momentálně podporovány"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Nelze opravit chybějící balíky."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Přerušuji instalaci."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Následující balík z tohoto systému zmizel, protože\n"
+"všechny jeho soubory byly přepsány jinými balíky:"
+msgstr[1] ""
+"Následující balíky z tohoto systému zmizely, protože\n"
+"všechny jejich soubory byly přepsány jinými balíky:"
+msgstr[2] ""
+"Následující balíky z tohoto systému zmizely, protože\n"
+"všechny jejich soubory byly přepsány jinými balíky:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Poznámka: Toto má svůj důvod a děje se automaticky v dpkg."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Neměli bychom mazat věci, nemůžu spustit AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, zdá se, že AutoRemover zniÄil nÄ›co, co nemÄ›l.\n"
+"Nahlaste prosím chybu v apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Následující informace vám mohou pomoci vyřešit tuto situaci:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Vnitřní chyba, AutoRemover pokazil věci"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "Následující balík byl nainstalován automaticky a již není potřeba:"
+msgstr[1] ""
+"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:"
+msgstr[2] ""
+"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "%lu balík byl nainstalován automaticky a již není potřeba.\n"
+msgstr[1] "%lu balíky byly nainstalovány automaticky a již nejsou potřeba.\n"
+msgstr[2] "%lu balíků bylo nainstalováno automaticky a již nejsou potřeba.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Pro jeho odstranění použijte „apt-get autoremove“."
+msgstr[1] "Pro jejich odstranění použijte „apt-get autoremove“."
+msgstr[2] "Pro jejich odstranění použijte „apt-get autoremove“."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Pro opravení následujících můžete spustit „apt-get -f install“:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Nesplněné závislosti. Zkuste spustit „apt-get -f install“ bez balíků (nebo "
+"navrhněte řešení)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Některé balíky nemohly být instalovány. To může znamenat, že požadujete\n"
+"nemožnou situaci, nebo, pokud používáte nestabilní distribuci, že\n"
+"vyžadované balíky ještě nebyly vytvořeny nebo přesunuty z Příchozí fronty."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Poškozené balíky"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Následující extra balíky budou instalovány:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Navrhované balíky:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "DoporuÄované balíky:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "VAROVÃNÃ: Následující balíky nemohou být autentizovány!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "AutentizaÄní varování potlaÄeno.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Některé balíky nemohly být autentizovány"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Instalovat tyto balíky bez ověření?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Selhalo stažení %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr "[Instalovaný]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr "[Instalovaný]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr "[Instalovaný]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Následující balíky mají nesplněné závislosti:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "ale %s je nainstalován"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "ale %s se bude instalovat"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "ale nedá se nainstalovat"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "ale je to virtuální balík"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "ale není nainstalovaný"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "ale nebude se instalovat"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " nebo"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Následující NOVÉ balíky budou nainstalovány:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Následující balíky budou ODSTRANĚNY:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Následující balíky jsou podrženy v aktuální verzi:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Následující balíky budou aktualizovány:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Následující balíky budou DEGRADOVÃNY:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Následující podržené balíky budou změněny:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (kvůli %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"VAROVÃNÃ: Následující nezbytné balíky budou odstranÄ›ny.\n"
+"Pokud přesně nevíte, co děláte, NEDĚLEJTE to!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu aktualizováno, %lu nově instalováno, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu přeinstalováno, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu degradováno, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu k odstranění a %lu neaktualizováno.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu instalováno nebo odstranÄ›no pouze ÄásteÄnÄ›.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[Y/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[y/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "Y"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Chyba při kompilaci regulárního výrazu - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Opravuji závislosti…"
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " selhalo."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Nelze opravit závislosti"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Nelze minimalizovat sadu pro aktualizaci"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Hotovo"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Pro opravení můžete spustit „apt-get -f install“."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Nesplněné závislosti. Zkuste použít -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Příkaz update neakceptuje žádné argumenty"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "PropoÄítávám aktualizaci… "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Vnitřní chyba, AllUpgrade pokazil věci"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Hotovo"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"INFO: Toto je pouze simulace!\n"
+" apt-get vyžaduje pro skuteÄný bÄ›h rootovská oprávnÄ›ní.\n"
+" Mějte také na paměti, že je vypnuto zamykání, tudíž\n"
+" tyto výsledky nemusí mít s realitou nic spoleÄného!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Selhalo přejmenování %s na %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Cíl "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Mám:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Staženo %sB za %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Pracuji]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Výměna média: Vložte disk nazvaný\n"
+" „%s“\n"
+"do mechaniky „%s“ a stiskněte enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Nelze Äíst %s"
@@ -1704,32 +1664,32 @@ msgstr "Selhalo vytvoření meziprocesové roury k podprocesu"
msgid "Connection closed prematurely"
msgstr "Spojení bylo pÅ™edÄasnÄ› ukonÄeno"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Chybné standardní nastavení!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Pro pokraÄování stisknÄ›te enter."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Chcete smazat všechny dříve stažené .deb soubory?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Během rozbalování se vyskytly chyby. Balíky, které se nainstalovaly"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "budou zkonfigurovány. To může způsobit duplicitní chybové hlášky"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "o nesplněných závislostech. To je v pořádku, důležité jsou pouze"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "chyby nad touto hláškou. Opravte je a poté znovu spusťte [I]nstalovat"
@@ -1976,36 +1936,36 @@ msgstr "Nelze pÅ™eÄíst link %s"
msgid "Failed to unlink %s"
msgstr "Nelze odlinkovat %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Nezdařilo se slinkovat %s s %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Odlinkovací limit %sB dosažen.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Archiv nemá pole Package"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s nemá žádnou položku pro override\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " správce %s je %s, ne %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s nemá žádnou zdrojovou položku pro override\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s nemá ani žádnou binární položku pro override\n"
@@ -2084,7 +2044,7 @@ msgstr "Problém s odlinkováním %s"
msgid "Failed to rename %s to %s"
msgstr "Selhalo přejmenování %s na %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2152,7 +2112,7 @@ msgstr "Porušený archiv"
msgid "Tar checksum failed, archive corrupted"
msgstr "Kontrolní souÄet taru selhal, archiv je poÅ¡kozený"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Neznámá hlaviÄka TARu typ %u, Älen %s"
@@ -2276,22 +2236,17 @@ msgid "Unable to stat %s"
msgstr "Nelze vyhodnotit %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Toto není platný DEB archiv, chybí Äást „%s“"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "Toto není platný DEB archiv, neobsahuje Äást „%s“, „%s“ ani „%s“"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "VnitÅ™ní chyba, nemohu najít Äást %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Nezpracovatelný kontrolní soubor"
@@ -2350,88 +2305,88 @@ msgstr ""
"zakázáno."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lih %limin %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Výběr %s nenalezen"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Nerozpoznaná zkratka typu: „%c“"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Otevírám konfiguraÄní soubor %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Syntaktická chyba %s:%u: Zkomolená znaÄka"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Syntaktická chyba %s:%u: Zahrnuto odtud"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktiva „%s“"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Syntaktická chyba %s:%u: Direktiva clear vyžaduje jako argument strom "
"možností"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, 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í"
@@ -2456,48 +2411,48 @@ msgstr "…"
msgid "%c%s... %u%%"
msgstr "%c%s… %u%%"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Parametr příkazové řádky „%c“ [z %s] je neznámý"
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Nerozumím parametru %s příkazové řádky"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Parametr příkazové řádky %s není pravdivostní hodnota"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Volba %s vyžaduje argument."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Parametr %s: Zadání konfiguraÄní položky musí obsahovat =<hodn>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Volba %s vyžaduje jako argument celé Äíslo (integer), ne „%s“"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Volba „%s“ je příliš dlouhá"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Nechápu význam %s, zkuste true nebo false."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Neplatná operace %s"
@@ -2511,116 +2466,116 @@ msgstr "Nelze vyhodnotit přípojný bod %s"
msgid "Failed to stat the cdrom"
msgstr "Nezdařilo se vyhodnotit cdrom"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problém při zavírání gzip souboru %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Nepoužívám zamykání pro zámkový soubor %s, který je pouze pro Ätení"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Nešlo otevřít zámkový soubor %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Nepoužívám zamykání pro zámkový soubor %s připojený přes nfs"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Nelze získat zámek %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "Seznam souborů nelze vytvořit, jelikož „%s“ není adresář"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "Ignoruji „%s“ v adresáři „%s“, jelikož to není obyÄejný soubor"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr "Ignoruji soubor „%s“ v adresáři „%s“, jelikož nemá příponu"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr "Ignoruji soubor „%s“ v adresáři „%s“, jelikož má neplatnou příponu"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Podproces %s obdržel chybu segmentace."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Podproces %s obdržel signál %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Podproces %s neoÄekávanÄ› skonÄil"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Nelze otevřít soubor %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Nelze otevřít popisovaÄ souboru %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Nelze vytvořit podproces IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Nezdařilo se spustit kompresor "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "Ätení, stále mám k pÅ™eÄtení %llu, ale už nic nezbývá"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "zápis, stále mám %llu k zápisu, ale nejde to"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Problém při zavírání souboru %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problém při přejmenování souboru %s na %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Problém při odstraňování souboru %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problém při synchronizování souboru"
@@ -2737,12 +2692,12 @@ msgstr "Nelze otevřít stavový soubor %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Nelze zapsat doÄasný stavový soubor %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Nelze zpracovat soubor %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Nelze zpracovat soubor %s (2)"
@@ -2817,7 +2772,7 @@ msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2826,12 +2781,12 @@ msgstr ""
"Nelze spustit okamžitou konfiguraci balíku „%s“. Podrobnosti naleznete v man "
"5 apt.conf v Äásti APT::Immediate-Configure. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "Nelze nastavit „%s“."
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2853,7 +2808,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:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2861,18 +2816,10 @@ msgstr ""
"Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno "
"podrženými balíky."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Nelze opravit problémy, některé balíky držíte v porouchaném stavu."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Některé indexové soubory se nepodařilo stáhnout. Jsou ignorovány, nebo jsou "
-"použity starší verze."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2915,12 +2862,12 @@ msgstr "Metoda %s nebyla spuštěna správně"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Vložte prosím disk nazvaný „%s“ do mechaniky „%s“ a stiskněte enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "BalíÄkovací systém „%s“ není podporován"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Nebylo možno urÄit vhodný typ balíÄkovacího systému"
@@ -2955,17 +2902,17 @@ msgstr ""
"Hodnota „%s“ není v APT::Default-Release platná, protože toto vydání není "
"dostupné v sources.list"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Neplatný záznam v souboru preferencí %s, chybí hlaviÄka Package"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Nerozumím vypíchnutí typu %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Pro vypíchnutí nebyla zadána žádná (nebo nulová) priorita"
@@ -3032,16 +2979,20 @@ msgstr "Chyba IO při ukládání zdrojové cache"
msgid "rename failed, %s (%s -> %s)."
msgstr "přejmenování selhalo, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Neshoda MD5 souÄtů"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Neshoda kontrolních souÄtů"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Velikosti nesouhlasí"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Neplatná operace %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3050,16 +3001,16 @@ msgstr ""
"V souboru Release nelze najít oÄekávanou položku „%s“ (chybný sources.list "
"nebo porušený soubor)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "V souboru Release nelze najít kontrolní souÄet „%s“"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3068,12 +3019,12 @@ msgstr ""
"Soubor Release pro %s již expiroval (neplatný od %s). Aktualizace z tohoto "
"repositáře se nepoužijí."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Konfliktní distribuce: %s (oÄekáváno %s, obdrženo %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3083,12 +3034,12 @@ msgstr ""
"se použijí předchozí indexové soubory. Chyba GPG: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Chyba GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3097,32 +3048,24 @@ msgstr ""
"Nebylo možné nalézt soubor s balíkem %s. To by mohlo znamenat, že tento "
"balík je tÅ™eba opravit ruÄnÄ› (kvůli chybÄ›jící architektuÅ™e)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"Nebylo možné nalézt soubor s balíkem %s. Asi budete muset tento balík "
-"opravit ruÄnÄ›."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "Nelze najít zdroj pro stažení verze „%s“ balíku „%s“"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, 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:1879
-msgid "Size mismatch"
-msgstr "Velikosti nesouhlasí"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Nelze zpracovat Release soubor %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Release soubor %s neobsahuje žádné sekce"
@@ -3267,32 +3210,32 @@ msgstr "Nelze najít autentizaÄní záznam pro: %s"
msgid "Hash mismatch for: %s"
msgstr "Neshoda kontrolních souÄtů pro: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Vydání „%s“ pro „%s“ nebylo nalezeno"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Verze „%s“ pro „%s“ nebyla nalezena"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Nelze najít úlohu „%s“"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "Nelze vybrat verze balíku „%s“, protože je ÄistÄ› virtuální"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3301,17 +3244,17 @@ msgstr ""
"Nelze vybrat nainstalovanou ani kandidátskou verzi balíku „%s“, protože "
"žádné takové verze nemá"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr "Nelze vybrat nejnovÄ›jší verzi balíku „%s“, protože je ÄistÄ› virtuální"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr "Nelze vybrat kandidátskou verzi balíku %s, protože žádnou nemá"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr "Nelze vybrat nainstalované verze balíku %s, protože není nainstalován"
@@ -3336,110 +3279,132 @@ msgstr "Externí řešitel selhal, aniž by zanechal rozumnou chybovou hlášku"
msgid "Execute external solver"
msgstr "Spuštění externího řešitele"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Spouštím dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Některé indexové soubory se nepodařilo stáhnout. Jsou ignorovány, nebo jsou "
+"použity starší verze."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Instaluji %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Nastavuji %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Odstraňuji %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "Kompletně odstraňuji %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "ZnaÄím si zmizení %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "SpouÅ¡tím poinstalaÄní spouÅ¡tÄ›Ä %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Adresář „%s“ chybí"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Nelze otevřít soubor „%s“"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Připravuji %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Rozbaluji %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Připravuji nastavení %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Nainstalován %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Připravuji odstranění %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Odstraněn %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Připravuji úplné odstranění %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Kompletně odstraněn %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-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:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Nelze zapsat do %s"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Spouštím dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "Operace byla pÅ™eruÅ¡ena dříve, než mohla skonÄit"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
"Žádné apport hlášení nebylo vytvořeno, protože již byl dosažen MaxReports"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "problémy se závislostmi - ponechávám nezkonfigurované"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3447,7 +3412,7 @@ msgstr ""
"Žádné apport hlášení nebylo vytvoÅ™eno, protože chybová hláška naznaÄuje, že "
"se jedná o chybu způsobenou předchozí chybou."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3455,7 +3420,7 @@ msgstr ""
"Žádné apport hlášení nebylo vytvoÅ™eno, protože chybová hláška naznaÄuje, že "
"je chyba způsobena zcela zaplněným diskem."
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3463,7 +3428,16 @@ msgstr ""
"Žádné apport hlášení nebylo vytvoÅ™eno, protože chybová hláška naznaÄuje, že "
"je chyba způsobena zcela zaplněnou pamětí."
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Žádné apport hlášení nebylo vytvoÅ™eno, protože chybová hláška naznaÄuje, že "
+"je chyba způsobena zcela zaplněným diskem."
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3494,6 +3468,92 @@ msgstr "dpkg byl pÅ™eruÅ¡en, pro nápravu problému musíte ruÄnÄ› spustit „%
msgid "Not locked"
msgstr "Není uzamÄen"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Pozn: vybírám „%s“ pro úlohu „%s“\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Pozn: vybírám „%s“ pro regulární výraz „%s“\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Balík %s je virtuální balík poskytovaný:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Není kandidátská verze]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Měli byste explicitně vybrat jeden k instalaci."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Balík %s není dostupný, ale jiný balík se na něj odkazuje.\n"
+#~ "To může znamenat že balík chybí, byl zastarán, nebo je dostupný\n"
+#~ "pouze z jiného zdroje\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Nicméně následující balíky jej nahrazují:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Balík „%s“ nemá kandidáta pro instalaci"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Virtuální balíky jako „%s“ nemohou být odstraněny\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Balík „%s“ není nainstalován, nelze tedy odstranit. Mysleli jste „%s“?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Balík „%s“ není nainstalován, nelze tedy odstranit\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Pozn: Vybírám „%s“ místo „%s“\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "Přeskakuji %s, protože je již nainstalován.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Přeskakuji %s, protože není nainstalován a vyžadovány jsou pouze "
+#~ "aktualizace.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "Přeinstalace %s není možná, protože nelze stáhnout.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s je již nejnovější verze.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Vybraná verze „%s“ (%s) pro „%s“\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Vybraná verze „%s“ (%s) pro „%s“ kvůli „%s“\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Ignoruje se nedostupné vydání „%s“ balíku „%s“"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "Stahuje se %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "Toto není platný DEB archiv, neobsahuje Äást „%s“, „%s“ ani „%s“"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Neshoda MD5 souÄtů"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Nebylo možné nalézt soubor s balíkem %s. Asi budete muset tento balík "
+#~ "opravit ruÄnÄ›."
+
+#~ 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"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "Soubor %s nezaÄíná podpisem"
diff --git a/po/cy.po b/po/cy.po
index 6897c5f8b..97854b73f 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: APT\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2005-06-06 13:46+0100\n"
"Last-Translator: Dafydd Harries <daf@muse.19inch.net>\n"
"Language-Team: Welsh <cy@pengwyn.linux.org.uk>\n"
@@ -15,171 +15,173 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Mae gan y pecyn %s fersiwn %s ddibyniaeth heb ei gwrdd:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
#, fuzzy
msgid "Total package names: "
msgstr "Cyfanswm Enwau Pecynnau : "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "Cyfanswm Enwau Pecynnau : "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
#, fuzzy
msgid " Normal packages: "
msgstr " Pecynnau Normal: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
#, fuzzy
msgid " Pure virtual packages: "
msgstr " Pecynnau Cwbl Rhithwir: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
#, fuzzy
msgid " Single virtual packages: "
msgstr " Pecynnau Rhithwir Sengl: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
#, fuzzy
msgid " Mixed virtual packages: "
msgstr " Pecynnau Rhithwir Cymysg: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Ar Goll: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
#, fuzzy
msgid "Total distinct versions: "
msgstr "Cyfanswm Fersiynau Gwahanol: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
#, fuzzy
msgid "Total distinct descriptions: "
msgstr "Cyfanswm Fersiynau Gwahanol: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
#, fuzzy
msgid "Total dependencies: "
msgstr "Cyfanswm Dibyniaethau: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
#, fuzzy
msgid "Total ver/file relations: "
msgstr "Cyfanswm perthyniadau fersiwn/ffeil: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
#, fuzzy
msgid "Total Desc/File relations: "
msgstr "Cyfanswm perthyniadau fersiwn/ffeil: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
#, fuzzy
msgid "Total Provides mappings: "
msgstr "Cyfanswm Mapiau Darpariath: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
#, fuzzy
msgid "Total globbed strings: "
msgstr "Cyfanswm Llinynau Glob: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
#, fuzzy
msgid "Total dependency version space: "
msgstr "Cyfanswm gofod Fersiwn Dibyniaeth: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
#, fuzzy
msgid "Total slack space: "
msgstr "Cyfanswm gofod Slac: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
#, fuzzy
msgid "Total space accounted for: "
msgstr "Cyfanswm Gofod Cyfrifwyd: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Nid yw'r ffeil pecyn %s yn gydamseredig."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Canfuwyd dim pecyn"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "Rhaid i chi ddarparu un patrwm yn union"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Ni ellir lleoli'r pecyn %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
#, fuzzy
msgid "Package files:"
msgstr "Ffeiliau Pecynnau:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Nid yw'r storfa yn gydamserol, ni ellir croesgyfeirio ffeil pecym"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
#, fuzzy
msgid "Pinned packages:"
msgstr "Pecynnau wedi eu Pinio:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(heb ganfod)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Wedi Sefydlu: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Ymgeisydd: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(dim)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
#, fuzzy
msgid " Package pin: "
msgstr " Pin Pecyn: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
#, fuzzy
msgid " Version table:"
msgstr " Tabl Fersiynnau:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, fuzzy, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s ar gyfer %s %s wedi ei grynhow ar %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -253,18 +255,18 @@ msgstr ""
"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
#, fuzzy
msgid "Please insert a Disc in the drive and press enter"
msgstr ""
@@ -272,20 +274,20 @@ msgstr ""
" '%s'\n"
"yn y gyrriant '%s' a gwasgwch Enter\n"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Methwyd ailenwi %s at %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr ""
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Nid yw ymresymiadau mewn parau"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
#, fuzzy
msgid ""
"Usage: apt-config [options] command\n"
@@ -314,613 +316,63 @@ msgstr ""
" -c=? Darllen y ffeil cyfluniad\n"
" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "I"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Gwall crynhoi patrwm - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "ond mae %s wedi ei sefydlu"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "ond mae %s yn mynd i gael ei sefydlu"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "ond ni ellir ei sefydlu"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "ond mae'n becyn rhithwir"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "ond nid yw wedi ei sefydlu"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "ond nid yw'n mynd i gael ei sefydlu"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " neu"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Caiff y pecynnau canlynol eu TYNNU:"
-
-#: cmdline/apt-get.cc:475
-#, fuzzy
-msgid "The following packages have been kept back:"
-msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl"
-
-#: cmdline/apt-get.cc:496
-#, fuzzy
-msgid "The following packages will be upgraded:"
-msgstr "Caiff y pecynnau canlynol eu uwchraddio"
-
-#: cmdline/apt-get.cc:517
-#, fuzzy
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Caiff y pecynnau canlynol eu ISRADDIO"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (oherwydd %s) "
-
-#: cmdline/apt-get.cc:600
-#, fuzzy
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"RHYBUDD: Caiff y pecynnau hanfodol canlynol eu tynnu\n"
-"NI DDYLIR gwneud hyn os nad ydych chi'n gwybod yn union beth rydych chi'n\n"
-"ei wneud!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu wedi ailsefydlu, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu wedi eu israddio, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Sylwer, yn dewis %s ar gyfer y patrwm '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Sylwer, yn dewis %s ar gyfer y patrwm '%s'\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Sefydliwyd]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "Fersiynau Posib"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Dylech ddewis un yn benodol i'w sefydlu."
-
-# FIXME: punctuation
-#: cmdline/apt-get.cc:711
-#, fuzzy, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Does dim fersiwn gan y pecyn %s, ond mae'n bodoli yn y cronfa data.\n"
-"Mae hyn fel arfer yn golygu y crybwyllwyd y pecyn mewn dibyniaeth ond heb\n"
-"gael ei uwchlwytho, cafodd ei ddarfod neu nid yw ar gael drwy gynnwys y\n"
-"ffeil sources.list.\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Fodd bynnag, mae'r pecynnau canlynol yn cymryd ei le:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Does dim ymgeisydd sefydlu gan y pecyn %s"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Sylwer, yn dewis %s yn hytrach na %s\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, fuzzy, c-format
-msgid "%s set to manually installed.\n"
-msgstr "ond mae %s yn mynd i gael ei sefydlu"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Yn cywiro dibyniaethau..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " wedi methu."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Ni ellir cywiro dibyniaethau"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Ni ellir bychanu y set uwchraddio"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Wedi Gorffen"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f."
-
-#: cmdline/apt-get.cc:1097
-#, fuzzy
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr ""
-
-#: cmdline/apt-get.cc:1110
-#, fuzzy
-msgid "Some packages could not be authenticated"
-msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Mae problemau a defnyddwyd -y heb --force-yes"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-
-#: cmdline/apt-get.cc:1169
-#, 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:1180
-#, fuzzy
-msgid "Internal error, Ordering didn't finish"
-msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Mae angen cyrchu %sB o archifau.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, fuzzy, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Ar ôl dadbacio defnyddir %sB o ofod disg ychwanegol.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, 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:1270
-#, 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:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Penodwyd Syml Yn Unig ond nid yw hyn yn weithred syml."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Ie, gwna fel rydw i'n dweud!"
-
-#: cmdline/apt-get.cc:1292
-#, fuzzy, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Rydych ar fin gwneud rhywbeth a all fod yn niweidiol\n"
-"Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n"
-" ?]"
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Erthylu."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Ydych chi eisiau mynd ymlaen?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Methwyd cyrchu %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Methodd rhai ffeiliau lawrlwytho"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu "
-"geidio defnyddio --fix-missing?"
-
-#: cmdline/apt-get.cc:1414
-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:1419
-msgid "Unable to correct missing packages."
-msgstr "Ni ellir cywiro pecynnau ar goll."
-
-#: cmdline/apt-get.cc:1420
-#, fuzzy
-msgid "Aborting install."
-msgstr "Yn Erthylu'r Sefydliad."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, fuzzy, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:"
-
-#: cmdline/apt-get.cc:1853
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
-msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
-msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1885
-#, fuzzy
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Dibyniaethau heb eu bodloni. Ceisiwch rhedeg 'apt-get -f install' efo dim "
-"pecyn (neu penodwch ddatrys)"
-
-# FIXME: needs commas
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Methwyd sefydlu rhai pecynnau. Gall hyn olygu eich bod chi wedi gofyn\n"
-"am sefyllfa amhosib neu, os ydych chi'n defnyddio'r dosraniad\n"
-"ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n"
-"heb gael eu symud allan o Incoming."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Pecynnau wedi torri"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Pecynnau a awgrymmir:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Pecynnau a argymhellir:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Methwyd canfod pecyn %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "ond mae %s yn mynd i gael ei sefydlu"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "ond mae %s yn mynd i gael ei sefydlu"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-#, fuzzy
-msgid "Calculating upgrade... "
-msgstr "Yn Cyfrifo'r Uwchraddiad... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Methwyd"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Wedi Gorffen"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
#, fuzzy
msgid "Internal error, problem resolver broke stuff"
msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -928,86 +380,96 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, 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:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, 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:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Does dim digon o le rhydd yn %s gennych"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Rhaid cyrchu %sB/%sB o archifau ffynhonell.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, fuzzy, c-format
msgid "Fetch source %s\n"
msgstr "Cyrchu Ffynhonell %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Methwyd cyrchu rhai archifau."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Methodd y gorchymyn dadbacio '%s'.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr ""
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Methodd y gorchymyn adeiladu '%s'.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Methodd proses plentyn"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "Nid oes dibyniaethau adeiladu gan %s.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1016,7 +478,7 @@ msgstr ""
"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn "
"%s"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1025,14 +487,14 @@ msgstr ""
"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn "
"%s"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1041,7 +503,7 @@ msgstr ""
"Ni ellir bodloni'r dibyniaeth %s ar gyfer %s oherwydd does dim fersiwn sydd "
"ar gael o'r pecyn %s yn gallu bodloni'r gofynion ferswin"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1050,32 +512,32 @@ msgstr ""
"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn "
"%s"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Methwyd bodloni dibyniaeth %s am %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Methwyd prosesu dibyniaethau adeiladu"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Yn cysylltu i %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
#, fuzzy
msgid "Supported modules:"
msgstr "Modylau a Gynhelir:"
# FIXME: split
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1162,98 +624,53 @@ msgstr ""
"\n"
" Mae gan yr APT hwn bŵerau buwch hudol.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Presennol "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Cyrchu:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Anwybyddu "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Gwall "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Cyrchwyd %sB yn %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Gweithio]"
-
-#: cmdline/acqprogress.cc:286
-#, fuzzy, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n"
-" '%s'\n"
-"yn y gyrriant '%s' a gwasgwch Enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "ond nid yw wedi ei sefydlu"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "ond mae %s yn mynd i gael ei sefydlu"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "ond mae %s yn mynd i gael ei sefydlu"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, fuzzy, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Arhoswyd am %s ond nid oedd e yna"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "ond mae %s yn mynd i gael ei sefydlu"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Methwyd agor %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1275,6 +692,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1377,8 +811,8 @@ msgstr "Goramser cysylltu"
msgid "Server closed the connection"
msgstr "Caeodd y gweinydd y cysylltiad"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Gwall darllen"
@@ -1391,8 +825,8 @@ msgid "Protocol corruption"
msgstr "Llygr protocol"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Gwall ysgrifennu"
@@ -1404,6 +838,10 @@ msgstr "Methwyd creu soced"
msgid "Could not connect data socket, connection timed out"
msgstr "Methwyd cysylltu soced data, goramserodd y cyslltiad"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Methwyd"
+
#: methods/ftp.cc:714
#, fuzzy
msgid "Could not connect passive socket."
@@ -1448,7 +886,7 @@ msgstr "Goramserodd cysylltiad y soced data"
msgid "Unable to accept connection"
msgstr "Methwyd derbyn cysylltiad"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problem wrth stwnshio ffeil"
@@ -1578,87 +1016,608 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Gwall wrth ysgrifennu at y ffeil"
+
+#: methods/http.cc:533
+#, 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:535
+msgid "Error reading from server"
+msgstr "Gwall wrth ddarllen o'r gweinydd"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Gwall wrth ysgrifennu at ffeil"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Methwyd dewis"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Goramserodd y cysylltiad"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Gwall wrth ysgrifennu i ffeil allbwn"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Yn aros am benawdau"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Llinell pennawd gwael"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
#, fuzzy
msgid "The HTTP server sent an invalid reply header"
msgstr "Danfonodd y gweinydd HTTP bennawd ateb annilys"
-#: methods/http.cc:606
+#: methods/server.cc:176
#, fuzzy
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "Danfonodd y gweinydd HTTP bennawd Content-Length annilys"
-#: methods/http.cc:621
+#: methods/server.cc:199
#, fuzzy
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "Danfonodd y gweinydd HTTP bennawd Content-Range annilys"
-#: methods/http.cc:623
+#: methods/server.cc:201
#, fuzzy
msgid "This HTTP server has broken range support"
msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Fformat dyddiad anhysbys"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Methwyd dewis"
+#: methods/server.cc:490
+#, fuzzy
+msgid "Bad header data"
+msgstr "Data pennawd gwael"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Goramserodd y cysylltiad"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Methodd y cysylltiad"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Gwall wrth ysgrifennu i ffeil allbwn"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Gwall mewnol"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Gwall wrth ysgrifennu at ffeil"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Gwall wrth ysgrifennu at y ffeil"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
-#: methods/http.cc:927
+#: apt-private/private-install.cc:102
#, fuzzy
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Gwall wrth ddarllen o'r gweinydd: caeodd yr ochr pell y cysylltiad"
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Rhaid tynnu pecynnau on mae Tynnu wedi ei analluogi."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Gwall wrth ddarllen o'r gweinydd"
+#: apt-private/private-install.cc:121
+#, fuzzy
+msgid "Internal error, Ordering didn't finish"
+msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad"
+
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Mae angen cyrchu %sB o archifau.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Ar ôl dadbacio defnyddir %sB o ofod disg ychwanegol.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Ar ôl dadbactio caiff %sB o ofod disg ei rhyddhau.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Does dim digon o le rhydd gennych yn %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Mae problemau a defnyddwyd -y heb --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Penodwyd Syml Yn Unig ond nid yw hyn yn weithred syml."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Ie, gwna fel rydw i'n dweud!"
+
+#: apt-private/private-install.cc:233
+#, fuzzy, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Rydych ar fin gwneud rhywbeth a all fod yn niweidiol\n"
+"Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n"
+" ?]"
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Erthylu."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Ydych chi eisiau mynd ymlaen?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Methodd rhai ffeiliau lawrlwytho"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu "
+"geidio defnyddio --fix-missing?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "Ni chynhelir cyfnewid cyfrwng efo --fix-missing ar hyn o bryd"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Ni ellir cywiro pecynnau ar goll."
-#: methods/http.cc:1197
+#: apt-private/private-install.cc:341
#, fuzzy
-msgid "Bad header data"
-msgstr "Data pennawd gwael"
+msgid "Aborting install."
+msgstr "Yn Erthylu'r Sefydliad."
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Methodd y cysylltiad"
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Gwall mewnol"
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:"
+
+#: apt-private/private-install.cc:517
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
+msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
+msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Efallai hoffech rhedeg 'apt-get -f install' er mwyn cywiro'r rhain:"
+
+# FIXME
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Dibyniaethau heb eu bodloni. Ceisiwch rhedeg 'apt-get -f install' efo dim "
+"pecyn (neu penodwch ddatrys)"
+
+# FIXME: needs commas
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Methwyd sefydlu rhai pecynnau. Gall hyn olygu eich bod chi wedi gofyn\n"
+"am sefyllfa amhosib neu, os ydych chi'n defnyddio'r dosraniad\n"
+"ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n"
+"heb gael eu symud allan o Incoming."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Pecynnau wedi torri"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Pecynnau a awgrymmir:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Pecynnau a argymhellir:"
+
+#: apt-private/private-download.cc:32
+#, fuzzy
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr ""
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+#, fuzzy
+msgid "Some packages could not be authenticated"
+msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr ""
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Methwyd cyrchu %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Sefydliwyd]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Sefydliwyd]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Sefydliwyd]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "ond mae %s wedi ei sefydlu"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "ond mae %s yn mynd i gael ei sefydlu"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "ond ni ellir ei sefydlu"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "ond mae'n becyn rhithwir"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "ond nid yw wedi ei sefydlu"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "ond nid yw'n mynd i gael ei sefydlu"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " neu"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Caiff y pecynnau canlynol eu TYNNU:"
+
+#: apt-private/private-output.cc:500
+#, fuzzy
+msgid "The following packages have been kept back:"
+msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl"
+
+#: apt-private/private-output.cc:521
+#, fuzzy
+msgid "The following packages will be upgraded:"
+msgstr "Caiff y pecynnau canlynol eu uwchraddio"
+
+#: apt-private/private-output.cc:542
+#, fuzzy
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Caiff y pecynnau canlynol eu ISRADDIO"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (oherwydd %s) "
+
+#: apt-private/private-output.cc:625
+#, fuzzy
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"RHYBUDD: Caiff y pecynnau hanfodol canlynol eu tynnu\n"
+"NI DDYLIR gwneud hyn os nad ydych chi'n gwybod yn union beth rydych chi'n\n"
+"ei wneud!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu wedi ailsefydlu, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu wedi eu israddio, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "I"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Gwall crynhoi patrwm - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Yn cywiro dibyniaethau..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " wedi methu."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Ni ellir cywiro dibyniaethau"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Ni ellir bychanu y set uwchraddio"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Wedi Gorffen"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Efallai hoffech rhedeg 'apt-get -f install' er mwyn cywiro'r rhain."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau"
+
+#: apt-private/private-upgrade.cc:18
+#, fuzzy
+msgid "Calculating upgrade... "
+msgstr "Yn Cyfrifo'r Uwchraddiad... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Wedi Gorffen"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Methwyd ailenwi %s at %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Presennol "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Cyrchu:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Anwybyddu "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Gwall "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Cyrchwyd %sB yn %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Gweithio]"
+
+#: apt-private/acqprogress.cc:291
+#, fuzzy, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n"
+" '%s'\n"
+"yn y gyrriant '%s' a gwasgwch Enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Ni ellir darllen %s"
@@ -1717,34 +1676,34 @@ msgstr "Methwyd creu pibell cyfathrebu at isbroses"
msgid "Connection closed prematurely"
msgstr "Caewyd y cysylltiad yn gynnar"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Rhagosodiad gwael!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Gwasgwch Enter er mwyn mynd ymlaen."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr ""
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Digwyddod rhau gwallau wrth dadbacio. Rydw i'n mynd i gyflunio'r"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "pecynnau a gafwyd eu sefydlu. Gall hyn achosi gwallau dyblyg neu"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "wallau a achosir gan ddibyniaethau coll. Mae hyn yn iawn, dim ond y"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1999,36 +1958,36 @@ msgstr "Methwyd darllen y cyswllt %s"
msgid "Failed to unlink %s"
msgstr "Methwyd datgysylltu %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Methwyd cysylltu %s at %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Tarwyd y terfyn cyswllt %sB.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Doedd dim maes pecyn gan yr archif"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " Does dim cofnod gwrthwneud gan %s\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " Cynaliwr %s yw %s nid %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, fuzzy, c-format
msgid " %s has no source override entry\n"
msgstr " Does dim cofnod gwrthwneud gan %s\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, fuzzy, c-format
msgid " %s has no binary override entry either\n"
msgstr " Does dim cofnod gwrthwneud gan %s\n"
@@ -2109,7 +2068,7 @@ msgid "Failed to rename %s to %s"
msgstr "Methwyd ailenwi %s at %s"
# FIXME: "debian"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2180,7 +2139,7 @@ msgstr "Archif llygredig"
msgid "Tar checksum failed, archive corrupted"
msgstr "Methodd swm gwirio Tar, archif llygredig"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Math pennawd TAR anhysbys %u, aelod %s"
@@ -2308,22 +2267,17 @@ msgid "Unable to stat %s"
msgstr "Ni ellir gwneud stat() o %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Nid yw hyn yn archif DEB dilys, aelod '%s' ar goll"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, fuzzy, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "Nid yw hyn yn archif DEB dilys, aelod '%s' ar goll"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, fuzzy, c-format
msgid "Internal error, could not locate member %s"
msgstr "Gwall Mewnol, methwyd lleoli aelod %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
#, fuzzy
msgid "Unparsable control file"
msgstr "Ffeil rheoli ni ellir ei ramadegu"
@@ -2383,88 +2337,88 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Ni chanfuwyd y dewis %s"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Talgryniad math anhysbys: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Yn agor y ffeil cyfluniad %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, fuzzy, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Gwall cystrawen %s:%u: Tag wedi camffurfio"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Gwall cystrawen %s:%u: Cynhwyswyd o fan hyn"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Gwall cystrawen %s:%u: Cyfarwyddyd ni gynhelir '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ddiwedd y ffeil"
@@ -2490,49 +2444,49 @@ msgid "%c%s... %u%%"
msgstr "%c%s... Wedi Gorffen"
# FIXME
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Ni adnabyddir yr opsiwn llinell orchymyn '%c' (o %s)."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Ni adnabyddir yr opsiwn llinell orchymyn %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Nid yw'r opsiwn llinell orchymyn %s yn fŵleaidd"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Mae'r opsiwn %s yn mynnu ymresymiad."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Opsiwn %s: Rhaid i benodiad eitem cyfluniad gael =<gwerth>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Mae'r opsiwn %s yn mynnu ymresymiad cyfanrif, nid '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Opsiwn '%s' yn rhy hir"
# FIXME: 'Sense'?
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Ni ddeallir %s, ceiswich ddefnyddio 'true' neu 'false'."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Gweithred annilys %s"
@@ -2546,118 +2500,118 @@ msgstr "Ni ellir gwneud stat() o'r pwynt clymu %s"
msgid "Failed to stat the cdrom"
msgstr "Methwyd gwneud stat() o'r CD-ROM"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "Gwall wrth gau'r ffeil"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Ddim yn cloi'r ffeil clo darllen-yn-unig %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Methwyd agor y ffeil clo %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Ddim yn cloi'r ffeil clo ar NFS %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Methwyd cael y clo %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Derbyniodd is-broses %s wall segmentu."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "Derbyniodd is-broses %s wall segmentu."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Gorffenodd is-broses %s yn annisgwyl"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Methwyd agor ffeil %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "Methwyd agor pibell ar gyfer %s"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Methwyd creu isbroses IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Methwyd gweithredu cywasgydd "
# FIXME
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "o hyd %lu i ddarllen ond dim ar ôl"
# FIXME
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "o hyd %lu i ysgrifennu ond methwyd"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "Gwall wrth gau'r ffeil"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Gwall wrth gyfamseru'r ffeil"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "Gwall wrth dadgysylltu'r ffeil"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Gwall wrth gyfamseru'r ffeil"
@@ -2781,12 +2735,12 @@ msgid "Failed to write temporary StateFile %s"
msgstr "Methwyd ysgrifennu ffeil %s"
# FIXME: number?
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Ni ellir gramadegu ffeil becynnau %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Ni ellir gramadegu ffeil becynnau %s (2)"
@@ -2866,20 +2820,20 @@ msgstr "Llinell camffurfiol %u yn y rhestr ffynhonell %s (math)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Methwyd agor ffeil %s"
# FIXME: %s may have an arbirrary length
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2903,7 +2857,7 @@ msgstr ""
"Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar "
"ei gyfer."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2911,20 +2865,11 @@ msgstr ""
"Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi "
"ei achosi gan pecynnau wedi eu dal."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
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:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Methwodd rhai ffeiliau mynegai lawrlwytho: maent wedi eu anwybyddu, neu hen "
-"rai eu defnyddio yn lle."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2970,12 +2915,12 @@ msgstr ""
" '%s'\n"
"yn y gyrriant '%s' a gwasgwch Enter\n"
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Ni chynhelir y system pecynnu '%s'"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
#, fuzzy
msgid "Unable to determine a suitable packaging system type"
msgstr "Ni ellir canfod math system addas"
@@ -3010,18 +2955,18 @@ msgid ""
msgstr ""
# FIXME: literal
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Cofnod annilys yn y ffeil hoffterau, dim pennawd 'Package'"
# FIXME: tense
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Methwyd daeall y math pin %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin"
@@ -3092,17 +3037,21 @@ msgstr "Gwall M/A wrth gadw'r storfa ffynhonell"
msgid "rename failed, %s (%s -> %s)."
msgstr "methwyd ailenwi, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Camgyfatebiaeth swm MD5"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
#, fuzzy
msgid "Hash Sum mismatch"
msgstr "Camgyfatebiaeth swm MD5"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Camgyfatebiaeth maint"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Gweithred annilys %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3110,28 +3059,28 @@ msgid ""
msgstr ""
# FIXME: number?
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Ni ellir gramadegu ffeil becynnau %s (1)"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3139,13 +3088,13 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
# FIXME: case
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3154,33 +3103,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. (Oherwydd pensaerniaeth coll.)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
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:1781
+#: apt-pkg/acquire-item.cc:1829
#, 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:1879
-msgid "Size mismatch"
-msgstr "Camgyfatebiaeth maint"
-
# FIXME: number?
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "Ni ellir gramadegu ffeil becynnau %s (1)"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "Sylwer, yn dewis %s yn hytrach na %s\n"
@@ -3322,49 +3263,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "Camgyfatebiaeth swm MD5"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Ni chanfuwyd y rhyddhad '%s' o '%s'"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Ni chanfuwyd y fersiwn '%s' o '%s' "
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "Methwyd canfod pecyn %s"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Methwyd canfod pecyn %s"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3389,127 +3330,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Methwodd rhai ffeiliau mynegai lawrlwytho: maent wedi eu anwybyddu, neu hen "
+"rai eu defnyddio yn lle."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, fuzzy, c-format
msgid "Installing %s"
msgstr " Wedi Sefydlu: "
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, fuzzy, c-format
msgid "Configuring %s"
msgstr "Yn cysylltu i %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Yn agor %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "Methwyd dileu %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr ""
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, fuzzy, c-format
msgid "Directory '%s' missing"
msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll."
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "Methwyd agor ffeil %s"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, fuzzy, c-format
msgid "Preparing %s"
msgstr "Yn agor %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, fuzzy, c-format
msgid "Unpacking %s"
msgstr "Yn agor %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, fuzzy, c-format
msgid "Preparing to configure %s"
msgstr "Yn agor y ffeil cyfluniad %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, fuzzy, c-format
msgid "Installed %s"
msgstr " Wedi Sefydlu: "
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, fuzzy, c-format
msgid "Removed %s"
msgstr "Argymell"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, fuzzy, c-format
msgid "Preparing to completely remove %s"
msgstr "Yn agor y ffeil cyfluniad %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, fuzzy, c-format
msgid "Completely removed %s"
msgstr "Methwyd dileu %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Ni ellir ysgrifennu i %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3539,6 +3509,93 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Sylwer, yn dewis %s ar gyfer y patrwm '%s'\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Sylwer, yn dewis %s ar gyfer y patrwm '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Mae'r pecyn %s yn becyn rhithwir a ddarparir gan:\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "Fersiynau Posib"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Dylech ddewis un yn benodol i'w sefydlu."
+
+# FIXME: punctuation
+#, fuzzy
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Does dim fersiwn gan y pecyn %s, ond mae'n bodoli yn y cronfa data.\n"
+#~ "Mae hyn fel arfer yn golygu y crybwyllwyd y pecyn mewn dibyniaeth ond "
+#~ "heb\n"
+#~ "gael ei uwchlwytho, cafodd ei ddarfod neu nid yw ar gael drwy gynnwys y\n"
+#~ "ffeil sources.list.\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Fodd bynnag, mae'r pecynnau canlynol yn cymryd ei le:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Does dim ymgeisydd sefydlu gan y pecyn %s"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n"
+
+#, fuzzy
+#~ 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"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Sylwer, yn dewis %s yn hytrach na %s\n"
+
+#~ 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"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "Nid yw ailsefydlu %s yn bosib, gan ni ellir ei lawrlwytho.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n"
+
+#, fuzzy
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "Nid yw hyn yn archif DEB dilys, aelod '%s' ar goll"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Camgyfatebiaeth swm MD5"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Methais i leoli ffeila r gyfer y pecyn %s. Fa all hyn olygu bod rhaid i "
+#~ "chi drwsio'r pecyn hyn a law."
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Yn agor y ffeil cyfluniad %s"
diff --git a/po/da.po b/po/da.po
index 3c65d2f4c..f3fcd1efd 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-07-03 23:51+0200\n"
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
"Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
@@ -20,153 +20,155 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Pakken %s version %s har en uopfyldt afhængighed:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Samlet antal pakkenavne: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Samlet antal pakkestrukturer: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Normale pakker: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Rene virtuelle pakker: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Enkelte virtuelle pakker: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Blandede virtuelle pakker: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Manglende: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Totale forskellige versioner: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Sammenlagt forskellige beskrivelser: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Sammenlagt afhængigheder: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Sammenlagt version/fil-relationer: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Sammenlagt version/fil-relationer: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Sammenlagt »Tilbyder«-markeringer: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Totalle søgemønsterstrenge: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Total afhængighedsversions-plads: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Total »Slack«-plads: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Total plads, der kan gøres rede for: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Pakkefilen %s er ude af trit."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Fandt ingen pakker"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Du skal angive mindst ét søgemønster"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
"Denne kommando er forældet. Brug venligst »apt-mark showauto« i stedet for."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Kunne ikke lokalisere pakken %s"
# Overskriften til apt-cache policy,
# forkorter "Package" væk. CH
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Pakkefiler:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Mellemlageret er ude af trit, kan ikke krydsreferere en pakkefil"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "»Pinned« pakker:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(ikke fundet)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Installeret: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Kandidat: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ingen)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Pakke-pin: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Versionstabel:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s for %s kompileret på %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -237,36 +239,36 @@ msgstr ""
"Se manualsiderne for apt-cache(8) og apt.conf(5) for flere oplysninger.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
"Angiv venligst et navn for denne disk, som f.eks. »Debian 5.0.3 Disk 1«"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Indsæt en disk i drevet og tryk retur"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Kunne ikke montere %s til %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Gentag processen for resten af cd'erne i dit sæt."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Parametre ikke angivet i par"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -294,556 +296,32 @@ msgstr ""
" -c=? Læs denne opsætningsfil\n"
" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[J/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[j/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "J"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Fejl ved tolkning af regulært udtryk - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Følgende pakker har uopfyldte afhængigheder:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "men %s er installeret"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "men %s forventes installeret"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "men den kan ikke installeres"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "men det er en virtuel pakke"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "men den er ikke installeret"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "men den bliver ikke installeret"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " eller"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Følgende NYE pakker vil blive installeret:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Følgende pakker vil blive AFINSTALLERET:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Følgende pakker er blevet holdt tilbage:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Følgende pakker vil blive opgraderet:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Følgende pakker vil blive NEDGRADERET:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Følgende tilbageholdte pakker vil blive ændret:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (grundet %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"ADVARSEL: Følgende essentielle pakker vil blive afinstalleret\n"
-"Dette bør IKKE ske medmindre du er helt klar over, hvad du laver!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu opgraderes, %lu nyinstalleres, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu geninstalleres, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu nedgraderes, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu afinstalleres og %lu opgraderes ikke.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Bemærk, vælger »%s« til opgave »%s«\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Bemærk, vælger »%s« for regulært udtryk »%s«\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Installeret]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Ingen kandidatversion]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Du bør eksplicit vælge en at installere."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Pakken %s har ingen tilgængelig version, men der refereres til den i en \n"
-"anden pakke. Det kan betyde at denne pakke blevet overflødiggjort eller \n"
-"kun kan hentes fra andre kilder\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Dog kan følgende pakker erstatte den:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Pakken »%s« har ingen installationskandidat"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Virtuelle pakker som »%s« kan ikke fjernes\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"Pakken »%s« er ikke installeret, så den afinstalleres ikke. Mente du »%s«?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, 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:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Bemærk, vælger »%s« fremfor »%s«\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"Overspringer %s, den er ikke installeret og der er kun forespurgt efter "
-"opgraderinger.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s er i forvejen den nyeste version.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s sat til manuelt installeret.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Valgte version »%s« (%s) for »%s«\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Valgte version »%s« (%s) for »%s« på grund af »%s«\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Retter afhængigheder ..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " mislykkedes."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Kunne ikke rette afhængigheder"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Kunne ikke minimere opgraderingssættet"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Færdig"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "Du kan muligvis rette dette ved at køre 'apt-get -f install'."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Uopfyldte afhængigheder. Prøv med -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ADVARSEL: Følgende pakkers autenticitet kunne ikke verificeres!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Autentifikationsadvarsel tilsidesat.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Installér disse pakker uden verifikation?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Nogle pakker kunne ikke autentificeres"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Intern fejl. InstallPackages blev kaldt med ødelagte pakker!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pakker skal afinstalleres, men Remove er deaktiveret."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Intern fejl. Sortering blev ikke fuldført"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "Mystisk.. Størrelserne passede ikke, skriv til apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "%sB/%sB skal hentes fra arkiverne.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "%sB skal hentes fra arkiverne.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Efter denne handling, vil %sB yderligere diskplads være brugt.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "Efter denne handling, vil %sB diskplads blive frigjort.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Kunne ikke bestemme ledig plads i %s"
-
-#: cmdline/apt-get.cc:1270
-#, 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:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "'Trivial Only' angivet, men dette er ikke en triviel handling."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Ja, gør som jeg siger!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Du er ved at gøre noget, der kan være skadeligt\n"
-"For at fortsætte, skal du skrive '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Afbryder."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Vil du fortsætte?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Kunne ikke hente %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Nedhentningen af filer mislykkedes"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Nedhentning afsluttet i 'hent-kun'-tilstand"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Kunne ikke hente nogle af arkiverne. Prøv evt. at køre 'apt-get update' "
-"eller prøv med --fix-missing."
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing og medieskift understøttes endnu ikke"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Kunne ikke rette manglende pakker."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Afbryder installationen."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Den følgende pakke forsvandt fra dit system, da\n"
-"alle filer er blevet overskrevet af andre pakker:"
-msgstr[1] ""
-"De følgende pakker forsvandt fra dit system, da\n"
-"alle filer er blevet overskrevet af andre pakker:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Bemærk: Dette sker automatisk og med vilje af dpkg."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Ignorer utilgængelig måludgivelse '%s' af pakke '%s'"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Vælger '%s' som kildepakke fremfor '%s'\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Ignorer utilgængelig version '%s' af pakke '%s'"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "'update'-kommandoen benytter ingen parametre"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, det lader til at AutoRemover smadrede noget, der virkelig ikke\n"
-"burde kunne ske. Indsend venligst en fejlrapport om apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Følgende oplysninger kan hjælpe dig med at klare situationen:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Intern fejl. AutoRemover ødelagde noget"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Følgende pakke blev installeret automatisk, og behøves ikke længere:"
-msgstr[1] ""
-"Følgende pakker blev installeret automatisk, og behøves ikke længere:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "Pakken %lu blev installeret automatisk, og behøves ikke længere.\n"
-msgstr[1] ""
-"Pakkerne %lu blev installeret automatisk, og behøves ikke længere.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Brug »apt-get autoremove« til at fjerne den."
-msgstr[1] "Brug »apt-get autoremove« til at fjerne dem."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Intern fejl, AllUpgrade ødelagde noget"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "Du kan muligvis rette det ved at køre »apt-get -f install«:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Uopfyldte afhængigheder. Prøv 'apt-get -f install' uden pakker (eller angiv "
-"en løsning)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Nogle pakker kunne ikke installeres. Det kan betyde at du har ønsket\n"
-"en umulig situation eller bruger den ustabile distribution, hvor enkelte\n"
-"pakker endnu ikke er lavet eller gjort tilgængelige."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Ødelagte pakker"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Følgende yderligere pakker vil blive installeret:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Foreslåede pakker:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Anbefalede pakker:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Kunne ikke finde pakken %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s sat til manuelt installeret.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s sat til automatisk installation.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -851,46 +329,24 @@ msgstr ""
"Denne kommando er forældet. Brug venligst »apt-mark auto« og »apt-mark "
"manual« i stedet for."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Beregner opgraderingen... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Mislykkedes"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Færdig"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Intern fejl. Problemløseren ødelagde noget"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Kunne ikke låse nedhentningsmappen"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "Kan ikke finde en kilde til at hente version »%s« for »%s«"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "Henter %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Kunne ikke finde kildetekstpakken for %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -899,7 +355,7 @@ msgstr ""
"BEMÆRK: Pakning af '%s' vedligeholdes i versionskontrolsystemet '%s' på:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -910,68 +366,78 @@ msgstr ""
"bzr branch %s\n"
"for at hente de seneste (muligvis ikke udgivet) opdateringer til pakken.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Overspringer allerede hentet fil '%s'\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Kunne ikke bestemme ledig plads i %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Du har ikke nok ledig plads i %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "%sB/%sB skal hentes fra kildetekst-arkiverne.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "%sB skal hentes fra kildetekst-arkiverne.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Henter kildetekst %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Nogle arkiver kunne ikke hentes."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Nedhentning afsluttet i 'hent-kun'-tilstand"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Udpakningskommandoen '%s' fejlede.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Opbygningskommandoen '%s' fejlede.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Barneprocessen fejlede"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr "Skal angive mindst én pakke at tjekke opbygningsafhængigheder for"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -980,17 +446,17 @@ msgstr ""
"Ingen arkitekturinformation tilgængelig for %s. Se apt.conf(5) APT::"
"Architectures for opsætning"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Kunne ikke hente oplysninger om opbygningsafhængigheder for %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s har ingen opbygningsafhængigheder.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -998,7 +464,7 @@ msgid ""
msgstr ""
"Afhængigheden %s for %s kan ikke opfyldes, da %s ikke er tilladt på '%s'"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1006,14 +472,14 @@ msgid ""
msgstr ""
"Afhængigheden %s for %s kan ikke opfyldes, da pakken %s ikke blev fundet"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"Kunne ikke opfylde %s-afhængigheden for %s: Den installerede pakke %s er for "
"ny"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1022,7 +488,7 @@ msgstr ""
"Afhængigheden %s for %s kan ikke opfyldes, da ingen af de tilgængelige "
"kandidater for pakken %s kan tilfredsstille versionskravene"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1031,30 +497,30 @@ msgstr ""
"%s-afhængigheden for %s kan ikke opfyldes, da pakken %s ikke har en "
"kandidatversion"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Kunne ikke opfylde %s-afhængigheden for %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Opbygningsafhængigheden for %s kunne ikke opfyldes."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Kunne ikke behandler opbygningsafhængighederne"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Ændringslog for %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Understøttede moduler:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1142,102 +608,53 @@ msgstr ""
"for flere oplysninger og tilvalg.\n"
" Denne APT har »Super Cow Powers«.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"BEMÆRK: Dette er kun en simulering!\n"
-" apt-get kræver rootprivilegier for reel kørsel.\n"
-" Husk også at låsning er deaktiveret,\n"
-" så stol ikke på relevansen for den reelle aktuelle situation!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Havde "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Henter:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ignorerer "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Fejl "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Hentede %sB på %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Arbejder]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Medieskift: Indsæt disken med navnet\n"
-" '%s'\n"
-"i drevet '%s' og tryk retur\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s kan ikke markeres, da den ikke er installeret.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s var allerede sat til manuelt installeret.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s var allerede sat til automatisk installeret.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s var allerede sat i bero.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s var allerede ikke i bero.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Ventede på %s, men den var der ikke"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s sat i bero.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "Afbrød i bero for %s.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "Kørsel af dpkg fejlede. Er du root (administrator)?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1279,6 +696,23 @@ msgstr ""
"tmp\n"
"Se manualsiderne apt-mark(8) og apt.conf(5) for yderligere information."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1376,8 +810,8 @@ msgstr "Tidsudløb på forbindelsen"
msgid "Server closed the connection"
msgstr "Serveren lukkede forbindelsen"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Læsefejl"
@@ -1390,8 +824,8 @@ msgid "Protocol corruption"
msgstr "Protokolfejl"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Skrivefejl"
@@ -1403,6 +837,10 @@ msgstr "Kunne ikke oprette sokkel"
msgid "Could not connect data socket, connection timed out"
msgstr "Kunne ikke forbinde datasokkel, tidsudløb på forbindelsen"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Mislykkedes"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Kunne ikke forbinde passiv sokkel."
@@ -1445,7 +883,7 @@ msgstr "Tidsudløb på datasokkel-forbindelse"
msgid "Unable to accept connection"
msgstr "Kunne ikke acceptere forbindelse"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problem ved \"hashing\" af fil"
@@ -1577,82 +1015,602 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Tomme filer kan ikke være gyldige arkiver"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Fejl ved skrivning til filen"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Fejl ved læsning fra server"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Fejl ved skrivning til fil"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Valg mislykkedes"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Tidsudløb på forbindelsen"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Fejl ved skrivning af uddatafil"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Afventer hoveder"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Ugyldig linje i hovedet"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "Http-serveren sendte et ugyldigt svarhovede"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "Http-serveren sendte et ugyldigt Content-Length-hovede"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "Http-serveren sendte et ugyldigt Content-Range-hovede"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr ""
"Denne http-servere har fejlagtig understøttelse af intervaller ('ranges')"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Ukendt datoformat"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Valg mislykkedes"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Ugyldige hoved-data"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Tidsudløb på forbindelsen"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Forbindelsen mislykkedes"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Fejl ved skrivning af uddatafil"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Intern fejl"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Fejl ved skrivning til fil"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Fejl ved skrivning til filen"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Intern fejl. InstallPackages blev kaldt med ødelagte pakker!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pakker skal afinstalleres, men Remove er deaktiveret."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Fejl ved læsning fra server"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Intern fejl. Sortering blev ikke fuldført"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Ugyldige hoved-data"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "Mystisk.. Størrelserne passede ikke, skriv til apt@packages.debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Forbindelsen mislykkedes"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "%sB/%sB skal hentes fra arkiverne.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Intern fejl"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "%sB skal hentes fra arkiverne.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Efter denne handling, vil %sB yderligere diskplads være brugt.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Efter denne handling, vil %sB diskplads blive frigjort.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Du har ikke nok ledig plads i %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Der er problemer og -y blev brugt uden --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "'Trivial Only' angivet, men dette er ikke en triviel handling."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Ja, gør som jeg siger!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Du er ved at gøre noget, der kan være skadeligt\n"
+"For at fortsætte, skal du skrive '%s'\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Afbryder."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Vil du fortsætte?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Nedhentningen af filer mislykkedes"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Kunne ikke hente nogle af arkiverne. Prøv evt. at køre 'apt-get update' "
+"eller prøv med --fix-missing."
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing og medieskift understøttes endnu ikke"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Kunne ikke rette manglende pakker."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Afbryder installationen."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Den følgende pakke forsvandt fra dit system, da\n"
+"alle filer er blevet overskrevet af andre pakker:"
+msgstr[1] ""
+"De følgende pakker forsvandt fra dit system, da\n"
+"alle filer er blevet overskrevet af andre pakker:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Bemærk: Dette sker automatisk og med vilje af dpkg."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+"Det er ikke meningen, at vi skal slette ting og sager, kan ikke starte "
+"AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, det lader til at AutoRemover smadrede noget, der virkelig ikke\n"
+"burde kunne ske. Indsend venligst en fejlrapport om apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Følgende oplysninger kan hjælpe dig med at klare situationen:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Intern fejl. AutoRemover ødelagde noget"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Følgende pakke blev installeret automatisk, og behøves ikke længere:"
+msgstr[1] ""
+"Følgende pakker blev installeret automatisk, og behøves ikke længere:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "Pakken %lu blev installeret automatisk, og behøves ikke længere.\n"
+msgstr[1] ""
+"Pakkerne %lu blev installeret automatisk, og behøves ikke længere.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Brug »apt-get autoremove« til at fjerne den."
+msgstr[1] "Brug »apt-get autoremove« til at fjerne dem."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Du kan muligvis rette det ved at køre »apt-get -f install«:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Uopfyldte afhængigheder. Prøv 'apt-get -f install' uden pakker (eller angiv "
+"en løsning)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Nogle pakker kunne ikke installeres. Det kan betyde at du har ønsket\n"
+"en umulig situation eller bruger den ustabile distribution, hvor enkelte\n"
+"pakker endnu ikke er lavet eller gjort tilgængelige."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Ødelagte pakker"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Følgende yderligere pakker vil blive installeret:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Foreslåede pakker:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Anbefalede pakker:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ADVARSEL: Følgende pakkers autenticitet kunne ikke verificeres!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Autentifikationsadvarsel tilsidesat.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Nogle pakker kunne ikke autentificeres"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Installér disse pakker uden verifikation?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Kunne ikke hente %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Installeret]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Installeret]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Installeret]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Følgende pakker har uopfyldte afhængigheder:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "men %s er installeret"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "men %s forventes installeret"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "men den kan ikke installeres"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "men det er en virtuel pakke"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "men den er ikke installeret"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "men den bliver ikke installeret"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " eller"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Følgende NYE pakker vil blive installeret:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Følgende pakker vil blive AFINSTALLERET:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Følgende pakker er blevet holdt tilbage:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Følgende pakker vil blive opgraderet:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Følgende pakker vil blive NEDGRADERET:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Følgende tilbageholdte pakker vil blive ændret:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (grundet %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ADVARSEL: Følgende essentielle pakker vil blive afinstalleret\n"
+"Dette bør IKKE ske medmindre du er helt klar over, hvad du laver!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu opgraderes, %lu nyinstalleres, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu geninstalleres, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu nedgraderes, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu afinstalleres og %lu opgraderes ikke.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[J/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[j/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "J"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Fejl ved tolkning af regulært udtryk - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Retter afhængigheder ..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " mislykkedes."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Kunne ikke rette afhængigheder"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Kunne ikke minimere opgraderingssættet"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Færdig"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Du kan muligvis rette dette ved at køre 'apt-get -f install'."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Uopfyldte afhængigheder. Prøv med -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "'update'-kommandoen benytter ingen parametre"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Beregner opgraderingen... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Intern fejl, AllUpgrade ødelagde noget"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Færdig"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"BEMÆRK: Dette er kun en simulering!\n"
+" apt-get kræver rootprivilegier for reel kørsel.\n"
+" Husk også at låsning er deaktiveret,\n"
+" så stol ikke på relevansen for den reelle aktuelle situation!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Kunne ikke omdøbe %s til %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Havde "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Henter:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ignorerer "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Fejl "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Hentede %sB på %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Arbejder]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Medieskift: Indsæt disken med navnet\n"
+" '%s'\n"
+"i drevet '%s' og tryk retur\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Kunne ikke læse %s"
@@ -1715,36 +1673,36 @@ msgstr "Kunne ikke oprette IPC-videreførsel til underproces"
msgid "Connection closed prematurely"
msgstr "Forbindelsen lukkedes for hurtigt"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Ugyldig standardindstilling!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Tryk retur for at fortsætte."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Ønsker du at slette nogle tidligere hentede .deb-filer?"
# Note to translators: The following four messages belong together. It doesn't
# matter where sentences start, but it has to fit in just these four lines, and
# at only 80 characters per line, if possible.
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Der opstod fejl under udpakningen. Pakker som blev installeret"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "vil blive konfigureret. Det kan give gentagne fejl"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"eller fejl, der skyldes manglende afhængigheder. Dette er o.k. Det er kun"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1993,36 +1951,36 @@ msgstr "Kunne ikke »readlink« %s"
msgid "Failed to unlink %s"
msgstr "Kunne ikke frigøre %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Kunne ikke lænke %s til %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Nåede DeLink-begrænsningen på %sB.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Arkivet havde intet package-felt"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s har ingen tvangs-post\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " pakkeansvarlig for %s er %s, ikke %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s har ingen linje med tilsidesættelse af standard for kildefiler\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr ""
@@ -2102,7 +2060,7 @@ msgstr "Problem under aflænkning af %s"
msgid "Failed to rename %s to %s"
msgstr "Kunne ikke omdøbe %s til %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2171,7 +2129,7 @@ msgstr "Ødelagt arkiv"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar-tjeksum fejlede, arkivet er ødelagt"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Ukendt TAR-hovedtype %u, element %s"
@@ -2295,24 +2253,17 @@ msgid "Unable to stat %s"
msgstr "Kunne ikke finde %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Dette er ikke et gyldigt DEB-arkiv, mangler '%s'-elementet"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Dette er ikke et gyldigt DEB-arkiv, det har intet '%s', '%s' eller '%s'-"
-"element"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Intern fejl, kunne ikke finde elementet %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Ikke-tolkbar kontrolfil"
@@ -2373,85 +2324,85 @@ msgstr ""
"bruger."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lih %limin %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Det valgte %s blev ikke fundet"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Ukendt type-forkortelse: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Ã…bner konfigurationsfilen %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Syntaksfejl %s:%u: Forkert udformet mærke"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Syntaksfejl %s:%u: Overskydende affald efter værdien"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Syntaksfejl %s:%u: For mange sammenkædede inkluderinger"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Syntaksfejl %s:%u: Inkluderet herfra"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Syntaksfejl %s:%u: Ikke-understøttet direktiv '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "Syntaksfejl %s:%u: ryd direktiv kræver et tilvalgstræ som argument"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Syntaksfejl %s:%u: Overskydende affald i slutningen af filen"
@@ -2476,48 +2427,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Færdig"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Kommandolinjetilvalget '%c' [fra %s] kendes ikke."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Kommandolinjetilvalget %s blev ikke forstået"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Kommandolinjetilvalget %s er ikke boolsk"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Tilvalget %s kræver et parameter."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Tilvalg %s: Opsætningspostens specifikation skal have en =<værdi>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Tilvalget %s kræver et heltalligt parameter, ikke '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Tilvalget '%s' er for langt"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "%s blev ikke forstået, prøv med 'true' eller 'false'."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Ugyldig handling %s"
@@ -2531,116 +2482,116 @@ msgstr "Kunne ikke finde monteringspunktet %s"
msgid "Failed to stat the cdrom"
msgstr "Kunne ikke finde cdrommen"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problem under lukning af gzip-filen %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Benytter ikke låsning for skrivebeskyttet låsefil %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Kunne ikke åbne låsefilen %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Benytter ikke låsning for nfs-monteret låsefil %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Kunne ikke opnå låsen %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "Liste over filer kan ikke oprettes da »%s« ikke er en mappe"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "Ignorerer »%s« i mappe »%s« da det ikke er en regulær fil"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr "Ignorerer fil »%s« i mappe »%s« da den ikke har en filendelse"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr "Ignorerer fil »%s« i mappe »%s« da den har en ugyldig filendelse"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Underprocessen %s modtog en segmenteringsfejl."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Underprocessen %s modtog en signal %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "Underprocessen %s returnerede en fejlkode (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Underprocessen %s afsluttedes uventet"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Kunne ikke åbne filen %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Kunne ikke åbne filbeskrivelse %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Kunne ikke oprette underproces IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Kunne ikke udføre komprimeringsprogram "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "læs, mangler stadig at læse %llu men der er ikke flere"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "skriv, mangler stadig at skrive %llu men kunne ikke"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Problem under lukning af filen %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problem under omdøbning af filen %s til %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Fejl ved frigivelse af filen %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problem under synkronisering af fil"
@@ -2757,12 +2708,12 @@ msgstr "Kunne ikke åbne StateFile %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Kunne ikke skrive den midlertidige StateFile %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Kunne ikke tolke pakkefilen %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Kunne ikke tolke pakkefilen %s (2)"
@@ -2837,7 +2788,7 @@ msgstr "Ugyldig linje %u i kildelisten %s (type)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2846,12 +2797,12 @@ msgstr ""
"Kunne ikke udføre øjeblikkelig konfiguration på »%s«. Se venligst man 5 apt."
"conf under APT:Immediate-Cinfigure for detaljer. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "Kunne ikke åbne filen »%s«. "
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2875,7 +2826,7 @@ msgid ""
msgstr ""
"Pakken %s skal geninstalleres, men jeg kan ikke finde noget arkiv med den."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2883,19 +2834,11 @@ msgstr ""
"Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes "
"tilbageholdte pakker."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
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:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Nogle indeksfiler kunne ikke hentes. De er blevet ignoreret eller de gamle "
-"bruges i stedet."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2938,12 +2881,12 @@ msgstr "Metoden %s startede ikke korrekt"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Indsæt disken med navnet: '%s' i drevet '%s' og tryk retur."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Pakkesystemet '%s' understøttes ikke"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Kunne ikke bestemme en passende pakkesystemtype"
@@ -2977,17 +2920,17 @@ msgstr ""
"Værdien »%s« er ugyldig for APT::Default-Release da sådan en udgivelse ikke "
"er tilgængelig i kilderne"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Ugyldig indgang i indstillingsfilen %s, pakkehovedet mangler"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Kunne ikke forstå pin-type %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Ingen prioritet (eller prioritet nul) angivet ved pin"
@@ -3056,16 +2999,20 @@ msgstr "IO-fejl ved gemning af kilde-mellemlageret"
msgid "rename failed, %s (%s -> %s)."
msgstr "omdøbning mislykkedes, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum stemmer ikke"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Hashsum stemmer ikke"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Størrelsen stemmer ikke"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Ugyldig handling %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3074,17 +3021,17 @@ msgstr ""
"Kunne ikke finde uventet punkt »%s« i udgivelsesfil (forkert sources.list-"
"punkt eller forkert udformet fil)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Kunne ikke finde hashsum for »%s« i udgivelsesfilen"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
"Der er ingen tilgængelige offentlige nøgler for følgende nøgle-ID'er:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3093,12 +3040,12 @@ msgstr ""
"Udgivelsesfil for %s er udløbet (ugyldig siden %s). Opdateringer for dette "
"arkiv vil ikke blive anvendt."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Konfliktdistribution: %s (forventede %s men fik %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3108,12 +3055,12 @@ msgstr ""
"og den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "GPG-fejl: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3122,31 +3069,23 @@ msgstr ""
"Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er "
"nødt til manuelt at reparere denne pakke. (grundet manglende arch)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er "
-"nødt til manuelt at reparere denne pakke."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "Kan ikke finde en kilde til at hente version »%s« for »%s«"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, 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:1879
-msgid "Size mismatch"
-msgstr "Størrelsen stemmer ikke"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Kunne ikke fortolke udgivelsesfil %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Ingen afsnit i udgivelsesfil %s"
@@ -3291,32 +3230,32 @@ msgstr "Kan ikke finde godkendelsesregistrering for: %s"
msgid "Hash mismatch for: %s"
msgstr "Hashsum stemmer ikke: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Udgaven '%s' for '%s' blev ikke fundet"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Versionen '%s' for '%s' blev ikke fundet"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Kunne ikke finde opgaven '%s'"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Kunne ikke finde nogle pakker med regulært udtryk '%s'"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "Kan ikke vælge versioner fra pakke '%s' som er vitalt"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3325,18 +3264,18 @@ msgstr ""
"Kan ikke vælge installeret eller kandidatversion fra pakke '%s' da den ikke "
"har nogen af dem"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr "Kan ikke vælge nyeste version fra pakke '%s' som er vital"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Kan ikke vælge kandidatversion fra pakke %s da den ikke har nogen kandidat"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3362,110 +3301,132 @@ msgstr "Ekstern problemløser fejlede uden en korrekt fejlbesked"
msgid "Execute external solver"
msgstr "Kør ekstern problemløser"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Kører dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Nogle indeksfiler kunne ikke hentes. De er blevet ignoreret eller de gamle "
+"bruges i stedet."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Installerer %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Sætter %s op"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Fjerner %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "Fjerner %s helt"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Bemærker forsvinding af %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Kører førinstallationsudløser %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Mappe '%s' mangler"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Kunne ikke åbne filen '%s'"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Klargør %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Pakker %s ud"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Gør klar til at sætte %s op"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Installerede %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Gør klar til afinstallation af %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Fjernede %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Gør klar til at fjerne %s helt"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Fjernede %s helt"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr "Kan ikke skrive log, openpty() mislykkedes (/dev/pts ej monteret?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Kunne ikke skrive til %s"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Kører dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "Handling blev afbrudt før den kunne afsluttes"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
"Ingen apportrapport skrevet da MaxReports (maks rapporter) allerede er nået"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "afhængighedsproblemer - efterlader ukonfigureret"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3473,14 +3434,14 @@ msgstr ""
"Ingen apportrapport skrevet da fejlbeskeden indikerer, at det er en "
"opfølgningsfejl fra en tidligere fejl."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
"Ingen apportrapport skrevet da fejlbeskeden indikerer en fuld disk-fejl"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3488,7 +3449,15 @@ msgstr ""
"Ingen apportrapport skrevet da fejlbeskeden indikerer en ikke nok "
"hukommelsesfejl"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Ingen apportrapport skrevet da fejlbeskeden indikerer en fuld disk-fejl"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr "Ingen apportrapport skrevet da fejlbeskeden indikerer en dpkg I/O-fejl"
@@ -3518,6 +3487,97 @@ msgstr "dpkg blev afbrudt, du skal manuelt køre '%s' for at rette problemet."
msgid "Not locked"
msgstr "Ikke låst"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Bemærk, vælger »%s« til opgave »%s«\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Bemærk, vælger »%s« for regulært udtryk »%s«\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Pakken %s er en virtuel pakke, der kan leveres af:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Ingen kandidatversion]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Du bør eksplicit vælge en at installere."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Pakken %s har ingen tilgængelig version, men der refereres til den i en \n"
+#~ "anden pakke. Det kan betyde at denne pakke blevet overflødiggjort eller \n"
+#~ "kun kan hentes fra andre kilder\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Dog kan følgende pakker erstatte den:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Pakken »%s« har ingen installationskandidat"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Virtuelle pakker som »%s« kan ikke fjernes\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Pakken »%s« er ikke installeret, så den afinstalleres ikke. Mente du "
+#~ "»%s«?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Pakken »%s« er ikke installeret, så den afinstalleres ikke\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Bemærk, vælger »%s« fremfor »%s«\n"
+
+#~ 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"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Overspringer %s, den er ikke installeret og der er kun forespurgt efter "
+#~ "opgraderinger.\n"
+
+#~ 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"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s er i forvejen den nyeste version.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Valgte version »%s« (%s) for »%s«\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Valgte version »%s« (%s) for »%s« på grund af »%s«\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Ignorer utilgængelig måludgivelse '%s' af pakke '%s'"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "Henter %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Dette er ikke et gyldigt DEB-arkiv, det har intet '%s', '%s' eller '%s'-"
+#~ "element"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum stemmer ikke"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du "
+#~ "er nødt til manuelt at reparere denne pakke."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "Kan ikke skrive log, openpty() mislykkedes (/dev/pts ej monteret?)\n"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "Fil %s starter ikke med en »clearsigned« besked"
diff --git a/po/de.po b/po/de.po
index ba9d3ae33..06c0ee9f2 100644
--- a/po/de.po
+++ b/po/de.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.9.2\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-06-27 10:55+0200\n"
"Last-Translator: Holger Wansing <linux@wansing-online.de>\n"
"Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n"
@@ -20,154 +20,156 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;>\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Paket %s Version %s hat eine unerfüllte Abhängigkeit:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Gesamtzahl an Paketnamen: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Gesamtzahl an Paketstrukturen: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " davon gewöhnliche Pakete: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " davon rein virtuelle Pakete: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " davon einzelne virtuelle Pakete: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " davon gemischte virtuelle Pakete: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " davon fehlend: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Gesamtzahl an unterschiedlichen Versionen: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Gesamtzahl an unterschiedlichen Beschreibungen: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Gesamtzahl an Abhängigkeiten: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Gesamtzahl an Version/Datei-Beziehungen: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Gesamtzahl an Beschreibung/Datei-Beziehungen: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Gesamtzahl an Bereitstellungen: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Gesamtzahl an Mustern: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Gesamtmenge des Abhängigkeits-/Versionsspeichers: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Gesamtmenge an Slack: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Gesamtmenge an Speicher: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Paketdatei %s ist nicht synchronisiert."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Keine Pakete gefunden"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Sie müssen mindestens ein Suchmuster angeben"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark "
"showauto«."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Paket %s kann nicht gefunden werden."
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Paketdateien:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"Zwischenspeicher ist nicht synchron, Querverweisen einer Paketdatei nicht "
"möglich"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Mit Pinning verwaltete Pakete:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(nicht gefunden)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Installiert: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Installationskandidat: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(keine)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Paket-Pinning: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Versionstabelle:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s für %s, kompiliert am %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -239,40 +241,40 @@ msgstr ""
"und apt.conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
"Bitte geben Sie einen Namen für dieses Medium an, wie zum Beispiel »Debian "
"5.0.3 Disk 1«"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr ""
"Bitte legen Sie ein Medium in das Laufwerk ein und drücken Sie die "
"Eingabetaste (Enter)."
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "»%s« konnte nicht in »%s« eingebunden werden."
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr ""
"Wiederholen Sie dieses Prozedere für die restlichen Disks Ihres Satzes."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argumente nicht paarweise"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -301,567 +303,32 @@ msgstr ""
" -c=? Diese Konfigurationsdatei lesen\n"
" -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[J/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[j/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "J"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Die folgenden Pakete haben unerfüllte Abhängigkeiten:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "aber %s ist installiert"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "aber %s soll installiert werden"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "ist aber nicht installierbar"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "ist aber ein virtuelles Paket"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "ist aber nicht installiert"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "soll aber nicht installiert werden"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " oder"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Die folgenden NEUEN Pakete werden installiert:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Die folgenden Pakete werden ENTFERNT:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Die folgenden Pakete sind zurückgehalten worden:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Die folgenden Pakete werden aktualisiert (Upgrade):"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr ""
-"Die folgenden Pakete werden durch eine ÄLTERE VERSION ERSETZT (Downgrade):"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Die folgenden zurückgehaltenen Pakete werden verändert:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (wegen %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"WARNUNG: Die folgenden essentiellen Pakete werden entfernt.\n"
-"Dies sollte NICHT geschehen, außer Sie wissen genau, was Sie tun!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu aktualisiert, %lu neu installiert, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu erneut installiert, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu durch eine ältere Version ersetzt, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu nicht vollständig installiert oder entfernt.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Hinweis: »%s« wird für Task »%s« gewählt.\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Hinweis: »%s« wird für regulären Ausdruck »%s« gewählt.\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Installiert]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Nicht die Installationskandidat-Version]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Sie sollten eines explizit zum Installieren auswählen."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Paket %s ist nicht verfügbar, wird aber von einem anderen Paket\n"
-"referenziert. Das kann heißen, dass das Paket fehlt, dass es abgelöst\n"
-"wurde oder nur aus einer anderen Quelle verfügbar ist.\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Doch die folgenden Pakete ersetzen es:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Für Paket »%s« existiert kein Installationskandidat."
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Virtuelle Pakete wie »%s« können nicht entfernt werden.\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"Paket »%s« ist nicht installiert, wird also auch nicht entfernt. Meinten Sie "
-"»%s«?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, 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:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Hinweis: »%s« wird an Stelle von »%s« gewählt.\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"%s wird übersprungen; es ist schon installiert und ein Upgrade ist nicht "
-"angefordert.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"%s wird übersprungen; es ist nicht installiert und lediglich Upgrades sind "
-"angefordert.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ist schon die neueste Version.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s wurde als manuell installiert festgelegt.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Version »%s« (%s) für »%s« gewählt.\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Version »%s« (%s) für »%s« gewählt aufgrund von »%s«.\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Abhängigkeiten werden korrigiert ..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " fehlgeschlagen."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Abhängigkeiten konnten nicht korrigiert werden."
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert werden."
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Fertig"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Unerfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Authentifizierungswarnung überstimmt.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Diese Pakete ohne Überprüfung installieren?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Einige Pakete konnten nicht authentifiziert werden."
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Interner Fehler, Anordnung beendete nicht"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Wie merkwürdig ... die Größen haben nicht übereingestimmt; schreiben Sie "
-"eine E-Mail an apt@packages.debian.org (auf Englisch bitte)."
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Es müssen noch %sB von %sB an Archiven heruntergeladen werden.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Nach dieser Operation werden %sB Plattenplatz zusätzlich benutzt.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Freier Platz in %s konnte nicht bestimmt werden."
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Sie haben nicht genug Platz in %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "»Nur triviale« angegeben, aber dies ist keine triviale Operation."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Ja, tue was ich sage!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Sie sind im Begriff, etwas potentiell Schädliches zu tun.\n"
-"Zum Fortfahren geben Sie bitte »%s« ein.\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Abbruch."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Möchten Sie fortfahren?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Fehlschlag beim Holen von %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Einige Dateien konnten nicht heruntergeladen werden."
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Einige Archive konnten nicht heruntergeladen werden; vielleicht »apt-get "
-"update« ausführen oder mit »--fix-missing« probieren?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing und Wechselmedien werden derzeit nicht unterstützt."
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Fehlende Pakete konnten nicht korrigiert werden."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Installation abgebrochen."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Das folgende Paket verschwand von Ihrem System, da alle\n"
-"Dateien von anderen Paketen überschrieben wurden:"
-msgstr[1] ""
-"Die folgenden Pakete verschwanden von Ihrem System, da alle\n"
-"Dateien von anderen Paketen überschrieben wurden:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Hinweis: Dies wird automatisch und absichtlich von dpkg durchgeführt."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Nicht verfügbare Veröffentlichung »%s« von Paket »%s« wird ignoriert."
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Als Quellpaket wird »%s« statt »%s« gewählt.\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Nicht verfügbare Version »%s« von Paket »%s« wird ignoriert."
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Der Befehl »update« akzeptiert keine Argumente."
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-"Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden."
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, es sieht so aus, als ob der AutoRemover etwas beschädigt hat, was\n"
-"wirklich nicht geschehen sollte. Bitte erstellen Sie einen Fehlerbericht\n"
-"über apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-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:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Interner Fehler, AutoRemover hat etwas beschädigt."
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Das folgende Paket wurde automatisch installiert und wird nicht mehr "
-"benötigt:"
-msgstr[1] ""
-"Die folgenden Pakete wurden automatisch installiert und werden nicht mehr "
-"benötigt:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"%lu Paket wurde automatisch installiert und wird nicht mehr benötigt.\n"
-msgstr[1] ""
-"%lu Pakete wurden automatisch installiert und werden nicht mehr benötigt.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Verwenden Sie »apt-get autoremove«, um es zu entfernen."
-msgstr[1] "Verwenden Sie »apt-get autoremove«, um sie zu entfernen."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Interner Fehler, AllUpgrade hat etwas beschädigt."
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Unerfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne Angabe "
-"eines Pakets (oder geben Sie eine Lösung an)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass\n"
-"Sie eine unmögliche Situation angefordert haben oder, wenn Sie die\n"
-"Unstable-Distribution verwenden, dass einige erforderliche Pakete noch\n"
-"nicht erstellt wurden oder Incoming noch nicht verlassen haben."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Beschädigte Pakete"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Die folgenden zusätzlichen Pakete werden installiert:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Vorgeschlagene Pakete:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Empfohlene Pakete:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Paket %s konnte nicht gefunden werden"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s wurde als manuell installiert festgelegt.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s wurde als automatisch installiert festgelegt.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -869,50 +336,26 @@ msgstr ""
"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark auto« "
"und »apt-mark manual«."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Paketaktualisierung (Upgrade) wird berechnet... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Fehlgeschlagen"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Fertig"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Interner Fehler, der Problemlöser hat etwas beschädigt."
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Das Downloadverzeichnis konnte nicht gesperrt werden."
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-"Es konnte keine Quelle gefunden werden, um Version »%s« von »%s« "
-"herunterzuladen."
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "Herunterladen von %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Quellpaket für %s kann nicht gefunden werden."
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -922,7 +365,7 @@ msgstr ""
"auf:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -934,70 +377,80 @@ msgstr ""
"um die neuesten (möglicherweise noch unveröffentlichten) Aktualisierungen\n"
"für das Paket abzurufen.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Bereits heruntergeladene Datei »%s« wird übersprungen.\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Freier Platz in %s konnte nicht bestimmt werden."
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Sie haben nicht genügend freien Speicherplatz in %s."
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Es müssen noch %sB von %sB an Quellarchiven heruntergeladen werden.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, 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:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Quelle %s wird heruntergeladen.\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Einige Archive konnten nicht heruntergeladen werden."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "Das Entpacken der bereits entpackten Quelle in %s wird übersprungen.\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Entpackbefehl »%s« fehlgeschlagen.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Build-Befehl »%s« fehlgeschlagen.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Kindprozess fehlgeschlagen"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"Es muss mindestens ein Paket angegeben werden, dessen Bauabhängigkeiten "
"überprüft werden sollen."
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -1006,18 +459,18 @@ msgstr ""
"Keine Architekturinformation für %s verfügbar. Weiteres zur Einrichtung "
"finden Sie unter apt.conf(5) APT::Architectures."
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr ""
"Informationen zu Bauabhängigkeiten für %s konnten nicht gefunden werden."
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s hat keine Bauabhängigkeiten.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1026,7 +479,7 @@ msgstr ""
"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da %s bei »%s«-Paketen "
"nicht erlaubt ist."
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1035,14 +488,14 @@ msgstr ""
"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht "
"gefunden werden kann."
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"»%s«-Abhängigkeit für %s kann nicht erfüllt werden: Installiertes Paket %s "
"ist zu neu."
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1052,7 +505,7 @@ msgstr ""
"Installationskandidaten für das Paket %s die Versionsanforderungen nicht "
"erfüllen kann."
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1061,30 +514,30 @@ msgstr ""
"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da für Paket %s kein "
"Installationskandidat existiert."
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "»%s«-Abhängigkeit für %s konnte nicht erfüllt werden: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Bauabhängigkeiten für %s konnten nicht erfüllt werden."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Verarbeitung der Bauabhängigkeiten fehlgeschlagen"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Änderungsprotokoll (Changelog) für %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Unterstützte Module:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1179,104 +632,54 @@ msgstr ""
"bezüglich weitergehender Informationen und Optionen.\n"
" Dieses APT hat Super-Kuh-Kräfte.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"HINWEIS: Dies ist nur eine Simulation!\n"
-" apt-get benötigt root-Privilegien für die reale Ausführung.\n"
-" Behalten Sie ebenfalls in Hinterkopf, dass die Sperren deaktiviert\n"
-" sind, verlassen Sie sich also bezüglich des reellen aktuellen\n"
-" Status der Sperre nicht darauf!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "OK "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Holen: "
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Fehl "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Es wurden %sB in %s geholt (%sB/s).\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Wird verarbeitet]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Medienwechsel: Bitte legen Sie das Medium mit dem Namen\n"
-" »%s«\n"
-"in Laufwerk »%s« ein und drücken Sie die Eingabetaste (Enter).\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr ""
"Markierung für %s kann nicht gesetzt werden, da es nicht installiert ist.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s wurde bereits auf manuell installiert gesetzt.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s wurde bereits auf automatisch installiert gesetzt.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s wurde bereits auf Halten gesetzt.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "Die Halten-Markierung für %s wurde bereits entfernt.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Es wurde auf %s gewartet, war jedoch nicht vorhanden"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s auf Halten gesetzt.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "Halten-Markierung für %s entfernt.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "Ausführen von dpkg fehlgeschlagen. Sind Sie root?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1318,6 +721,23 @@ msgstr ""
"Siehe auch die Handbuchseiten apt-mark(8) und apt.conf(5) bezüglich\n"
"weitergehender Informationen und Optionen."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1418,8 +838,8 @@ msgstr "Zeitüberschreitung der Verbindung"
msgid "Server closed the connection"
msgstr "Verbindung durch Server geschlossen"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Lesefehler"
@@ -1432,8 +852,8 @@ msgid "Protocol corruption"
msgstr "Protokoll beschädigt"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Schreibfehler"
@@ -1445,6 +865,10 @@ msgstr "Socket konnte nicht erzeugt werden."
msgid "Could not connect data socket, connection timed out"
msgstr "Daten-Socket konnte wegen Zeitüberschreitung nicht verbunden werden."
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Fehlgeschlagen"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Passiver Socket konnte nicht verbunden werden."
@@ -1489,7 +913,7 @@ msgstr "Zeitüberschreitung bei Datenverbindungsaufbau"
msgid "Unable to accept connection"
msgstr "Verbindung konnte nicht angenommen werden."
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problem bei Bestimmung des Hashwertes einer Datei"
@@ -1626,86 +1050,615 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Leere Dateien können kein gültiges Archiv sein."
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Fehler beim Schreiben der Datei"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+"Fehler beim Lesen vom Server: Verbindung wurde durch den Server auf der "
+"anderen Seite geschlossen."
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Fehler beim Lesen vom Server"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Fehler beim Schreiben in Datei"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Auswahl fehlgeschlagen"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Zeitüberschreitung bei Verbindung"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Fehler beim Schreiben der Ausgabedatei"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Warten auf Kopfzeilen"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Ungültige Kopfzeile"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "Vom HTTP-Server wurde eine ungültige Antwort-Kopfzeile gesandt."
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr ""
"Vom HTTP-Server wurde eine ungültige »Content-Length«-Kopfzeile gesandt."
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr ""
"Vom HTTP-Server wurde eine ungültige »Content-Range«-Kopfzeile gesandt."
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr ""
"Teilweise Dateiübertragung wird vom HTTP-Server nur fehlerhaft unterstützt."
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Unbekanntes Datumsformat"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Auswahl fehlgeschlagen"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Fehlerhafte Kopfzeilendaten"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Zeitüberschreitung bei Verbindung"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Verbindung fehlgeschlagen"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Fehler beim Schreiben der Ausgabedatei"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Interner Fehler"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Fehler beim Schreiben in Datei"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Fehler beim Schreiben der Datei"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet."
+
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Interner Fehler, Anordnung beendete nicht"
+
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
-"Fehler beim Lesen vom Server: Verbindung wurde durch den Server auf der "
-"anderen Seite geschlossen."
+"Wie merkwürdig ... die Größen haben nicht übereingestimmt; schreiben Sie "
+"eine E-Mail an apt@packages.debian.org (auf Englisch bitte)."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Fehler beim Lesen vom Server"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Es müssen noch %sB von %sB an Archiven heruntergeladen werden.\n"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Fehlerhafte Kopfzeilendaten"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Verbindung fehlgeschlagen"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, 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"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Interner Fehler"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Sie haben nicht genug Platz in %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet."
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "»Nur triviale« angegeben, aber dies ist keine triviale Operation."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Ja, tue was ich sage!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Sie sind im Begriff, etwas potentiell Schädliches zu tun.\n"
+"Zum Fortfahren geben Sie bitte »%s« ein.\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Abbruch."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Möchten Sie fortfahren?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Einige Dateien konnten nicht heruntergeladen werden."
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Einige Archive konnten nicht heruntergeladen werden; vielleicht »apt-get "
+"update« ausführen oder mit »--fix-missing« probieren?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing und Wechselmedien werden derzeit nicht unterstützt."
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Fehlende Pakete konnten nicht korrigiert werden."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Installation abgebrochen."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Das folgende Paket verschwand von Ihrem System, da alle\n"
+"Dateien von anderen Paketen überschrieben wurden:"
+msgstr[1] ""
+"Die folgenden Pakete verschwanden von Ihrem System, da alle\n"
+"Dateien von anderen Paketen überschrieben wurden:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Hinweis: Dies wird automatisch und absichtlich von dpkg durchgeführt."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+"Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden."
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, es sieht so aus, als ob der AutoRemover etwas beschädigt hat, was\n"
+"wirklich nicht geschehen sollte. Bitte erstellen Sie einen Fehlerbericht\n"
+"über apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr ""
+"Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Interner Fehler, AutoRemover hat etwas beschädigt."
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Das folgende Paket wurde automatisch installiert und wird nicht mehr "
+"benötigt:"
+msgstr[1] ""
+"Die folgenden Pakete wurden automatisch installiert und werden nicht mehr "
+"benötigt:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"%lu Paket wurde automatisch installiert und wird nicht mehr benötigt.\n"
+msgstr[1] ""
+"%lu Pakete wurden automatisch installiert und werden nicht mehr benötigt.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Verwenden Sie »apt-get autoremove«, um es zu entfernen."
+msgstr[1] "Verwenden Sie »apt-get autoremove«, um sie zu entfernen."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Unerfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne Angabe "
+"eines Pakets (oder geben Sie eine Lösung an)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass\n"
+"Sie eine unmögliche Situation angefordert haben oder, wenn Sie die\n"
+"Unstable-Distribution verwenden, dass einige erforderliche Pakete noch\n"
+"nicht erstellt wurden oder Incoming noch nicht verlassen haben."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Beschädigte Pakete"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Die folgenden zusätzlichen Pakete werden installiert:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Vorgeschlagene Pakete:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Empfohlene Pakete:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Authentifizierungswarnung überstimmt.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Einige Pakete konnten nicht authentifiziert werden."
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Diese Pakete ohne Überprüfung installieren?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Fehlschlag beim Holen von %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Installiert]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Installiert]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Installiert]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Die folgenden Pakete haben unerfüllte Abhängigkeiten:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "aber %s ist installiert"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "aber %s soll installiert werden"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "ist aber nicht installierbar"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "ist aber ein virtuelles Paket"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "ist aber nicht installiert"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "soll aber nicht installiert werden"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " oder"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Die folgenden NEUEN Pakete werden installiert:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Die folgenden Pakete werden ENTFERNT:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Die folgenden Pakete sind zurückgehalten worden:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Die folgenden Pakete werden aktualisiert (Upgrade):"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr ""
+"Die folgenden Pakete werden durch eine ÄLTERE VERSION ERSETZT (Downgrade):"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Die folgenden zurückgehaltenen Pakete werden verändert:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (wegen %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"WARNUNG: Die folgenden essentiellen Pakete werden entfernt.\n"
+"Dies sollte NICHT geschehen, außer Sie wissen genau, was Sie tun!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu aktualisiert, %lu neu installiert, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu erneut installiert, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu durch eine ältere Version ersetzt, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu nicht vollständig installiert oder entfernt.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[J/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[j/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "J"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Abhängigkeiten werden korrigiert ..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " fehlgeschlagen."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Abhängigkeiten konnten nicht korrigiert werden."
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert werden."
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Fertig"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Unerfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Der Befehl »update« akzeptiert keine Argumente."
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Paketaktualisierung (Upgrade) wird berechnet... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Interner Fehler, AllUpgrade hat etwas beschädigt."
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Fertig"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"HINWEIS: Dies ist nur eine Simulation!\n"
+" apt-get benötigt root-Privilegien für die reale Ausführung.\n"
+" Behalten Sie ebenfalls in Hinterkopf, dass die Sperren deaktiviert\n"
+" sind, verlassen Sie sich also bezüglich des reellen aktuellen\n"
+" Status der Sperre nicht darauf!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "%s konnte nicht in %s umbenannt werden."
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "OK "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Holen: "
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Fehl "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Es wurden %sB in %s geholt (%sB/s).\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Wird verarbeitet]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Medienwechsel: Bitte legen Sie das Medium mit dem Namen\n"
+" »%s«\n"
+"in Laufwerk »%s« ein und drücken Sie die Eingabetaste (Enter).\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "%s kann nicht gelesen werden."
@@ -1769,34 +1722,34 @@ msgstr ""
msgid "Connection closed prematurely"
msgstr "Verbindung vorzeitig beendet"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Fehlerhafte Voreinstellung!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Zum Fortfahren die Eingabetaste (Enter) drücken."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Möchten Sie alle bisher heruntergeladenen .deb-Dateien löschen?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Einige Fehler traten während des Entpackens auf. Installierte Pakete"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr ""
"werden konfiguriert. Dies kann zu doppelten Fehlermeldungen oder Fehlern "
"durch"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -2055,36 +2008,36 @@ msgstr "readlink von %s fehlgeschlagen"
msgid "Failed to unlink %s"
msgstr "Entfernen (unlink) von %s fehlgeschlagen"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Erzeugen einer Verknüpfung von %s zu %s fehlgeschlagen"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " DeLink-Limit von %sB erreicht\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Archiv hatte kein Feld »package«"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s hat keinen Eintrag in der Override-Liste.\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s-Betreuer ist %s und nicht %s.\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s hat keinen Eintrag in der Source-Override-Liste.\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s hat keinen Eintrag in der Binary-Override-Liste.\n"
@@ -2163,7 +2116,7 @@ msgstr "Problem beim Entfernen (unlink) von %s"
msgid "Failed to rename %s to %s"
msgstr "%s konnte nicht in %s umbenannt werden."
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2233,7 +2186,7 @@ msgstr "Beschädigtes Archiv"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar-Prüfsumme fehlgeschlagen, Archiv beschädigt"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Unbekannter Tar-Kopfzeilen-Typ %u, Bestandteil %s"
@@ -2357,23 +2310,17 @@ msgid "Unable to stat %s"
msgstr "%s mit »stat« abfragen nicht möglich"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Dies ist kein gültiges DEB-Archiv, da es »%s« nicht enthält."
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Dies ist kein gültiges DEB-Archiv, da es weder »%s«, »%s« noch »%s« enthält."
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Interner Fehler, Bestandteil %s konnte nicht gefunden werden"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Auswerten der »control«-Datei nicht möglich"
@@ -2434,87 +2381,87 @@ msgstr ""
"MMap vom Benutzer deaktiviert ist."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%li h %li min %li s"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%li min %li s"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%li s"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Auswahl %s nicht gefunden"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Nicht erkannte Typabkürzung: »%c«"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Konfigurationsdatei %s wird geöffnet"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "Syntaxfehler %s:%u: Block beginnt ohne Namen."
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Syntaxfehler %s:%u: Missgestaltete Markierung"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn nach Wert"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (includes)"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Syntaxfehler %s:%u: Eingefügt von hier"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Syntaxfehler %s:%u: Nicht unterstützte Direktive »%s«"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Syntaxfehler %s:%u: Löschdirektiven benötigen einen Optionsbaum als Argument"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn am Dateiende"
@@ -2539,49 +2486,49 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Fertig"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Befehlszeilenoption »%c« [aus %s] ist nicht bekannt."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Befehlszeilenoption %s konnte nicht ausgewertet werden."
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Befehlszeilenoption %s ist nicht Bool'sch."
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Option %s erfordert ein Argument."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Option %s: Konfigurationswertspezifikation benötigt ein »=<Wert>«."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Option %s erfordert ein Ganzzahl-Argument, nicht »%s«."
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Option »%s« ist zu lang."
# Check for boolean; -1 is unspecified, 0 is yes 1 is no
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Der Sinn von »%s« ist nicht klar, versuchen Sie »true« oder »false«."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Ungültige Operation %s"
@@ -2595,50 +2542,50 @@ msgstr "Einbindungspunkt %s mit »stat« abfragen nicht möglich."
msgid "Failed to stat the cdrom"
msgstr "CD-ROM mit »stat« abfragen fehlgeschlagen"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problem beim Schließen der gzip-Datei %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Es wird keine Sperre für schreibgeschützte Sperrdatei %s verwendet."
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Sperrdatei %s konnte nicht geöffnet werden."
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Es wird keine Sperre für per NFS eingebundene Sperrdatei %s verwendet."
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Konnte Sperre %s nicht bekommen"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "Dateiliste kann nicht erstellt werden, da »%s« kein Verzeichnis ist."
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
"»%s« in Verzeichnis »%s« wird ignoriert, da es keine reguläre Datei ist."
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
"Datei »%s« in Verzeichnis »%s« wird ignoriert, da sie keine Dateinamen-"
"Erweiterung hat."
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
@@ -2646,74 +2593,74 @@ msgstr ""
"Datei »%s« in Verzeichnis »%s« wird ignoriert, da sie eine ungültige "
"Dateinamen-Erweiterung hat."
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Unterprozess %s hat einen Speicherzugriffsfehler empfangen."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Unterprozess %s hat das Signal %u empfangen."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "Unterprozess %s hat Fehlercode zurückgegeben (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Unterprozess %s unerwartet beendet"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Datei %s konnte nicht geöffnet werden."
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Datei-Deskriptor %d konnte nicht geöffnet werden."
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr ""
"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden."
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Fehler beim Ausführen von Komprimierer "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr ""
"Lesevorgang: es verbleiben noch %llu zu lesen, jedoch ist nichts mehr übrig."
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr ""
"Schreibvorgang: es verbleiben noch %llu zu schreiben, Schreiben ist jedoch "
"nicht möglich."
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Problem beim Schließen der Datei %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problem beim Umbenennen der Datei %s nach %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Problem beim Entfernen (unlink) der Datei %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problem beim Synchronisieren der Datei"
@@ -2831,12 +2778,12 @@ msgstr "StateFile %s konnte nicht geöffnet werden."
msgid "Failed to write temporary StateFile %s"
msgstr "Temporäres StateFile %s konnte nicht geschrieben werden."
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Paketdatei %s konnte nicht verarbeitet werden (1)."
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Paketdatei %s konnte nicht verarbeitet werden (2)."
@@ -2912,7 +2859,7 @@ msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)"
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt."
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2921,12 +2868,12 @@ msgstr ""
"»%s« konnte nicht unmittelbar konfiguriert werden. Lesen Sie »man 5 apt."
"conf« unter APT::Immediate-Configure bezüglich weiterer Details. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "»%s« konnte nicht konfiguriert werden. "
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2951,7 +2898,7 @@ msgstr ""
"Das Paket %s muss neu installiert werden, es kann jedoch kein Archiv dafür "
"gefunden werden."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2959,20 +2906,12 @@ msgstr ""
"Fehler: Unterbrechungen durch pkgProblemResolver::Resolve hervorgerufen; "
"dies könnte durch zurückgehaltene Pakete verursacht worden sein."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr ""
"Probleme können nicht korrigiert werden, Sie haben zurückgehaltene defekte "
"Pakete."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden "
-"ignoriert oder alte an ihrer Stelle benutzt."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -3017,12 +2956,12 @@ msgstr ""
"Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« ein und "
"drücken Sie die Eingabetaste (Enter)."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Paketierungssystem »%s« wird nicht unterstützt."
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Bestimmung eines passenden Paketierungssystemtyps nicht möglich"
@@ -3060,18 +2999,18 @@ msgstr ""
"Der Wert »%s« ist für APT::Default-Release ungültig, da solch eine "
"Veröffentlichung in den Paketquellen nicht verfügbar ist."
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr ""
"Ungültiger Eintrag in Einstellungsdatei %s, keine »Package«-Kopfzeile(n)"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Pinning-Typ %s kann nicht interpretiert werden."
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Keine Priorität (oder Null) für Pin angegeben"
@@ -3147,16 +3086,20 @@ msgstr "E/A-Fehler beim Speichern des Quell-Zwischenspeichers"
msgid "rename failed, %s (%s -> %s)."
msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5-Summe stimmt nicht überein"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Hash-Summe stimmt nicht überein"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Größe stimmt nicht überein"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Ungültige Operation %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3165,17 +3108,17 @@ msgstr ""
"Erwarteter Eintrag »%s« konnte in Release-Datei nicht gefunden werden "
"(falscher Eintrag in sources.list oder missgebildete Datei)."
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Hash-Summe für »%s« kann in Release-Datei nicht gefunden werden."
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3184,12 +3127,12 @@ msgstr ""
"Release-Datei für %s ist abgelaufen (ungültig seit %s). Aktualisierungen für "
"dieses Depot werden nicht angewendet."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3200,12 +3143,12 @@ msgstr ""
"GPG-Fehler: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "GPG-Fehler: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3215,32 +3158,26 @@ msgstr ""
"Sie dieses Paket von Hand korrigieren müssen (aufgrund fehlender "
"Architektur)."
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"Es konnte keine Datei für Paket %s gefunden werden. Das könnte heißen, dass "
-"Sie dieses Paket von Hand korrigieren müssen."
+"Es konnte keine Quelle gefunden werden, um Version »%s« von »%s« "
+"herunterzuladen."
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, 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:1879
-msgid "Size mismatch"
-msgstr "Größe stimmt nicht überein"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Release-Datei %s kann nicht verarbeitet werden."
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Keine Bereiche (Sections) in Release-Datei %s"
@@ -3387,34 +3324,34 @@ msgstr "Authentifizierungs-Datensatz konnte nicht gefunden werden für: %s"
msgid "Hash mismatch for: %s"
msgstr "Hash-Summe stimmt nicht überein für: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Veröffentlichung »%s« für »%s« konnte nicht gefunden werden."
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Version »%s« für »%s« konnte nicht gefunden werden."
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Task »%s« konnte nicht gefunden werden."
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden."
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
"Es können keine Versionen von Paket »%s« ausgewählt werden, da es rein "
"virtuell ist."
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3423,21 +3360,21 @@ msgstr ""
"Es kann weder eine installierte Version noch ein Installationskandidat von "
"Paket »%s« ausgewählt werden, da beide nicht existieren."
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Die neueste Version von Paket »%s« kann nicht ausgewählt werden, da es rein "
"virtuell ist."
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Es kann kein Installationskandidat von Paket »%s« ausgewählt werden, da kein "
"solcher existiert."
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3465,113 +3402,133 @@ msgstr ""
msgid "Execute external solver"
msgstr "Externen Problemlöser ausführen"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Ausführen von dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden "
+"ignoriert oder alte an ihrer Stelle benutzt."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "%s wird installiert."
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "%s wird konfiguriert."
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "%s wird entfernt."
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "%s wird vollständig entfernt."
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Verschwinden von %s festgestellt"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Aufruf des Nach-Installations-Triggers %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Verzeichnis »%s« fehlt"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Datei »%s« konnte nicht geöffnet werden."
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "%s wird vorbereitet."
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "%s wird entpackt."
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Konfiguration von %s wird vorbereitet."
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s installiert"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Entfernen von %s wird vorbereitet."
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s entfernt"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Vollständiges Entfernen von %s wird vorbereitet."
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s vollständig entfernt"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Schreiben nach %s nicht möglich"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Schreiben des Protokolls nicht möglich, openpty() fehlgeschlagen (/dev/pts "
-"nicht eingebunden?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Ausführen von dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "Operation wurde unterbrochen, bevor sie beendet werden konnte."
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
"Es wurde kein Apport-Bericht verfasst, da das Limit MaxReports bereits "
"erreicht ist."
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "Abhängigkeitsprobleme - verbleibt unkonfiguriert"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3579,7 +3536,7 @@ msgstr ""
"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung darauf "
"hindeutet, dass dies lediglich ein Folgefehler eines vorherigen Problems ist."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3587,7 +3544,7 @@ msgstr ""
"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler "
"wegen voller Festplatte hindeutet."
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3595,7 +3552,16 @@ msgstr ""
"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler "
"wegen erschöpftem Arbeitsspeicher hindeutet."
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler "
+"wegen voller Festplatte hindeutet."
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3631,6 +3597,101 @@ msgstr ""
msgid "Not locked"
msgstr "Nicht gesperrt"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Hinweis: »%s« wird für Task »%s« gewählt.\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Hinweis: »%s« wird für regulären Ausdruck »%s« gewählt.\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Paket %s ist ein virtuelles Paket, das bereitgestellt wird von:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Nicht die Installationskandidat-Version]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Sie sollten eines explizit zum Installieren auswählen."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Paket %s ist nicht verfügbar, wird aber von einem anderen Paket\n"
+#~ "referenziert. Das kann heißen, dass das Paket fehlt, dass es abgelöst\n"
+#~ "wurde oder nur aus einer anderen Quelle verfügbar ist.\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Doch die folgenden Pakete ersetzen es:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Für Paket »%s« existiert kein Installationskandidat."
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Virtuelle Pakete wie »%s« können nicht entfernt werden.\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Paket »%s« ist nicht installiert, wird also auch nicht entfernt. Meinten "
+#~ "Sie »%s«?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Paket »%s« ist nicht installiert, wird also auch nicht entfernt.\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Hinweis: »%s« wird an Stelle von »%s« gewählt.\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "%s wird übersprungen; es ist schon installiert und ein Upgrade ist nicht "
+#~ "angefordert.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "%s wird übersprungen; es ist nicht installiert und lediglich Upgrades "
+#~ "sind angefordert.\n"
+
+#~ msgid "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"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s ist schon die neueste Version.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Version »%s« (%s) für »%s« gewählt.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Version »%s« (%s) für »%s« gewählt aufgrund von »%s«.\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr ""
+#~ "Nicht verfügbare Veröffentlichung »%s« von Paket »%s« wird ignoriert."
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "Herunterladen von %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Dies ist kein gültiges DEB-Archiv, da es weder »%s«, »%s« noch »%s« "
+#~ "enthält."
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5-Summe stimmt nicht überein"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Es konnte keine Datei für Paket %s gefunden werden. Das könnte heißen, "
+#~ "dass Sie dieses Paket von Hand korrigieren müssen."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "Schreiben des Protokolls nicht möglich, openpty() fehlgeschlagen (/dev/"
+#~ "pts nicht eingebunden?)\n"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "Datei %s beginnt nicht mit einer Klartext-signierten Nachricht."
diff --git a/po/dz.po b/po/dz.po
index b53139823..7f5b2cb17 100644
--- a/po/dz.po
+++ b/po/dz.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt_po.pot\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2006-09-19 09:49+0530\n"
"Last-Translator: Kinley Tshering <gasepkuenden2k3@hotmail.com>\n"
"Language-Team: Dzongkha <pgeyleg@dit.gov.bt>\n"
@@ -19,155 +19,157 @@ msgstr ""
"X-Poedit-Country: Bhutan\n"
"X-Poedit-SourceCharset: utf-8\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ %s à½à½¼à½“་རིམ་ %s ལུ་ ཌེཔ་མ་ཚང་ཅིག་འདུག:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:"
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:"
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr "སྤྱིར་བà½à½„་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུà¼"
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr "བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གཙང་མ་ཚུ:"
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr "བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་རà¾à¾±à½„་པ་ཚུ:"
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr "བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་སླ་བསྲེ་ཡོད་མི་ཚུ:"
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr "བརླག་སྟོར་ཞུགས་པ:"
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "à½à¾±à½‘་རྟགས་ཅན་གྱི་à½à½¼à½“་རིམ་ཚུ་གི་བསྡོམས:"
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
#, fuzzy
msgid "Total distinct descriptions: "
msgstr "à½à¾±à½‘་རྟགས་ཅན་གྱི་à½à½¼à½“་རིམ་ཚུ་གི་བསྡོམས:"
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "རྟེན་འབྲེལ་བསྡོམས:"
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "à½à½ºà½“་རིམ་/ཡིག་སྣོད་ མà½à½´à½“་འབྲེལ་གྱི་བསྡོམས:"
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
#, fuzzy
msgid "Total Desc/File relations: "
msgstr "à½à½ºà½“་རིམ་/ཡིག་སྣོད་ མà½à½´à½“་འབྲེལ་གྱི་བསྡོམས:"
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "ཡོངས་བསྡོམས་ཀྱིས་ས་à½à¾²à¼‹à½–ཟོ་བ་ཚུ་བྱིནམ་ཨིན:"
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "སྤུངས་ཡོད་པའི་ཡིག་རྒྱུན་གྱི་བསྡོམས:"
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "རྟེན་འབྲེལ་à½à½¼à½“་རིམ་བར་སྟོང་གྱི་བསྡོམས:"
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "བར་སྟོང་ལྷུག་ལྷུག་གི་བསྡོམས:"
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "གི་དོན་ལུ་རྩིས་à½à½¼à¼‹à½–à½à½¼à½“་ཡོད་པའི་བར་སྟོང:"
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་ %sའདི་མཉམ་འབྱུང་གི་ཕྱི་à½à½¢à¼‹à½¨à½²à½“་པསà¼"
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་མ་à½à½¼à½–à¼"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "à½à¾±à½¼à½‘་ཀྱིས་à½à½‚་à½à½‚་སྦེ་དཔེ་གཞི་གཅིག་བྱིན་དགོ"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "%sà½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ག་ཡོད་ཟཚོལ་མ་à½à½¼à½–à¼"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་ཡིག་སྣོད:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"འདྲ་མཛོད་འདི་མཉམ་བྱུང་གི་ཕྱི་à½à½¢à¼‹à½¨à½²à½“་པས་ à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་ཅིག་ལུ་ ཨེགསི་-རེཕ་འབད་མི་ཚུགས་པསà¼"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "à½à½–་གཟེར་བà½à½–་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(མ་à½à½¼à½–à¼)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr "གཞི་བཙུགས་འབད་ཡོདཔà¼"
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr "མི་ངོ:"
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ཅི་མེདà¼)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་à½à½–་གཟེར:"
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr "à½à½¼à½“་རིམ་à½à½²à½‚་à½à¾²à½˜à¼:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, fuzzy, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s་གི་དོན་ལུ་%s %sགུར་ཕྱོགས་སྒྲིག་འབད་ཡོད་པའི་%s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -243,36 +245,36 @@ msgstr ""
" ཧེང་བཀལ་བརྡ་དོན་གི་དོན་ལུ་ ཨེ་apt-cache(8)དང་apt.conf(5)ལག་à½à½¼à½‚་ཤོག་ལེབ་ཚུ་བལྟà¼.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
#, 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:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "ཌིསིཀ་ཅིག་འདྲེན་འཕྲུལ་ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབà¼"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "%s་ལུ་%s་བསà¾à¾±à½¢à¼‹à½˜à½²à½„་བà½à½‚ས་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "à½à¾±à½¼à½‘་ཀྱི་ཆ་ཚན་ནང་གི་སི་ཌི་ལྷག་ལུས་ཡོད་མི་གི་དོན་ལུ་འ་ནི་ལས་སྦྱོར་དེ་ཡང་བསà¾à¾±à½¢à¼‹à½ à½–དà¼"
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "སྒྲུབས་རྟགས་ཚུ་ཟུང་ནང་མིན་འདུག"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -300,605 +302,62 @@ msgstr ""
" -c=? འདི་གིས་འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིནà¼\n"
" -o=? མà½à½´à½“་སྒྲིག་གི་རིམ་སྒྲིག་འདི་གཞི་སྒྲིག་འབདà½à¼‹à½¨à½²à½“་ དཔེར་ན་-o dir::cache=/tmp་བཟུམà¼\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "à½à½ à½²à¼"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་ལུ་རྟེན་འབྲེལ་མ་ཚང་པས:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "འདི་འབདà½à¼‹à½‘་%s་འདི་གཞི་བཙུགས་འབད་ཡོདà¼"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "འདི་འབདà½à¼‹à½‘་%s་འདི་གཟི་བཙུགས་འབད་མི་བà½à½´à½–་པསà¼"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "འདི་འབདà½à¼‹à½‘་ འདི་བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་ཨིན་པསà¼"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "འདི་འབདà½à¼‹à½‘་འདི་གཞི་བཙུགས་མ་འབད་བསà¼"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "འདི་འབདà½à¼‹à½‘་འདི་གཞི་བཙུགས་མི་འབད་ནི་ཨིན་པསà¼"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr "ཡང་ནà¼"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་རྩ བསà¾à¾²à½‘་གà½à½„་འོང་:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་ལོག་སྟེ་རང་བཞག་ནུག:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་ཡར་བསà¾à¾±à½ºà½‘་འབད་འོང་:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲལ་འདི་ཚུ་མར་ཕབ་འབད་འོང་:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "འོག་གི་འཆང་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་བསྒྱུར་བཅོས་འབད་འོང་:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s( %s་གིས་སྦེ)"
-
-#: cmdline/apt-get.cc:600
-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"
-"à½à¾±à½¼à½‘་ཀྱིས་à½à¾±à½¼à½‘་རང་ག་ཅི་འབདà½à¼‹à½¨à½²à½“་ན་ངེས་སྦེ་མ་ཤེས་ཚུན་འདི་འབད་ནི་མི་འོང་à¼!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu་ཡར་བསà¾à¾±à½ºà½‘་འབད་ཡོད་ %lu་འདི་གསརཔ་སྦེ་གཞི་བཙུགས་འབད་ཡོདà¼"
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu་འདི་ལོག་གཞི་བཙུགས་འབད་ཡོདà¼"
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu་འདི་མར་ཕབ་འབད་ཡོདà¼"
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "རྩ་བསà¾à¾²à½‘་འབད་ནི་ལུ་%lu་དང་%lu་ཡར་བསà¾à¾±à½ºà½‘་མ་འབད་བསà¼\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu་འདི་ཆ་ཚང་སྦེ་གཞི་བཙུགས་མ་འབད་ཡང་ན་རྩ་བསà¾à¾²à½‘་མ་གà½à½„་པསà¼\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "དྲན་འཛིན་ རི་ཇེགསི་'%s'གི་དོན་ལུ་%s་སེལ་འà½à½´à¼‹à½ à½–ད་དོà¼\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "དྲན་འཛིན་ རི་ཇེགསི་'%s'གི་དོན་ལུ་%s་སེལ་འà½à½´à¼‹à½ à½–ད་དོà¼\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "གྱིས་བྱིན་à½à½ºà¼‹à½¡à½¼à½‘་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་ཨིནà¼\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [གཞི་བཙུགས་འབད་ཡོདà¼]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "མི་ངོ་འà½à½¼à½“་རིམཚུà¼"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "à½à¾±à½¼à½‘་ཀྱི་གཞི་བཙུགས་འབད་ནི་ལུ་གà½à½“་འà½à½£à¼‹à½¦à¾¦à½ºà¼‹à½‚ཅིག་སེལ་འà½à½´à¼‹à½ à½–ད་དགོ"
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་འà½à½¼à½–་མི་ཚུགས་པས་ འདི་འབདà½à¼‹à½‘་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གཞན་ཅིག་གིས་གྲོས་བསྟུན་འབད་དེ་ཡོདà¼\n"
-"འདི་གིས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་བརླག་སྟོར་ཞུགས་ཡོདཔ་ཨིནམ་སྟོནམ་ཨིནམ་དང་ ཕན་མེད་སྦེ་གནས་ཡོདཔ་ ཡང་ན་\n"
-"འདི་གཞན་འབྱུང་ཅིག་ནང་ལས་ལས་རà¾à¾±à½„མ་ཅིག་འà½à½¼à½–་ཚུགསཔ་ཨིན་པསà¼\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "ག་དེ་སྦེ་ཨིན་རུང་འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་གིས་ འདི་ཚབ་བཙུགསཔ་ཨིན:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་ལུ་གཞི་བཙུགས་ཀྱི་མི་ངོ་མིན་འདུག"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསà¾à¾²à½‘་མ་གà½à½„་པསà¼à¼‹\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསà¾à¾²à½‘་མ་གà½à½„་པསà¼à¼‹\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འà½à½´à¼‹à½ à½–ད་ནི་སེམས་à½à½¢à¼‹à½–ཞག\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསà¾à¾±à½ºà½‘་འབད་ནི་འདི་གཞི་སྒྲིག་མ་"
-"འབད་བསà¼\n"
-
-#: cmdline/apt-get.cc:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསà¾à¾±à½ºà½‘་འབད་ནི་འདི་གཞི་སྒྲིག་མ་"
-"འབད་བསà¼\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བà½à½´à½–་པསà¼\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འà½à½¼à½“་རིམ་གསར་ཤོས་ཅིག་ཨིནà¼\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, fuzzy, c-format
-msgid "%s set to manually installed.\n"
-msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "(%s)གི་དོན་ལུ་སེལ་འà½à½´à¼‹à½ à½–ད་ཡོད་པའི་འà½à½¼à½“་རིམ་'%s'(%s)\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "(%s)གི་དོན་ལུ་སེལ་འà½à½´à¼‹à½ à½–ད་ཡོད་པའི་འà½à½¼à½“་རིམ་'%s'(%s)\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "རྟེན་འབྲེལ་ནོར་བཅོས་འབད་དོà¼"
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr "འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "རྟེན་འབྲེལ་འདི་ནོར་བཅོས་འབད་མི་ཚུགས་པསà¼"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "ཡར་བསà¾à¾±à½ºà½‘་འབད་ཡོད་པའི་ཆ་ཚན་འདི་ཆུང་ཀུ་བཟོ་མི་ཚུགས་པསà¼"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr "འབད་ཚར་ཡིà¼"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "འ་ནི་འདི་ཚུ་ནོར་བཅོས་འབད་ནི་ལུ་à½à¾±à½¼à½‘་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་à¼"
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "མ་ཚང་པའི་རྟེན་འབྲེལ་ཚུ༠-f ལག་ལེན་འà½à½–་སྟེ་འབད་རྩོལ་བསà¾à¾±à½ºà½‘à¼"
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ཉེན་བརྡ:འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་བདེན་བཤད་འབད་མི་བà½à½´à½–་པསà¼"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "བདེན་བཤད་ཉེན་བརྡ་འདི་ཟུར་འབད་ཡོདà¼\n"
-
-#: cmdline/apt-get.cc:1108
-#, fuzzy
-msgid "Install these packages without verification?"
-msgstr "བདེན་སྦྱོར་མ་འབད་བར་འ་ནི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་གཞི་བཙུགས་འབད་ནི་ཨིན་ན་"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ལ་ལུ་ཅིག་བདེན་བཤད་འབད་མ་ཚུགསà¼"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "དཀའ་ངལ་ཚུ་ཡོདཔ་ལས་-y ་འདི་ --force-yes་མེདà½à½¼à½‚་ལས་ལག་ལེན་འà½à½–་སྟེ་ཡོདà¼"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-"ནང་འà½à½¼à½‘་ཀྱི་འཛོལ་བ་ གཞི་བཙུགས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་ ཆད་པ་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་དང་གཅིག་à½à½¢à¼‹à½–ོད་བརྡ་འབད་འདི་"
-"ཡོད!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་རྩ་བསà¾à¾²à½‘་བà½à½„་དགོཔ་འདུག་འདི་འབདགà½à¼‹à½‘་རྩ་བསà¾à¾²à½‘་གà½à½„་ནི་འདི་ལྕོགས་མིན་à½à½£à¼‹à½à½ºà¼‹à½ à½‘ུག"
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་ གོ་རིམ་བཟོ་ནི་ཚུ་མཇུག་མ་བསྡུ་བསà¼"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ email apt@packages.debian.org་ལུ་མà½à½´à½“་སྒྲིག་མི་འབད་"
-"བསà¼"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "%sBལེན་ནི་ལུ་དགོཔ་པས༠ཡིག་མཛོད་ཚི་གི་%sB་\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "ཡིག་མཛོད་ཀྱི་%sB་འདི་ལེན་དགོ་པསà¼\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, fuzzy, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "à½à¼‹à½¦à¾à½¼à½„་གི་%sB་འདི་བཤུབ་པའི་ཤུལ་ལས་ཌིཀསི་གི་བར་སྟོང་དེ་ལག་ལེན་འà½à½–་འོང་à¼\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, fuzzy, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལà½à¼‹à½¦à¾¦à½ºà¼‹à½£à½´à½¦à¼‹à½ à½¼à½„་à¼\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "%s་ནང་བར་སྟོང་"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "%s ནང་à½à¾±à½¼à½‘་ལུ་བར་སྟོང་དལà½à¼‹à½£à½„མ་སྦེ་མིན་འདུག"
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "གལ་ཆུང་རà¾à¾±à½„མ་ཅིག་à½à½¦à½£à¼‹à½–ཀོད་འབད་ནུག་ འདི་འབདà½à¼‹à½‘་འ་ནི་འདི་གལ་ཆུང་གི་བཀོལ་སྤྱོད་མེནà¼"
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"à½à¾±à½¼à½‘་ཀྱི་གནོད་ངན་འབྱུང་ནིའི་ལཱ་ཅི་འབད་ནི་འབད་དོà¼\n"
-"འཕྲོ་མà½à½´à½‘་འབད་ནིའི་དོན་ལུ་'%s'ཚིག་ཚན་ནང་ལུ་ཡིག་དཔར་རà¾à¾±à½–སà¼\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "བར་བཤོལ་འབདà¼"
-
-#: cmdline/apt-get.cc:1313
-#, fuzzy
-msgid "Do you want to continue?"
-msgstr "à½à¾±à½¼à½“་ཀྱི་འཕྲོ་མà½à½´à½‘་ནི་འབད་ནི་ཨིན་ན་"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "%s %s་ ལེན་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "ཕབ་ལེན་à½à½–ས་ལམ་རà¾à¾±à½„མ་གཅིག་ནང་མཇུག་བསྡུà½à¼‹à½¦à¾¦à½ºà¼‹à½¢à½„་ཕབ་ལེན་འབདà¼"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་མི་ཚུགས་པས་ apt-get་དུས་མà½à½´à½“་བཟོ་ནི་གཡོག་བཀོལ་ནི་ཨིན་ན་ཡང་ན་--fix-"
-"missing་དང་གཅིག་à½à½¢à¼‹à½ à½–ད་རྩོལ་བསà¾à¾±à½ºà½‘་ནི་ཨིན་ན་?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing་དང་བརྡ་ལམ་བརྗེ་སོར་འབད་ནི་འདི་ད་ལྟོ་ལས་རང་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à½²à¼‹à½ à½–ད་བསà¼"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པསà¼"
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོà¼"
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, fuzzy, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "འབྱུང་à½à½´à½„ས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་à½à½¼à¼‹à½¡à½²à½‚་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགསà¼"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "དུས་མà½à½´à½“་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབདà¼"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སà¾à½–ས་འདི་མོས་མà½à½´à½“་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:"
-
-#: cmdline/apt-get.cc:1853
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་ དཀའ་ངལ་མོས་མà½à½´à½“་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་à½à½£à¼‹à½¡à½¼à½‘à¼"
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:"
-msgstr[1] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:"
-msgstr[1] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "ནང་འགོད་འཛོལ་བ་ ཡར་བསà¾à¾±à½ºà½‘་ཀྱི་ཅ་ཆས་ཆ་མཉམ་མེདཔ་à½à½£à¼‹à½¡à½¼à½‘à¼"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་à½à¾±à½¼à½‘་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"མ་ཚང་བའི་རྟེན་འབྲེལ་ à½à½´à½¦à¼‹à½¦à¾’ྲིལ་མེད་མི་ཚུ་དང་གཅིག་à½à½¢à¼‹ 'apt-get -f install'དེ་འབà½à¼‹à½¢à¾©à½¼à½£à¼‹à½–སà¾à¾±à½ºà½‘པà¼"
-"(ཡང་ན་à½à½–ས་ཤེས་ཅིག་གསལ་བཀོད་འབདà¼)"
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ལ་ལུ་ཅིག་གཞི་བཙུགས་འབད་མ་ཚུགས༠འ་ནི་གི་དོན་དག་དེ་à½à¾±à½¼à½‘་ཀྱི་ མི་སྲིད་པའི་དུས་སà¾à½–ས་ཅིག་ཞུ་བ་"
-"འབད་འབདà½à¼‹à½ à½¼à½„་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསà¾à¾²à½´à½“་མ་འབད་བར་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་"
-"འབྱོར་གྱི་ཕྱི་à½à½¢à¼‹à½¢à¾©à¼‹à½–སà¾à¾²à½‘་བà½à½„་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འà½à½–་དོ་ཡོདཔ་འོང་ནི་ཨིན་པསà¼"
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "ཆད་པ་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུà¼"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་à½à½ºà½–ས་ཚུ་གཞི་བཙུགས་འབད་འོང་:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "%s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འཚོལ་མ་à½à½¼à½–à¼"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "ཡར་བསà¾à¾±à½ºà½‘་རྩིས་བà½à½¼à½“་དོ་... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "འབད་ཚར་ཡིà¼"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་ དཀའ་ངལ་མོས་མà½à½´à½“་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་à½à½£à¼‹à½¡à½¼à½‘à¼"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རà¾à¾±à½–ས་མ་ཚུགས་པསà¼"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "གི་དོན་ལུ་འབྱུང་à½à½´à½„ས་ལེན་ནི་ལུ་ཉུང་མà½à½ à¼‹à½¢à½„་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གཅིག་ལེན་དགོ"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "%s་གི་དོན་ལུ་འབྱུང་à½à½´à½„ས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་འཚོལ་མ་འà½à½¼à½–"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -906,106 +365,116 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "%s་ནང་བར་སྟོང་"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr " %s་ནང་à½à¾±à½¼à½‘་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་à½à½´à½„ས་ཡིག་མཛོད་ཀྱི་%sBà¼\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "འབྱུང་à½à½´à½„ས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསསà¼\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "%s་འབྱུང་à½à½´à½„ས་ལེནà¼\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "ཕབ་ལེན་à½à½–ས་ལམ་རà¾à¾±à½„མ་གཅིག་ནང་མཇུག་བསྡུà½à¼‹à½¦à¾¦à½ºà¼‹à½¢à½„་ཕབ་ལེན་འབདà¼"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོà¼\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "'dpkg-dev'་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གà½à½„་འབདà¼\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "ཆ་ལག་ལས་སྦྱོར་དེ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ནུག"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མà½à½ à¼‹à½¢à½„་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགསà¼"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s ལུ་བཟོ་བརྩིགས་རྟེན་འབྲེལ་མིན་འདུག\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
"packages"
msgstr "%sà½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་འà½à½¼à½–་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པསà¼"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, 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:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སà¾à½¼à½„་ནི་འདི་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་à½à½´à½˜à¼‹"
"སྒྲིལ་%s་དེ་གནམ་མེད་ས་མེད་གསརཔ་ཨིན་པསà¼"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1014,37 +483,37 @@ msgstr ""
"%s གི་དོན་ལུ་%s་རྟེན་འབྲེལ་འདི་གི་རེ་བ་སà¾à½¼à½„་མི་ཚུགས་ནུག་ག་ཅི་འབད་ཟེར་བ་ཅིན་à½à½´à½˜à¼‹à½¦à¾’རིལ་%s་གི་འà½à½¼à½“་རིམ་"
"ཚུ་འà½à½¼à½–་མ་ཚུགསཔ་ལས་བརྟེན་འà½à½¼à½“་རིམ་དགོས་མà½à½¼à¼‹à½šà½´à¼‹à½‚ི་རེ་བ་དོ་སà¾à½¼à½„་མ་ཚུགས་པསà¼"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
"version"
msgstr "%sà½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་འà½à½¼à½–་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པསà¼"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "%s: %s་གི་དོན་ལུ་་%s་རྟེན་འབྲེལ་འདི་ངལ་རངས་འབད་ནི་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ནུག"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr " %s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་འདི་ངལ་རངས་མ་ཚུགས་པསà¼"
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "བཟོ་བརྩིགས་རྟེན་འབྲེལ་འདི་ལས་སྦྱོར་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔ་ཨིནà¼"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "%s (%s)་ལུ་མà½à½´à½‘་དོà¼"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½ à½–ད་ཡོད་པའི་ཚད་གཞི་ཚུ:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1133,98 +602,53 @@ msgstr ""
"ཤོག་ལེབ་ཚུ་ལུ་བལྟà¼\n"
" འ་ནི་ ཨེ་ཊི་པི་འདི་ལུ་ཡང་དག་ ཀའུ་ ནུས་ཤུགས་ཚུ་ཡོདà¼\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "ཨེབà¼"
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "ལེན:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "ཨེལ་ཇི་ཨེན:"
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "ཨི་ཨར་ཨརà¼"
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%s (%sB/s)་ནང་ལུ་%sB་དེ་ལེན་ཡོདཔ་ཨིནà¼\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [ལཱ་འབད་དོà¼]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"བརྡ་ལམ་བསྒྱུར་བཅོས:à½à¼‹à½¡à½²à½‚་བཀོད་ཡོད་པའི་ཌིསིཀ་འདི་\n"
-" '%s'\n"
-"འདྲེན་འཕྲུལ་'%s'ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབà¼\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "འདི་འབདà½à¼‹à½‘་འདི་གཞི་བཙུགས་མ་འབད་བསà¼"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འà½à½¼à½“་རིམ་གསར་ཤོས་ཅིག་ཨིནà¼\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འà½à½¼à½“་རིམ་གསར་ཤོས་ཅིག་ཨིནà¼\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "%s་གི་དོན་ལུ་བསྒུག་སྡོད་ཅི་ འདི་འབདà½à¼‹à½‘་ཕར་མིན་འདུག"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "%s་ག་ཕྱེ་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔà¼"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1246,6 +670,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1344,8 +785,8 @@ msgstr "མà½à½´à½‘་ལམ་ངལ་མཚམས"
msgid "Server closed the connection"
msgstr "སར་བར་གྱིས་མà½à½´à½‘་ལམ་འདི་à½à¼‹à½–སྡམས་à½à½ºà¼‹à½¡à½¼à½‘པ་ཨིནà¼"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "འཛོལ་བ་ལྷབà¼"
@@ -1358,8 +799,8 @@ msgid "Protocol corruption"
msgstr "གནད་སྤེལ་ལམ་ལུགས་ ངན་ཅནà¼"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "འཛོལ་བ་འབྲིà¼"
@@ -1371,6 +812,10 @@ msgstr "སོ་ཀེཊི་ཅིག་གསར་བསà¾à¾²à½´à½“་འ
msgid "Could not connect data socket, connection timed out"
msgstr "གནད་སྡུད་སོ་ཀེཊི་མà½à½´à½‘་མ་ཚུགས་པར་ཡོདཔ་ཨིན་ མà½à½´à½‘་ལམ་ངལ་མཚམསà¼"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "བྱ་ཡུལ་གྱི་སོ་ཀེཊི་མà½à½´à½‘་མ་ཚུགསà¼"
@@ -1413,7 +858,7 @@ msgstr "གནད་སྡུད་སོ་ཀེཊི་ མà½à½´à½‘་ནà½
msgid "Unable to accept connection"
msgstr "མà½à½´à½‘་ལམ་འདི་དང་ལེན་འབད་མ་ཚུགསà¼"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "ཡིག་སྣོད་ལུ་་དྲྭ་རྟགས་བཀལ་བའི་བསྒང་དཀའ་ངལà¼"
@@ -1546,81 +991,594 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིà½à¼‹à½‘་འཛོལ་བà¼"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ༠à½à½‚་རིང་མཇུག་གི་མà½à½´à½‘་ལམ་དེ་à½à¼‹à½–སྡམསà¼"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བà¼"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "ཡིག་སྣོད་ལུ་འབྲིà½à¼‹à½‘་འཛོལ་བà¼"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "སེལ་འà½à½´à¼‹à½ à½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "མà½à½´à½‘་ལམ་ངལ་མཚམས་འབད་ཡོདà¼"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིà½à¼‹à½‘་འཛོལ་བà¼"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "མགོ་ཡིག་ཚུ་གི་དོན་ལུ་བསྒ྄ག་དོà¼"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "མགོ་ཡིག་གི་གྲལ་à½à½²à½‚་བྱང་ཉེསà¼"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ནུས་མེད་ལན་གསལ་གི་མགོ་ཡིག་ཅིག་བà½à½„་ཡོདà¼"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "ཨེཆི་ཊི་ཊི་པི་སར་བར་འདི་གིས་ནུས་མེད་ནང་དོན་རིང་-ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བà½à½„་ཡོདà¼"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ནུས་མེད་ ནང་དོན་-à½à¾±à½–་ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བà½à½„་ཡོདà¼"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "འ་ནི་ ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ à½à¾±à½–་ཚད་ཀྱི་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½‘ེ་ཆད་པ་བཟོ་བà½à½„་ནུག"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "སེལ་འà½à½´à¼‹à½ à½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེསà¼"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "མà½à½´à½‘་ལམ་ངལ་མཚམས་འབད་ཡོདà¼"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "བà½à½´à½‘་ལམ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིà½à¼‹à½‘་འཛོལ་བà¼"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "ནང་འà½à½¼à½‘་འཛོལ་བà¼"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "ཡིག་སྣོད་ལུ་འབྲིà½à¼‹à½‘་འཛོལ་བà¼"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིà½à¼‹à½‘་འཛོལ་བà¼"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+"ནང་འà½à½¼à½‘་ཀྱི་འཛོལ་བ་ གཞི་བཙུགས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་ ཆད་པ་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་དང་གཅིག་à½à½¢à¼‹à½–ོད་བརྡ་འབད་འདི་"
+"ཡོད!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ༠à½à½‚་རིང་མཇུག་གི་མà½à½´à½‘་ལམ་དེ་à½à¼‹à½–སྡམསà¼"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་རྩ་བསà¾à¾²à½‘་བà½à½„་དགོཔ་འདུག་འདི་འབདགà½à¼‹à½‘་རྩ་བསà¾à¾²à½‘་གà½à½„་ནི་འདི་ལྕོགས་མིན་à½à½£à¼‹à½à½ºà¼‹à½ à½‘ུག"
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བà¼"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་ གོ་རིམ་བཟོ་ནི་ཚུ་མཇུག་མ་བསྡུ་བསà¼"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེསà¼"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ email apt@packages.debian.org་ལུ་མà½à½´à½“་སྒྲིག་མི་འབད་"
+"བསà¼"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "བà½à½´à½‘་ལམ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "%sBལེན་ནི་ལུ་དགོཔ་པས༠ཡིག་མཛོད་ཚི་གི་%sB་\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "ནང་འà½à½¼à½‘་འཛོལ་བà¼"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "ཡིག་མཛོད་ཀྱི་%sB་འདི་ལེན་དགོ་པསà¼\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "à½à¼‹à½¦à¾à½¼à½„་གི་%sB་འདི་བཤུབ་པའི་ཤུལ་ལས་ཌིཀསི་གི་བར་སྟོང་དེ་ལག་ལེན་འà½à½–་འོང་à¼\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལà½à¼‹à½¦à¾¦à½ºà¼‹à½£à½´à½¦à¼‹à½ à½¼à½„་à¼\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "%s ནང་à½à¾±à½¼à½‘་ལུ་བར་སྟོང་དལà½à¼‹à½£à½„མ་སྦེ་མིན་འདུག"
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "དཀའ་ངལ་ཚུ་ཡོདཔ་ལས་-y ་འདི་ --force-yes་མེདà½à½¼à½‚་ལས་ལག་ལེན་འà½à½–་སྟེ་ཡོདà¼"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "གལ་ཆུང་རà¾à¾±à½„མ་ཅིག་à½à½¦à½£à¼‹à½–ཀོད་འབད་ནུག་ འདི་འབདà½à¼‹à½‘་འ་ནི་འདི་གལ་ཆུང་གི་བཀོལ་སྤྱོད་མེནà¼"
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"à½à¾±à½¼à½‘་ཀྱི་གནོད་ངན་འབྱུང་ནིའི་ལཱ་ཅི་འབད་ནི་འབད་དོà¼\n"
+"འཕྲོ་མà½à½´à½‘་འབད་ནིའི་དོན་ལུ་'%s'ཚིག་ཚན་ནང་ལུ་ཡིག་དཔར་རà¾à¾±à½–སà¼\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "བར་བཤོལ་འབདà¼"
+
+#: apt-private/private-install.cc:254
+#, fuzzy
+msgid "Do you want to continue?"
+msgstr "à½à¾±à½¼à½“་ཀྱི་འཕྲོ་མà½à½´à½‘་ནི་འབད་ནི་ཨིན་ན་"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་མི་ཚུགས་པས་ apt-get་དུས་མà½à½´à½“་བཟོ་ནི་གཡོག་བཀོལ་ནི་ཨིན་ན་ཡང་ན་--fix-"
+"missing་དང་གཅིག་à½à½¢à¼‹à½ à½–ད་རྩོལ་བསà¾à¾±à½ºà½‘་ནི་ཨིན་ན་?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing་དང་བརྡ་ལམ་བརྗེ་སོར་འབད་ནི་འདི་ད་ལྟོ་ལས་རང་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à½²à¼‹à½ à½–ད་བསà¼"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པསà¼"
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོà¼"
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སà¾à½–ས་འདི་མོས་མà½à½´à½“་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:"
+
+#: apt-private/private-install.cc:517
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་ དཀའ་ངལ་མོས་མà½à½´à½“་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་à½à½£à¼‹à½¡à½¼à½‘à¼"
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:"
+msgstr[1] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:"
+msgstr[1] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་à½à¾±à½¼à½‘་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"མ་ཚང་བའི་རྟེན་འབྲེལ་ à½à½´à½¦à¼‹à½¦à¾’ྲིལ་མེད་མི་ཚུ་དང་གཅིག་à½à½¢à¼‹ 'apt-get -f install'དེ་འབà½à¼‹à½¢à¾©à½¼à½£à¼‹à½–སà¾à¾±à½ºà½‘པà¼"
+"(ཡང་ན་à½à½–ས་ཤེས་ཅིག་གསལ་བཀོད་འབདà¼)"
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ལ་ལུ་ཅིག་གཞི་བཙུགས་འབད་མ་ཚུགས༠འ་ནི་གི་དོན་དག་དེ་à½à¾±à½¼à½‘་ཀྱི་ མི་སྲིད་པའི་དུས་སà¾à½–ས་ཅིག་ཞུ་བ་"
+"འབད་འབདà½à¼‹à½ à½¼à½„་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསà¾à¾²à½´à½“་མ་འབད་བར་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་"
+"འབྱོར་གྱི་ཕྱི་à½à½¢à¼‹à½¢à¾©à¼‹à½–སà¾à¾²à½‘་བà½à½„་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འà½à½–་དོ་ཡོདཔ་འོང་ནི་ཨིན་པསà¼"
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "ཆད་པ་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུà¼"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་à½à½ºà½–ས་ཚུ་གཞི་བཙུགས་འབད་འོང་:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ཉེན་བརྡ:འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་བདེན་བཤད་འབད་མི་བà½à½´à½–་པསà¼"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "བདེན་བཤད་ཉེན་བརྡ་འདི་ཟུར་འབད་ཡོདà¼\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ལ་ལུ་ཅིག་བདེན་བཤད་འབད་མ་ཚུགསà¼"
+
+#: apt-private/private-download.cc:46
+#, fuzzy
+msgid "Install these packages without verification?"
+msgstr "བདེན་སྦྱོར་མ་འབད་བར་འ་ནི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་གཞི་བཙུགས་འབད་ནི་ཨིན་ན་"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "%s %s་ ལེན་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [གཞི་བཙུགས་འབད་ཡོདà¼]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [གཞི་བཙུགས་འབད་ཡོདà¼]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [གཞི་བཙུགས་འབད་ཡོདà¼]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་ལུ་རྟེན་འབྲེལ་མ་ཚང་པས:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "འདི་འབདà½à¼‹à½‘་%s་འདི་གཞི་བཙུགས་འབད་ཡོདà¼"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "འདི་འབདà½à¼‹à½‘་%s་འདི་གཟི་བཙུགས་འབད་མི་བà½à½´à½–་པསà¼"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "འདི་འབདà½à¼‹à½‘་ འདི་བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་ཨིན་པསà¼"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "འདི་འབདà½à¼‹à½‘་འདི་གཞི་བཙུགས་མ་འབད་བསà¼"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "འདི་འབདà½à¼‹à½‘་འདི་གཞི་བཙུགས་མི་འབད་ནི་ཨིན་པསà¼"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr "ཡང་ནà¼"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་རྩ བསà¾à¾²à½‘་གà½à½„་འོང་:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་ལོག་སྟེ་རང་བཞག་ནུག:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་ཡར་བསà¾à¾±à½ºà½‘་འབད་འོང་:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲལ་འདི་ཚུ་མར་ཕབ་འབད་འོང་:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "འོག་གི་འཆང་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་བསྒྱུར་བཅོས་འབད་འོང་:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s( %s་གིས་སྦེ)"
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ཉེན་བརྡ:འོག་གི་ཉོ་མà½à½¼à¼‹à½–འི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་རྩ་བསà¾à¾²à½‘་གà½à½„་འོང་à¼\n"
+"à½à¾±à½¼à½‘་ཀྱིས་à½à¾±à½¼à½‘་རང་ག་ཅི་འབདà½à¼‹à½¨à½²à½“་ན་ངེས་སྦེ་མ་ཤེས་ཚུན་འདི་འབད་ནི་མི་འོང་à¼!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu་ཡར་བསà¾à¾±à½ºà½‘་འབད་ཡོད་ %lu་འདི་གསརཔ་སྦེ་གཞི་བཙུགས་འབད་ཡོདà¼"
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu་འདི་ལོག་གཞི་བཙུགས་འབད་ཡོདà¼"
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu་འདི་མར་ཕབ་འབད་ཡོདà¼"
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "རྩ་བསà¾à¾²à½‘་འབད་ནི་ལུ་%lu་དང་%lu་ཡར་བསà¾à¾±à½ºà½‘་མ་འབད་བསà¼\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu་འདི་ཆ་ཚང་སྦེ་གཞི་བཙུགས་མ་འབད་ཡང་ན་རྩ་བསà¾à¾²à½‘་མ་གà½à½„་པསà¼\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "à½à½ à½²à¼"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "རྟེན་འབྲེལ་ནོར་བཅོས་འབད་དོà¼"
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr "འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "རྟེན་འབྲེལ་འདི་ནོར་བཅོས་འབད་མི་ཚུགས་པསà¼"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "ཡར་བསà¾à¾±à½ºà½‘་འབད་ཡོད་པའི་ཆ་ཚན་འདི་ཆུང་ཀུ་བཟོ་མི་ཚུགས་པསà¼"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr "འབད་ཚར་ཡིà¼"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "འ་ནི་འདི་ཚུ་ནོར་བཅོས་འབད་ནི་ལུ་à½à¾±à½¼à½‘་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་à¼"
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "མ་ཚང་པའི་རྟེན་འབྲེལ་ཚུ༠-f ལག་ལེན་འà½à½–་སྟེ་འབད་རྩོལ་བསà¾à¾±à½ºà½‘à¼"
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "དུས་མà½à½´à½“་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབདà¼"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "ཡར་བསà¾à¾±à½ºà½‘་རྩིས་བà½à½¼à½“་དོ་... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "ནང་འགོད་འཛོལ་བ་ ཡར་བསà¾à¾±à½ºà½‘་ཀྱི་ཅ་ཆས་ཆ་མཉམ་མེདཔ་à½à½£à¼‹à½¡à½¼à½‘à¼"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "འབད་ཚར་ཡིà¼"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "%s་ལུ་%s་བསà¾à¾±à½¢à¼‹à½˜à½²à½„་བà½à½‚ས་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "ཨེབà¼"
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "ལེན:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "ཨེལ་ཇི་ཨེན:"
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "ཨི་ཨར་ཨརà¼"
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%s (%sB/s)་ནང་ལུ་%sB་དེ་ལེན་ཡོདཔ་ཨིནà¼\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [ལཱ་འབད་དོà¼]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"བརྡ་ལམ་བསྒྱུར་བཅོས:à½à¼‹à½¡à½²à½‚་བཀོད་ཡོད་པའི་ཌིསིཀ་འདི་\n"
+" '%s'\n"
+"འདྲེན་འཕྲུལ་'%s'ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབà¼\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "%s་འདི་ལུ་ལྷག་མ་ཚུགསà¼"
@@ -1679,36 +1637,36 @@ msgstr "ཡན་ལག་ལས་སྦྱོར་ལུ་ཨའི་པི
msgid "Connection closed prematurely"
msgstr "དུས་སུ་མ་འབབ་པ་རང་མà½à½´à½‘་ལམ་འདི་ག་བསྡམས་ཡོདà¼"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "སྔོན་སྒྲིག་བྱང་ཉེས་གཞི་སྒྲིག་འབད་དོ་!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "འཕྲོ་མà½à½´à½‘་འབད་ནིའི་དོན་ལུ་ལོག་ལྡེ་འདི་ཨེབà¼"
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr ""
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "སྦུང་ཚན་བཟོ་བཤོལ་འབད་བའི་བར་ན་ འཛོལ་བ་དག་པ་ཅིག་བྱུང་ནུག་ ང་གི་"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་རིམ་སྒྲིག་འབད་ནི་ཨིནà¼à¼‹à½ à¼‹à½“ི་འདི་གིས་ ངོ་བཤུས་རྫུན་མ་"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"ཡང་ན་བརླག་སྟོར་ཞུགས་ཡོད་པའི་རྟེན་འབྲེལ་གི་རྒྱུ་རà¾à¾±à½ºà½“་ལས་བརྟེན་པའི་འཛོལ་བ་ཚུ་ནང་ལུ་གྲུབ་འབྲས་འà½à½¼à½“་འོང་༠"
"འདི་དེ་བà½à½´à½–་པས་"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1963,36 +1921,36 @@ msgstr "%s་འབྲེལ་ལམ་ལྷག་ནི་ལུ་འà½à½´à
msgid "Failed to unlink %s"
msgstr "%s་འབྲེལ་ལམ་མེད་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔà¼"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** %s་ལས་%sལུ་འབྲེལ་འà½à½´à½‘་འབད་ནི་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔà¼"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr "%sB་ཧེང་བཀལ་བཀྲམ་ནིའི་འབྲེལ་མེད་བཅད་མཚམསà¼\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "ཡིག་མཛོད་ལུ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅི་ཡང་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½˜à¼‹à½–ྱུང་à¼"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %sལུ་ཟུར་བཞག་à½à½¼à¼‹à½–ཀོད་མེདà¼\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s ་རྒྱུན་སà¾à¾±à½¼à½„་པ་འདི་ %s ཨིན་ %s མེནà¼\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s ལུ་འབྱུང་à½à½´à½„ས་མེདཔ་གà½à½„་ནིའི་à½à½¼à¼‹à½–ཀོད་འདི་མེདà¼\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %sལུ་ཟུང་ལྡན་མེདཔ་གà½à½„་ནིའི་་à½à½¼à¼‹à½–ཀོད་གང་རུང་ཡང་མིན་འདུགà¼\n"
@@ -2071,7 +2029,7 @@ msgstr "%s་འབྲེལ་འà½à½´à½‘་མེདཔ་བཟོ་ནིà
msgid "Failed to rename %s to %s"
msgstr "%s་ལུ་%s་བསà¾à¾±à½¢à¼‹à½˜à½²à½„་བà½à½‚ས་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2142,7 +2100,7 @@ msgstr "ངན་ཅན་གྱི་ཡིག་མཛོདà¼"
msgid "Tar checksum failed, archive corrupted"
msgstr "ཊར་ཅེག་སམ་དེ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོད་ ཡིག་མཛོད་ངན་ཅན་བྱུང་ནུག"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "མ་ཤེས་པའི་ ཊཱར་་མགོ་ཡིག་་དབྱེ་བ་ %u་ འà½à½´à½¦à¼‹à½˜à½²à¼‹ %sà¼"
@@ -2266,22 +2224,17 @@ msgid "Unable to stat %s"
msgstr "%s་འདི་ལུ་ངོ་བཤུས་འབད་མ་ཚུགསà¼"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "འ་ནི་འདི་ ཌི་ཨི་བི་ཡིག་མཛོད་ནུས་ཅན་ཅིག་མེན་པས་ '%s'འà½à½´à½¦à¼‹à½˜à½²à¼‹à½–རླག་སྟོར་ཞུགས་དོà¼"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, fuzzy, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "འ་ནི་འདི་ཌི་ཨི་བི་ཡིག་མཛོད་ནུས་ཅན་ཅིག་མེན་པས་ འདི་ལུ་'%s'ཡང་ན་'%s'འà½à½´à½¦à¼‹à½˜à½²à¼‹à½˜à½²à½“་འདུག"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་གིས་འà½à½´à½¦à¼‹à½˜à½²à¼‹%sའདི་ག་ཡོད་འཚོལ་མ་འà½à½¼à½–à¼"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "མིང་དཔྱད་འབད་མ་བà½à½´à½–་པའི་ཚད་འཛིན་ཡིག་སྣོདà¼"
@@ -2339,85 +2292,85 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "སེལ་འà½à½´à¼‹%s ་མ་འà½à½¼à½–à¼"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "ངོ་མ་ཤེས་པའི་སྡུད་ཚིག་གི་དབྱེ་བ:'%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s་འདི་à½à¼‹à½•à¾±à½ºà¼‹à½‘ོà¼"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "་ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: སྡེབ་ཚན་གྱིས་མིང་མེད་མི་དང་གཅིག་à½à½¢à¼‹à½ à½‚ོ་བཙུགསཔ་ཨིན"
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཟོ་ཉེས་འགྱུར་བའི་ངོ་རྟགསà¼"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:གནས་གོང་གི་ཤུལ་ལས་མà½à½¼à¼‹à½˜à½ºà½‘་à½à½ºà½–སà¼"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རà¾à¾±à½„མ་ཅིག་བྱིན་ཚུགསà¼"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:འདུ་འཛོམས་འབད་འབདà½à¼‹à½£à½ºà¼‹à½¤à½±à¼‹à½‚ྲངས་སུ་བཙུགསཔ་ཨིནà¼"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ནཱ་ལས་རང་འགོ་བཙུགས་གྲངས་སུ་བཙུགས་à½à½ºà¼‹à½¡à½¼à½‘à¼"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à¼‹à½ à½–ད་བར་ཡོད་པའི་'%s'བཀོད་རྒྱà¼"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རà¾à¾±à½„མ་ཅིག་བྱིན་ཚུགསà¼"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ཡིག་སྣོད་ཀྱི་མཇུག་ལུ་མà½à½¼à¼‹à½˜à½ºà½‘་à½à½ºà½–སà¼"
@@ -2442,48 +2395,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... འབད་ཚར་ཡོདà¼"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "བརྡ་བཀོད་གྲལ་à½à½²à½‚་གྱི་གདམ་à½à¼‹'%c'[%s་ནང་ལས་]འདི་མ་ཤེས་པསà¼"
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "བ་རྡ་བཀོད་གྲལ་à½à½²à½‚་གི་གདམ་à½à¼‹%s་འདི་ཧ་མ་གོ་བསà¼"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "བརྡ་བཀོད་གྲལ་à½à½²à½‚་གི་གདམ་à½à¼‹%s་འདི་བུ་ལིན་མེན་པསà¼"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "གདམ་à½à¼‹%s་ལུ་སྒྲུབ་རྟགས་ཅིག་དགོ་པསà¼"
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "གདམ་à½à¼‹%s:རིམ་སྒྲིག་གི་རྣམ་གྲངས་གསལ་བཀོད་ལུ་ =<val> ་ཅིག་དགོཔ་ཨིནà¼"
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "གདམ་à½à¼‹ %s ་ལུ་'%s'་མེན་པར་ ཧྲིལ་ཨང་སྒྲུབ་རྟགས་ཅིག་དགོས་མà½à½¼à¼‹à½¡à½¼à½‘པ་ཨིན"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "གདམ་à½à¼‹'%s'འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "དྲན་ཤེས་ %s་འདི་ཧ་གོ་མ་ཚུགས་པས་ བདེན་པ་ཡང་ན་རྫུན་པ་ལུ་འབད་རྩོལ་བསà¾à¾±à½ºà½‘པà¼"
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s"
@@ -2497,117 +2450,117 @@ msgstr "སྦྱར་བརྩེགས་ས་ཚིགས་%s་འདིà
msgid "Failed to stat the cdrom"
msgstr "སི་ཌི་རོམ་འདི་ངོ་བཤུས་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "ཡིག་སྣོད་འདི་à½à¼‹à½–སྡམས་པའི་བསྒང་དཀའ་ངལà¼"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "%s ལྷག་ནི་རà¾à¾±à½„མ་ཅིག་འབད་མི་ལྡེ་མིག་ཡིག་སྣོད་འདི་གི་དོན་ལུ་ལྡེ་མིག་རà¾à¾±à½–་ནི་ལག་ལེན་མི་འà½à½–་པསà¼"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "ལྡེ་མིག་རà¾à¾±à½–ས་ཡོད་པའི་ཡིག་སྣོད་%s་འདི་à½à¼‹à½•à¾±à½ºà¼‹à½˜à¼‹à½šà½´à½‚སà¼"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
"ཨེན་ཨེཕ་ཨེསི་ %s སྦྱར་བརྩེགས་འབད་ཡོད་པའི་ལྡེ་མིག་ཡིག་སྣོད་ཀྱི་དོན་ལུ་ལྡེ་མིག་རà¾à¾±à½–་ནི་ལག་ལེན་མི་འà½à½–་པསà¼"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "%sལྡེ་མིག་རà¾à¾±à½–་ནི་ལེན་མ་ཚུགསà¼"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སà¾à¾±à½¼à½“་ཅིག་à½à½¼à½–་ཡོདཔ་ཨིནà¼"
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སà¾à¾±à½¼à½“་ཅིག་à½à½¼à½–་ཡོདཔ་ཨིནà¼"
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "ཡན་ལག་ལས་སྦྱོར་%s་གིས་འཛོལ་བའི་ཨང་རྟགས་(%u)ཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིནà¼"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "ཡན་ལག་ལས་སྦྱོར་་%s་གིས་རེ་བ་མེད་པར་ཕྱིར་à½à½¼à½“་ཡོདཔ་ཨིནà¼"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "%s་ཡིག་སྣོད་འདི་à½à¼‹à½•à¾±à½ºà¼‹à½˜à¼‹à½šà½´à½‚སà¼"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་à½à¼‹à½•à¾±à½ºà¼‹à½˜à¼‹à½šà½´à½‚སà¼"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "ཡན་ལག་ལས་སྦྱོར་ ཨའི་པི་སི་ གསར་བསà¾à¾²à½´à½“་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "ཨེབ་འཕྲུལ་ལག་ལེན་འà½à½–་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "ལྷག་ ད་ལྟོ་ཡང་ལྷག་ནི་ལུ་%lu་ཡོད་འདི་འབདà½à¼‹à½‘་ཅི་ཡང་ལྷག་ལུས་མིན་འདུག"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "འབྲི་ ད་ལྟོ་ཡང་འབྲི་ནི་ལུ་%lu་ཡོད་འདི་འདབà½à¼‹à½‘་འབད་མ་ཚུགསà¼"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "ཡིག་སྣོད་འདི་à½à¼‹à½–སྡམས་པའི་བསྒང་དཀའ་ངལà¼"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདà½à¼‹à½‘་དཀའ་ངལà¼"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "ཡིག་སྣོད་འདི་འབྲེལལམ་མེདཔ་བཟོ་བའི་བསྒང་དཀའ་ངལà¼"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདà½à¼‹à½‘་དཀའ་ངལà¼"
@@ -2726,12 +2679,12 @@ msgstr "%s་ག་ཕྱེ་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–à
msgid "Failed to write temporary StateFile %s"
msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "%s (༡་)་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགསà¼"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "%s (༢་)་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགསà¼"
@@ -2806,19 +2759,19 @@ msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་à½à½²
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་à½à½²à½‚་%u་གུར་ལུ་ཡོདཔ་འབྱུང་à½à½´à½„ས་à½à½¼à¼‹à½¡à½²à½‚་%s་གི་ནང་ན་མ་ཤེས་པསà¼"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "%s་ཡིག་སྣོད་འདི་à½à¼‹à½•à¾±à½ºà¼‹à½˜à¼‹à½šà½´à½‚སà¼"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2843,7 +2796,7 @@ msgstr ""
"à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདà½à¼‹à½‘་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་"
"མ་à½à½¼à½–à¼"
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2851,19 +2804,10 @@ msgstr ""
"འཛོལ་བ་ pkgProblemResolver::གིས་བཟོ་བà½à½¼à½“་འབད་ཡོད་པའི་མཚམས་དེ་ཚུ་མོས་མà½à½´à½“་བཟོà½à¼‹à½¨à½²à½“ འ་ནི་à½à½´à½˜à¼‹"
"སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རà¾à¾±à½ºà½“་ལས་བརྟེན་ཨིན་པསà¼"
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ à½à¾±à½¼à½‘་ཀྱི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག"
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"ཟུར་à½à½¼à¼‹à½¡à½²à½‚་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ནུག་ འདི་ཚུ་སྣང་མེད་སྦེ་བཞགཔ་མ་ཚད་ ཚབ་ལུ་"
-"རྙིངམ་འདི་ཚུ་ལག་ལེན་འà½à½–་ནུག"
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2906,12 +2850,12 @@ msgstr "à½à½–ས་ལམ་ %s འདི་ངེས་བདེན་སྦà½
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "à½à¼‹à½¡à½²à½‚་བཀོད་ཡོད་པའི་ ཌིསི་འདི་བཙུགས་གནང་༠'%s'འདྲེན་འཕྲུལ་ནང་'%s' དང་ལོག་ལྡེ་འདི་ཨེབà¼à¼‹"
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "སྦུང་ཚན་བཟོ་ནིའི་རིམ་ལུགས་ '%s' འདི་ལུ་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à¼‹à½ à½–ད་བསà¼"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "འོས་འབབ་དང་ལྡན་པའི་སྦུང་ཚན་རིམ་ལུགས་ཀྱི་དབྱེ་བ་ཅིག་གà½à½“་འབེབས་བཟོ་མི་ཚུགས་པསà¼"
@@ -2944,17 +2888,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "དགའ་གདམ་ཡིག་སྣོད་ནང་ལུ་ནུས་མེད་ཀྱི་དྲན་à½à½¼à¼‹ à½à½´à½˜à¼‹à½¦à¾’ྲིལ་མགོ་ཡིག་མིན་འདུག"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "ངོ་རྟགས་ཨང་གི་དབྱེ་བ་ %s འདི་ཧ་གོ་མ་ཚུགསà¼"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "གོ་རྟགས་ཨང་གི་དོན་ལུ་ གཙོ་རིམ་(ཡང་ན་ ཀླད་ཀོར་)ཚུ་གསལ་བཀོད་མ་འབད་བསà¼"
@@ -3022,45 +2966,49 @@ msgstr "IO འཛོལ་བ་འབྱུང་à½à½´à½„ས་འདྲ་མ
msgid "rename failed, %s (%s -> %s)."
msgstr "%s (%s -> %s)བསà¾à¾±à½¢à¼‹à½˜à½²à½„་བà½à½‚ས་ནི་འདི་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔ་ཨིནà¼"
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "ཨེམ་ཌི་༥་ à½à¾±à½¼à½“་བསྡོམས་མ་མà½à½´à½“་པà¼"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
#, fuzzy
msgid "Hash Sum mismatch"
msgstr "ཨེམ་ཌི་༥་ à½à¾±à½¼à½“་བསྡོམས་མ་མà½à½´à½“་པà¼"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "ཚད་མ་མà½à½´à½“à¼"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "%s (༡་)་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགསà¼"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "འོག་གི་ ཨའི་ཌི་་ ལྡེ་མིག་ཚུ་གི་དོན་ལུ་མི་དམང་གི་ལྡེ་མིག་འདི་འà½à½¼à½–་མི་ཚུགས་པས:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3068,12 +3016,12 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3082,32 +3030,24 @@ msgstr ""
" %s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འà½à½¼à½–་པས༠འདི་འབདà½à¼‹à½£à½¦à¼‹à½à¾±à½¼à½‘་ཀྱི་ལག་à½à½¼à½‚་ལས་ "
"འ་ནི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག (arch འདི་བྱིག་སོངམ་ལས་བརྟེནà¼)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-" %s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འà½à½¼à½–་པས༠འདི་འབདà½à¼‹à½£à½¦à¼‹à½à¾±à½¼à½‘་ཀྱི་ལག་à½à½¼à½‚་ལས་ "
-"འ་ནི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག "
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
"à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ ཟུར་à½à½¼à¼‹à½¡à½²à½‚་སྣོད་ཚུ་ངན་ཅན་འགྱོ་ནུག ཡིག་སྣོད་ཀྱི་མིང་མིན་འདུག: %s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་དོན་ལུ་ས་སྒོà¼"
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "ཚད་མ་མà½à½´à½“à¼"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "%s (༡་)་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགསà¼"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འà½à½´à¼‹à½ à½–ད་ནི་སེམས་à½à½¢à¼‹à½–ཞག\n"
@@ -3251,49 +3191,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "ཨེམ་ཌི་༥་ à½à¾±à½¼à½“་བསྡོམས་མ་མà½à½´à½“་པà¼"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "%sགི་དོན་ལུ་འཛིན་གྲོལ་'%s'་དེ་མ་འà½à½¼à½–་པསà¼"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "'%s'་གི་དོན་ལུ་འà½à½¼à½“་རིམ་'%s'་དེ་མ་འà½à½¼à½–་པསà¼"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "%s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འཚོལ་མ་à½à½¼à½–à¼"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "%s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འཚོལ་མ་à½à½¼à½–à¼"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3318,127 +3258,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"ཟུར་à½à½¼à¼‹à½¡à½²à½‚་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ནུག་ འདི་ཚུ་སྣང་མེད་སྦེ་བཞགཔ་མ་ཚད་ ཚབ་ལུ་"
+"རྙིངམ་འདི་ཚུ་ལག་ལེན་འà½à½–་ནུག"
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, fuzzy, c-format
msgid "Installing %s"
msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%sà¼"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "%s་རིམ་སྒྲིག་འབད་དོà¼"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "%s་རྩ་བསà¾à¾²à½‘་གà½à½„་དོà¼"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "%s མཇུག་བསྡུà½à¼‹à½¦à¾¦à½ºà¼‹à½¢à½„་རྩ་བསà¾à¾²à½‘་བà½à½„་ཡོདà¼"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr ""
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, fuzzy, c-format
msgid "Directory '%s' missing"
msgstr "à½à½¼à¼‹à½–ཀོད་འབད་མི་སྣོད་à½à½¼à¼‹%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་à½à½ºà¼‹à½ à½‘ུག"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "%s་ཡིག་སྣོད་འདི་à½à¼‹à½•à¾±à½ºà¼‹à½˜à¼‹à½šà½´à½‚སà¼"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "%s་ གྲ་སྒྲིག་འབད་དོà¼"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr " %s་ གི་སྦུང་ཚན་བཟོ་བཤོལ་འབད་དོà¼"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "%s་ རིམ་སྒྲིག་ལུ་གྲ་སྒྲིག་འབད་དོà¼"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%sà¼"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "%s་ རྩ་བསà¾à¾²à½‘་གà½à½„་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོà¼"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "རྩ་བསà¾à¾²à½‘་བà½à½„་ཡོད་པའི་%s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "%s མཇུག་བསྡུà½à¼‹à½¦à¾¦à½ºà¼‹à½¢à½„་རྩ་བསà¾à¾²à½‘་གà½à½„་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོà¼"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s མཇུག་བསྡུà½à¼‹à½¦à¾¦à½ºà¼‹à½¢à½„་རྩ་བསà¾à¾²à½‘་བà½à½„་ཡོདà¼"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr " %sལུ་འབྲི་མ་ཚུགསà¼"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3468,6 +3437,91 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "དྲན་འཛིན་ རི་ཇེགསི་'%s'གི་དོན་ལུ་%s་སེལ་འà½à½´à¼‹à½ à½–ད་དོà¼\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "དྲན་འཛིན་ རི་ཇེགསི་'%s'གི་དོན་ལུ་%s་སེལ་འà½à½´à¼‹à½ à½–ད་དོà¼\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "གྱིས་བྱིན་à½à½ºà¼‹à½¡à½¼à½‘་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་ཨིནà¼\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "མི་ངོ་འà½à½¼à½“་རིམཚུà¼"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "à½à¾±à½¼à½‘་ཀྱི་གཞི་བཙུགས་འབད་ནི་ལུ་གà½à½“་འà½à½£à¼‹à½¦à¾¦à½ºà¼‹à½‚ཅིག་སེལ་འà½à½´à¼‹à½ à½–ད་དགོ"
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་འà½à½¼à½–་མི་ཚུགས་པས་ འདི་འབདà½à¼‹à½‘་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གཞན་ཅིག་གིས་གྲོས་བསྟུན་འབད་དེ་ཡོདà¼\n"
+#~ "འདི་གིས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་བརླག་སྟོར་ཞུགས་ཡོདཔ་ཨིནམ་སྟོནམ་ཨིནམ་དང་ ཕན་མེད་སྦེ་གནས་ཡོདཔ་ ཡང་ན་\n"
+#~ "འདི་གཞན་འབྱུང་ཅིག་ནང་ལས་ལས་རà¾à¾±à½„མ་ཅིག་འà½à½¼à½–་ཚུགསཔ་ཨིན་པསà¼\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "ག་དེ་སྦེ་ཨིན་རུང་འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་གིས་ འདི་ཚབ་བཙུགསཔ་ཨིན:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་ལུ་གཞི་བཙུགས་ཀྱི་མི་ངོ་མིན་འདུག"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསà¾à¾²à½‘་མ་གà½à½„་པསà¼à¼‹\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསà¾à¾²à½‘་མ་གà½à½„་པསà¼à¼‹\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འà½à½´à¼‹à½ à½–ད་ནི་སེམས་à½à½¢à¼‹à½–ཞག\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསà¾à¾±à½ºà½‘་འབད་ནི་འདི་གཞི་སྒྲིག་"
+#~ "མ་འབད་བསà¼\n"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསà¾à¾±à½ºà½‘་འབད་ནི་འདི་གཞི་སྒྲིག་"
+#~ "མ་འབད་བསà¼\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བà½à½´à½–་པསà¼\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འà½à½¼à½“་རིམ་གསར་ཤོས་ཅིག་ཨིནà¼\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "(%s)གི་དོན་ལུ་སེལ་འà½à½´à¼‹à½ à½–ད་ཡོད་པའི་འà½à½¼à½“་རིམ་'%s'(%s)\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "(%s)གི་དོན་ལུ་སེལ་འà½à½´à¼‹à½ à½–ད་ཡོད་པའི་འà½à½¼à½“་རིམ་'%s'(%s)\n"
+
+#, fuzzy
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "འ་ནི་འདི་ཌི་ཨི་བི་ཡིག་མཛོད་ནུས་ཅན་ཅིག་མེན་པས་ འདི་ལུ་'%s'ཡང་ན་'%s'འà½à½´à½¦à¼‹à½˜à½²à¼‹à½˜à½²à½“་འདུག"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "ཨེམ་ཌི་༥་ à½à¾±à½¼à½“་བསྡོམས་མ་མà½à½´à½“་པà¼"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ " %s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འà½à½¼à½–་པས༠འདི་འབདà½à¼‹à½£à½¦à¼‹à½à¾±à½¼à½‘་ཀྱི་ལག་à½à½¼à½‚་"
+#~ "ལས་ འ་ནི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག "
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s་འདི་à½à¼‹à½•à¾±à½ºà¼‹à½‘ོà¼"
diff --git a/po/el.po b/po/el.po
index 5bfc14dac..fb951f950 100644
--- a/po/el.po
+++ b/po/el.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt_po_el\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2008-08-26 18:25+0300\n"
"Last-Translator: Θανάσης Îάτσης <natsisthanasis@gmail.com>\n"
"Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n"
@@ -28,151 +28,153 @@ msgstr ""
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Το πακέτο %s με έκδοση %s έχει ανικανοποίητες εξαÏτήσεις:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Συνολικά Ονόματα Πακέτων : "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Συνολο Δομών Πακέτου : "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Κανονικά Πακέτα: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " ΠλήÏως Εικονικά Πακέτα: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Μονά Εικονικά Πακέτα: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Μικτά Εικονικά Πακέτα: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr "ΑγνοοÏμενα: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "ΣÏνολο ΔιαφοÏετικών Εκδόσεων: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "ΣÏνολο ΔιαφοÏετικών Εκδόσεων: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "ΣÏνολο ΕξαÏτήσεων: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "ΣÏνολο σχέσεων Εκδ/ΑÏχείων: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "ΣÏνολο σχέσεων Εκδ/ΑÏχείων: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "ΣÏνολο Αντιστοιχίσεων ΠαÏοχών: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "ΣÏνολο Κοινών ΣτοιχειοσειÏών : "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Συνολικός χώÏος ΕξαÏτήσεων Εκδόσεων: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "ΣÏνολο χώÏου ασφαλείας: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Συνολικός ΚαταμετÏημένος ΧώÏος: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Το αÏχείο πακέτου %s δεν είναι ενημεÏωμένο."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Δε βÏέθηκαν πακέτα"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "ΠÏέπει να δώσετε τουλάχιστον ένα μοτίβο αναζήτησης"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Αδυναμία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… πακέτου %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "ΑÏχεία Πακέτου:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"Η cache δεν είναι ενημεÏωμένη, αδυναμία παÏαπομπής σε ένα αÏχείο πακέτου"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Καθηλωμένα Πακέτα:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(δε βÏέθηκαν)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Εγκατεστημένα: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Υποψήφιο: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(κανένα)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Καθήλωση Πακέτου: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Πίνακας Έκδοσης:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s για %s είναι μεταγλωττισμένο σε %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -248,36 +250,36 @@ msgstr ""
"Δείτε τις σελίδες man του apt-cache(8) και apt.conf(5) για πληÏοφοÏίες.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
"ΠαÏακαλώ δώστε ένα όνομα για αυτόν τον δίσκο, όπως 'Debian 5.0.3 Disk 1'"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "ΠαÏακαλώ εισάγετε το δίσκο στη συσκευή και πατήστε enter"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Αποτυχία σÏνδεσης του %s σε %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Επαναλάβετε την διαδικασία για τα υπόλοιπα CD από το σετ σας."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Τα οÏίσματα δεν είναι σε ζεÏγη"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -306,616 +308,66 @@ msgstr ""
" -c=? Read this configuration file\n"
" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[Î/ο]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[ν/Ο]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr ""
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "σφάλμα μεταγλωτισμου - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Τα ακόλουθα πακέτα έχουν ανεπίλυτες εξαÏτήσεις:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "αλλά το %s είναι εγκατεστημένο"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "αλλά το %s Ï€Ïόκειται να εγκατασταθεί"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "αλλά δεν είναι εγκαταστάσημο"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "αλλά είναι ένα εικονικό πακέτο"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "αλλά δεν είναι εγκατεστημένο"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "αλλά δεν Ï€Ïόκειται να εγκατασταθεί"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " η"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Τα ακόλουθα ÎΕΑ πακέτα θα εγκατασταθοÏν:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Τα ακόλουθα πακέτα θα ΑΦΑΙΡΕΘΟΥÎ:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Τα ακόλουθα πακέτα θα μείνουν ως έχουν:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Τα ακόλουθα πακέτα θα αναβαθμιστοÏν:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Τα ακόλουθα πακέτα θα ΥΠΟΒΑΘΜΙΣΤΟΥÎ:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Τα ακόλουθα κÏατημένα πακέτα θα αλλαχθοÏν:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (λόγω του %s) "
-
-#: cmdline/apt-get.cc:600
-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"
-"Αυτό ΔΕΠθα έπÏεπε να συμβεί, εκτός αν ξέÏετε τι ακÏιβώς κάνετε!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu αναβαθμίστηκαν, %lu νέο εγκατεστημένα, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu επανεγκατεστημένα,"
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu υποβαθμισμένα, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu θα αφαιÏεθοÏν και %lu δεν αναβαθμίζονται.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu μη πλήÏως εγκατεστημένα ή αφαιÏέθηκαν.\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Σημείωση, επιλέχτηκε το %s στη θέση του '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Σημείωση, επιλέχτηκε το %s στη θέση του '%s'\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Το πακέτο %s είναι εικονικό και παÏέχεται από τα:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [Εγκατεστημένα]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr "[Μγ Υποψήφια Εκδόση]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Θα Ï€Ïέπει επακÏιβώς να επιλέξετε ένα για εγκατάσταση."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Το πακέτο %s δεν είναι διαθέσιμο, αλλά υπάÏχει αναφοÏά για αυτό από άλλο "
-"πακέτο.\n"
-"Αυτό σημαίνει ότι το πακέτο αυτό λείπει, είναι παλαιωμένο, ή είναι διαθέσιμο "
-"από άλλη πηγή\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "ΠάÏαυτα το ακόλουθο πακέτο το αντικαθιστά:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Το πακέτο %s δεν έχει υποψήφια εγκατάσταση"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Εικονικά πακέτα όπως το '%s' δεν μποÏοÏν να αφαιÏεθοÏν\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιÏεθεί. Εννοείτε '%s'?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιÏεθεί\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Σημείωση, επιλέχθηκε το %s αντί του %s\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"ΠαÏάκαμψη του %s, είναι εγκατεστημένο και η αναβάθμιση δεν έχει οÏιστεί.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"ΠαÏάκαμψη του %s, είναι εγκατεστημένο και μόνο αναβαθμίσεις έχουν οÏιστεί.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr ""
-"Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόÏτωσή "
-"του\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "το %s είναι ήδη η τελευταία έκδοση.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "το %s έχει εγκατασταθεί με το χέÏι\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s λόγω του %s\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "ΔιόÏθωση εξαÏτήσεων..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " απέτυχε."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "ΑδÏνατη η διόÏθωση των εξαÏτήσεων"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "ΑδÏνατη η ελαχιστοποίηση του συνόλου αναβαθμίσεων"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Ετοιμο"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr ""
-"Ίσως να Ï€Ïέπει να Ï„Ïέξετε apt-get -f install για να διοÏθώσετε αυτά τα "
-"Ï€Ïοβλήματα."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Ανεπίλυτες εξαÏτήσεις. Δοκιμάστε με το -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα πακέτα δεν εξακÏιβώθηκαν!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "ΠαÏάκαμψη Ï€Ïοειδοποίησης ταυτοποίησης.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Εγκατάσταση των πακέτων χωÏίς επαλήθευση;"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "ΜεÏικά πακέτα δεν εξαακÏιβώθηκαν"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "ΥπάÏχουν Ï€Ïοβλήματα και δώσατε -y χωÏίς το --force-yes"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "ΕσωτεÏικό σφάλμα, έγινε κλήση του Install Packages με σπασμένα πακέτα!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr ""
-"ΜεÏικά πακέτα Ï€Ïέπει να αφαιÏεθοÏν αλλά η ΑφαίÏεση είναι απενεÏγοποιημένη."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "ΕσωτεÏικό Σφάλμα, η Ταξινόμηση δεν ολοκληÏώθηκε"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Î Î¿Î»Ï Ï€ÎµÏίεÏγο! Τα μεγέθη δεν ταιÏιάζουν, στείλτε μήνυμα στο apt@packages."
-"debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB/%sB από αÏχεία.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB από αÏχεία.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr ""
-"Μετά από αυτή τη λειτουÏγία, θα χÏησιμοποιηθοÏν %sB χώÏου από το δίσκο.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "Μετά από αυτή τη λειτουÏγία, θα ελευθεÏωθοÏν %sB χώÏου από το δίσκο.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Δεν μπόÏεσα να Ï€ÏοσδιοÏίσω τον ελεÏθεÏο χώÏο στο %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Δεν διαθέτετε αÏκετό ελεÏθεÏο χώÏο στο %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "ΚαθοÏίσατε συνηθισμένο, αλλά αυτή δεν είναι μια συνηθισμένη εÏγασία"
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Îαι, κανε ότι λέω!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"ΠÏόκειται να κάνετε κάτι πιθανόν Ï€Î¿Î»Ï ÎµÏ€Î¹Î¶Î®Î¼Î¹Î¿.\n"
-"Για να συνεχίσετε πληκτÏολογήστε τη φÏάση '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Εγκατάλειψη."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Θέλετε να συνεχίσετε;"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Αποτυχία ανάκτησης του %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Για μεÏικά αÏχεία απέτυχε η μεταφόÏτωση"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "ΟλοκληÏώθηκε η μεταφόÏτωση μόνο"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"ΑδÏνατη η μεταφόÏτωση μεÏικών αÏχείων, ίσως αν δοκιμάζατε με apt-get update "
-"ή το --fix-missing;"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr ""
-"ο συνδυασμός --fix-missing με εναλλαγή μέσων δεν υποστηÏίζεται για την ÏŽÏα"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "ΑδÏνατη η επίλυση των χαμένων πακέτων."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Εγκατάλειψη της εγκατάστασης."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Επιλογή του %s ώς λίστας πηγαίων πακέτων αντί της %s\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Η εντολή update δεν παίÏνει οÏίσματα"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-"Δεν επιτÏέπεται οποιαδήποτε διαγÏαφή· αδυναμία εκκίνησης του AutoRemover"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Φαίνεται πως το AutoRemover κατέστÏεψε κάτι ενώ δεν θα έπÏεπε. ΠαÏακαλείστε "
-"να υποβάλλετε αναφοÏά σφάλματος για το apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Οι ακόλουθες πληÏοφοÏίες ίσως βοηθήσουν στην επίλυση του Ï€Ïοβλήματος:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "ΕσωτεÏικό Σφάλμα, το AutoRemover δημιοÏÏγησε κάποιο Ï€Ïόβλημα"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "Το ακόλουθο πακέτο εγκαταστάθηκε αυτόματα και δεν χÏειάζεται πλέον:"
-msgstr[1] ""
-"Τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χÏειάζονται πλέον:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"%lu το ακόλουθο πακέτο εγκαταστάθηκε αυτόματα και δεν χÏειάζεται πλέον:"
-msgstr[1] ""
-"%lu τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χÏειάζονται πλέον:"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "ΧÏησιμοποιήστε 'apt-get autoremove' για να το διαγÏάψετε."
-msgstr[1] "ΧÏησιμοποιήστε 'apt-get autoremove' για να τα διαγÏάψετε."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "ΕσωτεÏικό Σφάλμα, η διαδικασία αναβάθμισης χάλασε"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "Aν Ï„Ïέξετε 'apt-get -f install' ίσως να διοÏθώσετε αυτά τα Ï€Ïοβλήματα:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Ανεπίλυτες εξαÏτήσεις. Δοκιμάστε 'apt-get -f install' χωÏίς να οÏίσετε "
-"πακέτο (ή καθοÏίστε μια λÏση)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"ΜεÏικά πακέτα είναι αδÏνατον να εγκατασταθοÏν. Αυτό μποÏεί να σημαίνει ότι\n"
-"δημιουÏγήσατε μια απίθανη κατάσταση ή αν χÏησιμοποιείτε την ασταθή\n"
-"διανομή, ότι μεÏικά από τα πακέτα δεν έχουν ακόμα δημιουÏγηθεί ή έχουν\n"
-"μετακινηθεί από τα εισεÏχόμενα."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Χαλασμένα πακέτα"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθοÏν:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "ΠÏοτεινόμενα πακέτα:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Συνιστώμενα πακέτα:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "ΑδÏνατη η εÏÏεση του πακέτου %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "το %s έχει εγκατασταθεί με το χέÏι\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "το %s έχει εγκατασταθεί αυτόματα\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Υπολογισμός της αναβάθμισης... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Απέτυχε"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Ετοιμο"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr ""
"ΕσωτεÏικό Σφάλμα, η Ï€Ïοσπάθεια επίλυσης του Ï€Ïοβλήματος \"έσπασε\" κάποιο "
"υλικό"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "ΑδÏνατο το κλείδωμα του καταλόγου μεταφόÏτωσης"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr ""
"Θα Ï€Ïέπει να καθοÏίσετε τουλάχιστον ένα πακέτο για να μεταφοÏτώσετε τον "
"κωδικάτου"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Αδυναμία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… κώδικά του πακέτου %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -923,86 +375,96 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "ΠαÏάκαμψη του ήδη μεταφοÏτωμένου αÏχείου `%s`\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Δεν μπόÏεσα να Ï€ÏοσδιοÏίσω τον ελεÏθεÏο χώÏο στο %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Δεν διαθέτετε αÏκετό ελεÏθεÏο χώÏο στο %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB/%sB πηγαίου κώδικα.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB πηγαίου κώδικα.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "ΜεταφόÏτωση Κωδικα %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Αποτυχία μεταφόÏτωσης μεÏικών αÏχειοθηκών."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "ΟλοκληÏώθηκε η μεταφόÏτωση μόνο"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "ΠαÏάκαμψη της αποσυμπίεσης ήδη μεταφοÏτωμένου κώδικα στο %s\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Απέτυχε η εντολή αποσυμπίεσης %s\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Απέτυχε η εντολή χτισίματος %s.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Η απογονική διεÏγασία απέτυχε"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"Θα Ï€Ïέπει να καθοÏίσετε τουλάχιστον ένα πακέτο για έλεγχο των εξαÏτήσεων του"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "ΑδÏνατη η εÏÏεση πληÏοφοÏιών χτισίματος για το %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "το %s δεν έχει εξαÏτήσεις χτισίματος.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1011,7 +473,7 @@ msgstr ""
"%s εξαÏτήσεις για το %s δεν ικανοποιοÏνται επειδή το %s δεν επιτÏέπεται στο "
"πακέτο %s"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1019,14 +481,14 @@ msgid ""
msgstr ""
"%s εξαÏτήσεις για το %s δεν ικανοποιοÏνται επειδή το πακέτο %s δεν βÏέθηκε"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"Αποτυχία ικανοποίησης %s εξαÏτήσεων για το %s: Το εγκατεστημένο πακέτο %s "
"είναι νεώτεÏο"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1035,7 +497,7 @@ msgstr ""
"%s εξαÏτήσεις για το %s δεν ικανοποιοÏνται επειδή δεν υπάÏχουν διαθέσιμες "
"εκδόσεις του πακέτου %s που να ικανοποιοÏν τις απαιτήσεις της έκδοσης"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1044,30 +506,30 @@ msgstr ""
"%s εξαÏτήσεις για το %s δεν ικανοποιοÏνται επειδή το πακέτο %s δεν έχει "
"υποψήφιαέκδοση"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Αποτυχία ικανοποίησης %s εξάÏτησης για το %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Οι εξαÏτήσεις χτισίματος για το %s δεν ικανοποιοÏνται."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Αποτυχία επεξεÏγασίας εξαÏτήσεων χτισίματος"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Changelog για %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "ΥποστηÏιζόμενοι Οδηγοί:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1152,98 +614,53 @@ msgstr ""
"για πεÏισσότεÏες πληÏοφοÏίες και επιλογές.\n"
" This APT has Super Cow Powers.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Hit "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "ΦέÏε:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Αγνόησε "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Σφάλμα "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "ΜεταφοÏτώθηκαν %sB σε %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [ΕπεξεÏγασία]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Αλλαγή Μέσου: ΠαÏακαλώ εισάγετε το δίσκο με ετικέτα\n"
-" '%s'\n"
-"στη συσκευή '%s' και πιέστε enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "αλλά δεν είναι εγκατεστημένο"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "το %s έχει εγκατασταθεί με το χέÏι\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "το %s έχει εγκατασταθεί με το χέÏι\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "το %s είναι ήδη η τελευταία έκδοση.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "το %s είναι ήδη η τελευταία έκδοση.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Αναμονή του %s, αλλά δε βÏισκόταν εκεί"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "το %s έχει εγκατασταθεί με το χέÏι\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Αποτυχία ανοίγματος του %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1265,6 +682,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1362,8 +796,8 @@ msgstr "Λήξη χÏόνου σÏνδεσης"
msgid "Server closed the connection"
msgstr "Ο διακομιστής έκλεισε την σÏνδεση"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Σφάλμα ανάγνωσης"
@@ -1376,8 +810,8 @@ msgid "Protocol corruption"
msgstr "Αλλοίωση του Ï€Ïωτοκόλλου"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Σφάλμα εγγÏαφής"
@@ -1389,6 +823,10 @@ msgstr "ΑδÏνατη η δημιουÏγία μιας υποδοχής (socket
msgid "Could not connect data socket, connection timed out"
msgstr "ΑδÏνατη η σÏνδεση υποδοχής δεδομένων, λήξη χÏόνου σÏνδεσης"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Απέτυχε"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "ΑδÏνατη η σÏνδεση σε παθητική υποδοχή (socket)."
@@ -1431,7 +869,7 @@ msgstr "Λήξη χÏόνου σÏνδεσης στην υποδοχή δεδοÎ
msgid "Unable to accept connection"
msgstr "ΑδÏνατη η αποδοχή συνδέσεων"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "ΠÏόβλημα κατά το hashing του αÏχείου"
@@ -1566,82 +1004,601 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Σφάλμα στην εγγÏαφή στο αÏχείο"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+"Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκÏο έκλεισε τη σÏνδεση"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Σφάλμα στην ανάγνωση από το διακομιστή"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Σφάλμα στην εγγÏαφή στο αÏχείο"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Η επιλογή απέτυχε"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Λήξη χÏόνου σÏνδεσης"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Σφάλμα στην εγγÏαφή στο αÏχείο εξόδου"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Αναμονή επικεφαλίδων"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Ελαττωματική γÏαμμή επικεφαλίδας"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "Ο διακομιστής http έστειλε μια άκυÏη επικεφαλίδα απάντησης"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "Ο διακομιστής http έστειλε μια άκυÏη επικεφαλίδα Content-Length"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "Ο διακομιστής http έστειλε μια άκυÏη επικεφαλίδα Content-Range"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Ο διακομιστής http δεν υποστηÏίζει πλήÏως το range"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Άγνωστη μοÏφή ημεÏομηνίας"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Η επιλογή απέτυχε"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Ελαττωματικά δεδομένα επικεφαλίδας"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Λήξη χÏόνου σÏνδεσης"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Η σÏνδεση απέτυχε"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Σφάλμα στην εγγÏαφή στο αÏχείο εξόδου"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "ΕσωτεÏικό Σφάλμα"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Σφάλμα στην εγγÏαφή στο αÏχείο"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Σφάλμα στην εγγÏαφή στο αÏχείο"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "ΕσωτεÏικό σφάλμα, έγινε κλήση του Install Packages με σπασμένα πακέτα!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
msgstr ""
-"Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκÏο έκλεισε τη σÏνδεση"
+"ΜεÏικά πακέτα Ï€Ïέπει να αφαιÏεθοÏν αλλά η ΑφαίÏεση είναι απενεÏγοποιημένη."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Σφάλμα στην ανάγνωση από το διακομιστή"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "ΕσωτεÏικό Σφάλμα, η Ταξινόμηση δεν ολοκληÏώθηκε"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Ελαττωματικά δεδομένα επικεφαλίδας"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Î Î¿Î»Ï Ï€ÎµÏίεÏγο! Τα μεγέθη δεν ταιÏιάζουν, στείλτε μήνυμα στο apt@packages."
+"debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Η σÏνδεση απέτυχε"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB/%sB από αÏχεία.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "ΕσωτεÏικό Σφάλμα"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB από αÏχεία.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr ""
+"Μετά από αυτή τη λειτουÏγία, θα χÏησιμοποιηθοÏν %sB χώÏου από το δίσκο.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Μετά από αυτή τη λειτουÏγία, θα ελευθεÏωθοÏν %sB χώÏου από το δίσκο.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Δεν διαθέτετε αÏκετό ελεÏθεÏο χώÏο στο %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "ΥπάÏχουν Ï€Ïοβλήματα και δώσατε -y χωÏίς το --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "ΚαθοÏίσατε συνηθισμένο, αλλά αυτή δεν είναι μια συνηθισμένη εÏγασία"
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Îαι, κανε ότι λέω!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"ΠÏόκειται να κάνετε κάτι πιθανόν Ï€Î¿Î»Ï ÎµÏ€Î¹Î¶Î®Î¼Î¹Î¿.\n"
+"Για να συνεχίσετε πληκτÏολογήστε τη φÏάση '%s'\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Εγκατάλειψη."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Θέλετε να συνεχίσετε;"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Για μεÏικά αÏχεία απέτυχε η μεταφόÏτωση"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"ΑδÏνατη η μεταφόÏτωση μεÏικών αÏχείων, ίσως αν δοκιμάζατε με apt-get update "
+"ή το --fix-missing;"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr ""
+"ο συνδυασμός --fix-missing με εναλλαγή μέσων δεν υποστηÏίζεται για την ÏŽÏα"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "ΑδÏνατη η επίλυση των χαμένων πακέτων."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Εγκατάλειψη της εγκατάστασης."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+"Δεν επιτÏέπεται οποιαδήποτε διαγÏαφή· αδυναμία εκκίνησης του AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Φαίνεται πως το AutoRemover κατέστÏεψε κάτι ενώ δεν θα έπÏεπε. ΠαÏακαλείστε "
+"να υποβάλλετε αναφοÏά σφάλματος για το apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Οι ακόλουθες πληÏοφοÏίες ίσως βοηθήσουν στην επίλυση του Ï€Ïοβλήματος:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "ΕσωτεÏικό Σφάλμα, το AutoRemover δημιοÏÏγησε κάποιο Ï€Ïόβλημα"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "Το ακόλουθο πακέτο εγκαταστάθηκε αυτόματα και δεν χÏειάζεται πλέον:"
+msgstr[1] ""
+"Τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χÏειάζονται πλέον:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"%lu το ακόλουθο πακέτο εγκαταστάθηκε αυτόματα και δεν χÏειάζεται πλέον:"
+msgstr[1] ""
+"%lu τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χÏειάζονται πλέον:"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "ΧÏησιμοποιήστε 'apt-get autoremove' για να το διαγÏάψετε."
+msgstr[1] "ΧÏησιμοποιήστε 'apt-get autoremove' για να τα διαγÏάψετε."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Aν Ï„Ïέξετε 'apt-get -f install' ίσως να διοÏθώσετε αυτά τα Ï€Ïοβλήματα:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Ανεπίλυτες εξαÏτήσεις. Δοκιμάστε 'apt-get -f install' χωÏίς να οÏίσετε "
+"πακέτο (ή καθοÏίστε μια λÏση)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"ΜεÏικά πακέτα είναι αδÏνατον να εγκατασταθοÏν. Αυτό μποÏεί να σημαίνει ότι\n"
+"δημιουÏγήσατε μια απίθανη κατάσταση ή αν χÏησιμοποιείτε την ασταθή\n"
+"διανομή, ότι μεÏικά από τα πακέτα δεν έχουν ακόμα δημιουÏγηθεί ή έχουν\n"
+"μετακινηθεί από τα εισεÏχόμενα."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Χαλασμένα πακέτα"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθοÏν:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "ΠÏοτεινόμενα πακέτα:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Συνιστώμενα πακέτα:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα πακέτα δεν εξακÏιβώθηκαν!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "ΠαÏάκαμψη Ï€Ïοειδοποίησης ταυτοποίησης.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "ΜεÏικά πακέτα δεν εξαακÏιβώθηκαν"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Εγκατάσταση των πακέτων χωÏίς επαλήθευση;"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Αποτυχία ανάκτησης του %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Εγκατεστημένα]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Εγκατεστημένα]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Εγκατεστημένα]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Τα ακόλουθα πακέτα έχουν ανεπίλυτες εξαÏτήσεις:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "αλλά το %s είναι εγκατεστημένο"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "αλλά το %s Ï€Ïόκειται να εγκατασταθεί"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "αλλά δεν είναι εγκαταστάσημο"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "αλλά είναι ένα εικονικό πακέτο"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "αλλά δεν είναι εγκατεστημένο"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "αλλά δεν Ï€Ïόκειται να εγκατασταθεί"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " η"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Τα ακόλουθα ÎΕΑ πακέτα θα εγκατασταθοÏν:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Τα ακόλουθα πακέτα θα ΑΦΑΙΡΕΘΟΥÎ:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Τα ακόλουθα πακέτα θα μείνουν ως έχουν:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Τα ακόλουθα πακέτα θα αναβαθμιστοÏν:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Τα ακόλουθα πακέτα θα ΥΠΟΒΑΘΜΙΣΤΟΥÎ:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Τα ακόλουθα κÏατημένα πακέτα θα αλλαχθοÏν:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (λόγω του %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα απαÏαίτητα πακέτα θα αφαιÏεθοÏν\n"
+"Αυτό ΔΕΠθα έπÏεπε να συμβεί, εκτός αν ξέÏετε τι ακÏιβώς κάνετε!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu αναβαθμίστηκαν, %lu νέο εγκατεστημένα, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu επανεγκατεστημένα,"
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu υποβαθμισμένα, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu θα αφαιÏεθοÏν και %lu δεν αναβαθμίζονται.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu μη πλήÏως εγκατεστημένα ή αφαιÏέθηκαν.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[Î/ο]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[ν/Ο]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr ""
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "σφάλμα μεταγλωτισμου - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "ΔιόÏθωση εξαÏτήσεων..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " απέτυχε."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "ΑδÏνατη η διόÏθωση των εξαÏτήσεων"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "ΑδÏνατη η ελαχιστοποίηση του συνόλου αναβαθμίσεων"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Ετοιμο"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr ""
+"Ίσως να Ï€Ïέπει να Ï„Ïέξετε apt-get -f install για να διοÏθώσετε αυτά τα "
+"Ï€Ïοβλήματα."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Ανεπίλυτες εξαÏτήσεις. Δοκιμάστε με το -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Η εντολή update δεν παίÏνει οÏίσματα"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Υπολογισμός της αναβάθμισης... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "ΕσωτεÏικό Σφάλμα, η διαδικασία αναβάθμισης χάλασε"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Ετοιμο"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Αποτυχία μετονομασίας του %s σε %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Hit "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "ΦέÏε:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Αγνόησε "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Σφάλμα "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "ΜεταφοÏτώθηκαν %sB σε %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [ΕπεξεÏγασία]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Αλλαγή Μέσου: ΠαÏακαλώ εισάγετε το δίσκο με ετικέτα\n"
+" '%s'\n"
+"στη συσκευή '%s' και πιέστε enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "ΑδÏνατη η ανάγνωση του %s"
@@ -1700,36 +1657,36 @@ msgstr "Αποτυχία κατά τη δημιουÏγία διασωλήνωσ
msgid "Connection closed prematurely"
msgstr "Η σÏνδεση έκλεισε Ï€ÏόωÏα"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Κακή Ï€ÏοκαθοÏισμένη ÏÏθμιση!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Πιέστε enter για συνέχεια."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Επιθυμείτε τη διαγÏαφή ήδη μεταφοÏτωμένων αÏχείων .deb;"
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "ΠÏοέκυψανσφάλματα κατά την αποσυμπίεση. Θα Ïυθμίσω τα "
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "πακέτα που εγκαταστάθηκαν. Αυτό μποÏεί να παÏάγει διπλά λάθη"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"ή σφάλματα που Ï€ÏοκÏπτουν από χαλασμένες εξαÏτήσεις. Αυτό είναι εντάξει, "
"μόνο τα λάθη"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1984,36 +1941,36 @@ msgstr "Αποτυχία ανάγνωσης του %s"
msgid "Failed to unlink %s"
msgstr "Αποτυχία αποσÏνδεσης του %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr " Αποτυχία σÏνδεσης του %s με το %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " ΑποσÏνδεση οÏίου του %sB hit.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Η αÏχειοθήκη δεν πεÏιέχει πεδίο πακέτων"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s δεν πεÏιέχει εγγÏαφή παÏάκαμψης\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s συντηÏητής είναι ο %s όχι ο %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s δεν έχει εγγÏαφή πηγαίας παÏάκαμψης\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s δεν έχει οÏτε εγγÏαφή δυαδικής παÏάκαμψης\n"
@@ -2092,7 +2049,7 @@ msgstr "ΠÏόβλημα κατά την αποσÏνδεση του %s"
msgid "Failed to rename %s to %s"
msgstr "Αποτυχία μετονομασίας του %s σε %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2162,7 +2119,7 @@ msgstr "ΚατεστÏαμμένη αÏχειοθήκη"
msgid "Tar checksum failed, archive corrupted"
msgstr "Το Checksum του tar απέτυχε, η αÏχείοθήκη είναι κατεστÏαμμένη"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Άγνωστη επικεφαλίδα TAR Ï„Ïπος %u, μέλος %s"
@@ -2286,23 +2243,17 @@ msgid "Unable to stat %s"
msgstr "ΑδÏνατη η εÏÏεση της κατάστασης του %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Αυτό δεν είναι ένα έγκυÏο αÏχείο DEB, αγνοείται το μέλος '%s'"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Αυτό δεν είναι ένα έγκυÏο αÏχείο DEB, δεν πεÏιέχει το μέλος '%s', '%s' ή '%s'"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "ΕσωτεÏικό Σφάλμα, αδυναμία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… μέλους %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Μη αναλÏσιμο αÏχείο control"
@@ -2360,87 +2311,87 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Η επιλογή %s δε βÏέθηκε"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Μη αναγνωÏισμένος Ï„Ïπος σÏντμησης: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Άνοιγμα του αÏχείου Ïυθμίσεων %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "Συντακτικό σφάλμα %s:%u: Το block αÏχίζει χωÏίς όνομα."
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Συντακτικό σφάλμα %s:%u: Λάθος μοÏφή Ετικέτας (Tag)"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Συντακτικό σφάλμα %s:%u: ΆχÏηστοι χαÏακτήÏες μετά την τιμή"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βÏίσκονται μόνο στο ανώτατο επίπεδο"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Συντακτικό σφάλμα %s:%u: ΥπεÏβολικός αÏιθμός συνδυασμένων includes"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Συντακτικό σφάλμα %s:%u: ΣυμπεÏιλαμβάνεται από εδώ"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Συντακτικό σφάλμα %s:%u: Μη υποστηÏιζόμενη εντολή '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βÏίσκονται μόνο στο ανώτατο επίπεδο"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Συντακτικό σφάλμα %s:%u: ΆχÏηστοι χαÏακτήÏες στο τέλος του αÏχείου"
@@ -2465,49 +2416,49 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... ΟλοκληÏώθηκε"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Η επιλογή γÏαμμής εντολών '%c' [από %s] δεν είναι γνωστή."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Η επιλογή γÏαμμής εντολών %s δεν είναι κατανοητή"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Η επιλογή γÏαμμής εντολών %s δεν είναι boolean"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Η επιλογή %s απαιτεί ένα ÏŒÏισμα."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"Επιλογή %s: Οι Ï€ÏοδιαγÏαφές του αντικειμένου Ïυθμίσεων απαιτοÏν =<val>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Επιλογή %s: απαιτείται ένας ακέÏαιος αÏιθμός ως ÏŒÏισμα, όχι '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Η επιλογή '%s' έχει υπεÏβολικό μήκος"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Η τιμή %s δεν είναι κατανοητή, δοκιμάστε σωστό (true) ή λάθος (false)."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Μη έγκυÏη λειτουÏγία %s"
@@ -2521,119 +2472,119 @@ msgstr "ΑδÏνατη η εÏÏεση της κατάστασης του σημ
msgid "Failed to stat the cdrom"
msgstr "ΑδÏνατη η εÏÏεση της κατάστασης του cdrom"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "ΠÏόβλημα κατά το κλείσιμο του αÏχείου"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
"Δε θα χÏησιμοποιηθεί κλείδωμα για το ανάγνωσης μόνο αÏχείο κλειδώματος %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "ΑδÏνατο το άνοιγμα του αÏχείου κλειδώματος %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
"Δε θα χÏησιμοποιηθεί κλείδωμα για το συναÏμοσμένο από nfs αÏχείο κλειδώματος "
"%s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "ΑδÏνατο το κλείδωμα %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Η υποδιεÏγασία %s έλαβε ένα σφάλμα καταμεÏÎ¹ÏƒÎ¼Î¿Ï (segfault)"
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "Η υποδιεÏγασία %s έλαβε ένα σφάλμα καταμεÏÎ¹ÏƒÎ¼Î¿Ï (segfault)"
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "Η υποδιεÏγασία %s επέστÏεψε ένα κωδικός σφάλματος (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Η υποδιεÏγασία %s εγκατέλειψε απÏόσμενα"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "ΑδÏνατο το άνοιγμα του αÏχείου %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "ΑδÏνατο το άνοιγμα διασωλήνωσης για το %s"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Αποτυχία δημιουÏγίας IPC στην υποδιεÏγασία"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Αποτυχία εκτέλεσης του συμπιεστή "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "αναγνώστηκαν, απομένουν ακόμη %lu για ανάγνωση αλλά δεν απομένουν άλλα"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "γÏάφτηκαν, απομένουν %lu για εγγÏαφή αλλά χωÏίς επιτυχία"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "ΠÏόβλημα κατά το κλείσιμο του αÏχείου"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "ΠÏόβλημα κατά τον συγχÏονισμό του αÏχείου"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "ΠÏόβλημα κατά την διαγÏαφή του αÏχείου"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "ΠÏόβλημα κατά τον συγχÏονισμό του αÏχείου"
@@ -2751,12 +2702,12 @@ msgstr "Αποτυχία ανοίγματος του αÏχείου κατάστ
msgid "Failed to write temporary StateFile %s"
msgstr "Αποτυχία εγγÏαφής του αÏχείου κατάστασης %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "ΑδÏνατη η ανάλυση του αÏχείου πακέτου %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "ΑδÏνατη η ανάλυση του αÏχείου πακέτου %s (2)"
@@ -2831,19 +2782,19 @@ msgstr "Λάθος μοÏφή της γÏαμμής %u στη λίστα πηγÏ
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "Ο Ï„Ïπος '%s' στη γÏαμμή %u στη λίστα πηγών %s είναι άγνωστος "
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "ΑδÏνατο το άνοιγμα του αÏχείου %s"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2868,7 +2819,7 @@ msgstr ""
"Το πακέτο '%s' χÏειάζεται να επανεγκατασταθεί, αλλά είναι αδÏνατη η εÏÏεση "
"κάποιας κατάλληλης αÏχείοθήκης."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2876,19 +2827,10 @@ msgstr ""
"Σφάλμα, το pkgProblemResolver::Resolve παÏήγαγε διακοπές, αυτό ίσως "
"Ï€Ïοκλήθηκε από κÏατοÏμενα πακέτα."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "ΑδÏνατη η διόÏθωση Ï€Ïοβλημάτων, έχετε κÏατοÏμενα ελαττωματικά πακέτα."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"ΜεÏικά αÏχεία δεν μεταφοÏτώθηκαν, αγνοήθηκαν ή χÏησιμοποιήθηκαν παλαιότεÏα "
-"στη θέση τους."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2933,12 +2875,12 @@ msgstr ""
"ΠαÏακαλώ εισάγετε το δίσκο με ετικέτα '%s' στη συσκευή '%s' και πατήστε "
"enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Το σÏστημα συσκευασίας '%s' δεν υποστηÏίζεται"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "ΑδÏνατος ο καθοÏισμός ενός κατάλληλου Ï„Ïπου συστήματος πακέτων"
@@ -2972,17 +2914,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Μη έγκυÏη εγγÏαφή στο αÏχείο Ï€Ïοτιμήσεων, καμία επικεφαλίδα Package"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "ΑδÏνατη η κατανόηση του Ï„Ïπου καθήλωσης %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr ""
"Δεν έχει οÏιστεί Ï€ÏοτεÏαιότητα (ή έχει οÏιστεί μηδενική) για την καθήλωση"
@@ -3054,44 +2996,48 @@ msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγ
msgid "rename failed, %s (%s -> %s)."
msgstr "απέτυχε η μετονομασία, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Ανόμοιο MD5Sum"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Ανόμοιο MD5Sum"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Ανόμοιο μέγεθος"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Μη έγκυÏη λειτουÏγία %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "ΑδÏνατη η ανάλυση του αÏχείου πακέτου %s (1)"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "Δεν υπάÏχει διαθέσιμο δημόσιο κλειδί για τα ακολουθα κλειδιά:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3099,12 +3045,12 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3113,16 +3059,12 @@ msgstr ""
"ΑδÏνατος ο εντοπισμός ενός αÏχείου για το πακέτο %s. Αυτό ίσως σημαίνει ότι "
"χÏειάζεται να διοÏθώσετε χειÏοκίνητα το πακέτο. (λόγω χαμένου αÏχείου)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"ΑδÏνατος ο εντοπισμός ενός αÏχείου για το πακέτο %s. Αυτό ίσως σημαίνει ότι "
-"χÏειάζεται να διοÏθώσετε χειÏοκίνητα το πακέτο."
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3130,16 +3072,12 @@ msgstr ""
"ΚατεστÏαμμένα αÏχεία ευÏετηÏίου πακέτων. Δεν υπάÏχει πεδίο Filename: στο "
"πακέτο %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Ανόμοιο μέγεθος"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "ΑδÏνατη η ανάλυση του αÏχείου πακέτου %s (1)"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "Σημείωση, επιλέχθηκε το %s αντί του%s\n"
@@ -3282,49 +3220,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "Ανόμοιο MD5Sum"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Η έκδοση %s για το %s δεν βÏέθηκε"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Η έκδοση %s για το %s δεν βÏέθηκε"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "ΑδÏνατη η εÏÏεση του συνόλου πακέτων %s"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "ΑδÏνατη η εÏÏεση του πακέτου %s"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3349,129 +3287,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"ΜεÏικά αÏχεία δεν μεταφοÏτώθηκαν, αγνοήθηκαν ή χÏησιμοποιήθηκαν παλαιότεÏα "
+"στη θέση τους."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Εγκατάσταση του %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "ΡÏθμιση του %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "ΑφαιÏÏŽ το %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "Το %s διαγÏάφηκε πλήÏως"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Εκτέλεση του post-installation trigger %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Ο φάκελος %s αγνοείται."
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "ΑδÏνατο το άνοιγμα του αÏχείου %s"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "ΠÏοετοιμασία του %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "ΞεπακετάÏισμα του %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "ΠÏοετοιμασία ÏÏθμισης του %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Έγινε εγκατάσταση του %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "ΠÏοετοιμασία για την αφαίÏεση του %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "ΑφαίÏεσα το %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "ΠÏοετοιμασία πλήÏης αφαίÏεσης του %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Το %s διαγÏάφηκε πλήÏως"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "ΑδÏνατη η εγγÏαφή στο %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Αδυναμία εγγÏαφής στο αÏχείο γεγονότων, λόγω αποτυχίας του openpyt() (είναι "
-"Ï€ÏοσαÏτημένο το /dev/pts;)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3501,6 +3466,96 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Σημείωση, επιλέχτηκε το %s στη θέση του '%s'\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Σημείωση, επιλέχτηκε το %s στη θέση του '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Το πακέτο %s είναι εικονικό και παÏέχεται από τα:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr "[Μγ Υποψήφια Εκδόση]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Θα Ï€Ïέπει επακÏιβώς να επιλέξετε ένα για εγκατάσταση."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Το πακέτο %s δεν είναι διαθέσιμο, αλλά υπάÏχει αναφοÏά για αυτό από άλλο "
+#~ "πακέτο.\n"
+#~ "Αυτό σημαίνει ότι το πακέτο αυτό λείπει, είναι παλαιωμένο, ή είναι "
+#~ "διαθέσιμο από άλλη πηγή\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "ΠάÏαυτα το ακόλουθο πακέτο το αντικαθιστά:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Το πακέτο %s δεν έχει υποψήφια εγκατάσταση"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Εικονικά πακέτα όπως το '%s' δεν μποÏοÏν να αφαιÏεθοÏν\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιÏεθεί. Εννοείτε "
+#~ "'%s'?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιÏεθεί\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Σημείωση, επιλέχθηκε το %s αντί του %s\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "ΠαÏάκαμψη του %s, είναι εγκατεστημένο και η αναβάθμιση δεν έχει οÏιστεί.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "ΠαÏάκαμψη του %s, είναι εγκατεστημένο και μόνο αναβαθμίσεις έχουν "
+#~ "οÏιστεί.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr ""
+#~ "Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόÏτωσή "
+#~ "του\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "το %s είναι ήδη η τελευταία έκδοση.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s λόγω του %s\n"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Αυτό δεν είναι ένα έγκυÏο αÏχείο DEB, δεν πεÏιέχει το μέλος '%s', '%s' ή "
+#~ "'%s'"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Ανόμοιο MD5Sum"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "ΑδÏνατος ο εντοπισμός ενός αÏχείου για το πακέτο %s. Αυτό ίσως σημαίνει "
+#~ "ότι χÏειάζεται να διοÏθώσετε χειÏοκίνητα το πακέτο."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "Αδυναμία εγγÏαφής στο αÏχείο γεγονότων, λόγω αποτυχίας του openpyt() "
+#~ "(είναι Ï€ÏοσαÏτημένο το /dev/pts;)\n"
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Άνοιγμα του αÏχείου Ïυθμίσεων %s"
diff --git a/po/es.po b/po/es.po
index 645bc5dfc..51e98f731 100644
--- a/po/es.po
+++ b/po/es.po
@@ -33,7 +33,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.8.10\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2011-01-24 11:47+0100\n"
"Last-Translator: Javier Fernández-Sanguino Peña <jfs@debian.org>\n"
"Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n"
@@ -72,152 +72,154 @@ msgstr ""
"X-POFile-SpellExtra: autoclean showsrc desactualizados clean gzip TYPE\n"
"X-POFile-SpellExtra: sinfo Acquire\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "El paquete %s versión %s tiene dependencias incumplidas:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Nombres de paquetes totales: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Estructuras de paquetes totales: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Paquetes normales: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Paquetes virtuales puros: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Paquetes virtuales únicos: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Paquetes virtuales mixtos: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Faltan: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Versiones diferentes totales: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Descripciones diferentes totales: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Dependencias totales: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Relaciones versión/archivo totales: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Relaciones descripción/archivo totales: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Mapeo Total de Provisiones: "
# globbed -> globalizadas ? (jfs)
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Cadenas globalizadas totales: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Espacio de versión de dependencias total: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Espacio desperdiciado total: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Espacio registrado total: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "El archivo de paquetes %s está desincronizado."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "No se encontró ningún paquete"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Debe proporcionar al menos un patrón de búsqueda"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "No se ha podido localizar el paquete %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Archivos de paquetes:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"Caché fuera de sincronismo, no se puede hacer x-ref a un archivo de paquetes"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Paquetes con pin:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(no encontrado)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Instalados: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Candidato: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ninguno)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Pin del paquete: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Tabla de versión:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s para %s compilado en %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -296,36 +298,36 @@ msgstr ""
"Vea las páginas del manual apt-cache(8) y apt.conf(5) para más información.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
"Proporcione un nombre para este disco, como pueda ser «Debian 5.0.3 Disco 1»"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Por favor, introduzca un disco en la unidad y pulse Intro"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "No se pudo montar «%s» como «%s»"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
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."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argumentos no emparejados"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -354,607 +356,56 @@ msgstr ""
" -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n"
" cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[S/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[s/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "S"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Error de compilación de expresiones regulares - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Los siguientes paquetes tienen dependencias incumplidas:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "pero %s está instalado"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "pero %s va a ser instalado"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "pero no es instalable"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "pero es un paquete virtual"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "pero no está instalado"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "pero no va a instalarse"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " o"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Se instalarán los siguientes paquetes NUEVOS:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Los siguientes paquetes se ELIMINARÃN:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Los siguientes paquetes se han retenido:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Se actualizarán los siguientes paquetes:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Se DESACTUALIZARÃN los siguientes paquetes:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Se cambiarán los siguientes paquetes retenidos:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (por %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"AVISO: Se van a eliminar los siguientes paquetes esenciales.\n"
-"¡NO debe hacerse a menos que sepa exactamente lo que está haciendo!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu actualizados, %lu se instalarán, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstalados, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu desactualizados, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu para eliminar y %lu no actualizados.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu no instalados del todo o eliminados.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Nota, seleccionando «%s» para la tarea «%s»\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Nota, seleccionando «%s» para la expresión regular «%s»\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Instalado]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [No es la versión candidata]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Necesita seleccionar explícitamente uno para instalar."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"El paquete %s no está disponible, pero algún otro paquete hace referencia\n"
-"a él. Esto puede significar que el paquete falta, está obsoleto o sólo se\n"
-"encuentra disponible desde alguna otra fuente\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Sin embargo, los siguientes paquetes lo reemplazan:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "El paquete «%s» no tiene un candidato para la instalación"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "No pueden eliminarse los paquetes virtuales como «%s»\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "El paquete %s no está instalado, no se eliminará\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "El paquete %s no está instalado, no se eliminará\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Nota, seleccionando «%s» en lugar de «%s»\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "Ignorando %s, ya está instalado y no está activada la actualización.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"Ignorando %s, no está instalado y sólo se están solicitando "
-"actualizaciones.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ya está en su versión más reciente.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "fijado %s como instalado manualmente.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Versión seleccionada «%s» (%s) para «%s»\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Versión seleccionada «%s» (%s) para «%s»\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Corrigiendo dependencias..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " falló."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "No se puede corregir las dependencias"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "No se puede minimizar el conjunto de actualización"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Listo"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "AVISO: ¡No se han podido autenticar los siguientes paquetes!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Aviso de autenticación ignorado.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "¿Instalar estos paquetes sin verificación?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Algunos paquetes no se pueden autenticar"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Error interno, ¡se llamó a «InstallPackages» con paquetes rotos!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr ""
-"Los paquetes necesitan eliminarse pero está deshabilitado la posibilidad de "
-"eliminar."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Error interno, no terminó la ordenación"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Qué raro.. Los tamaños no concuerdan, mande un correo a apt@packages.debian."
-"org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Se necesita descargar %sB/%sB de archivos.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Necesito descargar %sB de archivos.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr ""
-"Se utilizarán %sB de espacio de disco adicional después de esta operación.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "Se liberarán %sB después de esta operación.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "No pude determinar el espacio libre en %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "No tiene suficiente espacio libre en %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Se especificó Trivial Only pero ésta no es una operación trivial."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Sí, ¡haga lo que le digo!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Está a punto de hacer algo potencialmente dañino\n"
-"Para continuar escriba la frase «%s»\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Abortado."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "¿Desea continuar?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Imposible obtener %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "No se pudieron descargar algunos archivos"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Descarga completa y en modo de sólo descarga"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"No se pudieron obtener algunos archivos, ¿quizás deba ejecutar «apt-get "
-"update» o deba intentarlo de nuevo con --fix-missing?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "Actualmente no están soportados --fix-missing e intercambio de medio"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "No se pudieron corregir los paquetes que faltan."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Abortando la instalación."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"El paquete mostrado a continuación ha desaparecido de su sistema\n"
-"dado que todos sus ficheros han sido sobreescritos por otros paquetes:"
-msgstr[1] ""
-"Los paquetes mostrados a continuación han desaparecido de su sistema\n"
-"dado que todos sus ficheros han sido sobreescritos por otros paquetes:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Nota: Dpkg realiza esto de forma automática y a propósito."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Ignorar la distribución objetivo no disponible «%s» del paquete «%s»"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Escogiendo «%s» como paquete fuente en lugar de «%s»\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Ignorar la versión no disponible «%s» del paquete «%s»"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "El comando de actualización no toma argumentos"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmmm. Parece que «AutoRemover» destruyó algo y eso no debería haber pasado. "
-"Por favor, envíe un informe de fallo al programa apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "La siguiente información puede ayudar a resolver la situación:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Error interno, «AutoRemover» rompió cosas"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"El paquete indicado a continuación se instaló de forma automática y ya no es "
-"necesarios."
-msgstr[1] ""
-"Los paquetes indicados a continuación se instalaron de forma automática y ya "
-"no son necesarios."
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "Se instaló de forma automática %lu paquete y ya no es necesario.\n"
-msgstr[1] ""
-"Se instalaron de forma automática %lu paquetes y ya no son necesarios.\n"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Utilice «apt-get autoremove» para eliminarlos."
-msgstr[1] "Utilice «apt-get autoremove» para eliminarlos."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Error Interno, AllUpgrade rompió cosas"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o "
-"especifique una solución)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"No se pudieron instalar algunos paquetes. Esto puede significar que\n"
-"usted pidió una situación imposible o, si está usando la distribución\n"
-"inestable, que algunos paquetes necesarios no han sido creados o han\n"
-"sido movidos fuera de Incoming."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Paquetes rotos"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Se instalarán los siguientes paquetes extras:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Paquetes sugeridos:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Paquetes recomendados:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "No se pudo encontrar el paquete %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "fijado %s como instalado manualmente.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "fijado %s como instalado automáticamente.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Calculando la actualización... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Falló"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Listo"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr ""
"Error interno, el sistema de solución de problemas rompió algunas cosas"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "No se puede bloquear el directorio de descarga"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "Debe especificar al menos un paquete para obtener su código fuente"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, 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:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -964,7 +415,7 @@ msgstr ""
"versiones «%s» en:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, fuzzy, c-format
msgid ""
"Please use:\n"
@@ -976,87 +427,97 @@ msgstr ""
"para obtener las últimas actualizaciones (posiblemente no publicadas aún) "
"del paquete.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Omitiendo el fichero ya descargado «%s»\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "No pude determinar el espacio libre en %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "No tiene suficiente espacio libre en %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Necesito descargar %sB/%sB de archivos fuente.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Necesito descargar %sB de archivos fuente.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Fuente obtenida %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "No se pudieron obtener algunos archivos."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Descarga completa y en modo de sólo descarga"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Falló la orden de desempaquetamiento «%s».\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Falló la orden de construcción «%s».\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Falló el proceso hijo"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"Debe especificar al menos un paquete para verificar sus dependencias de "
"construcción"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "No se pudo obtener información de dependencias de construcción para %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s no tiene dependencias de construcción.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1065,7 +526,7 @@ msgstr ""
"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar "
"el paquete %s"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1074,14 +535,14 @@ msgstr ""
"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar "
"el paquete %s"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1090,7 +551,7 @@ msgstr ""
"La dependencia %s en %s no puede satisfacerse porque ninguna versión "
"disponible del paquete %s satisface los requisitos de versión"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1099,30 +560,30 @@ msgstr ""
"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar "
"el paquete %s"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "No se pudieron satisfacer las dependencias de construcción de %s."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "No se pudieron procesar las dependencias de construcción"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Conectando a %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Módulos soportados:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1213,102 +674,53 @@ msgstr ""
"para más información y opciones.\n"
" Este APT tiene poderes de Super Vaca.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"NOTA: ¡Esto es sólo una simulación\n"
-" apt-get necesita privilegios de administrador para la ejecución real.\n"
-" Tenga también en cuenta que se han desactivado los bloqueos,\n"
-" ¡no dependa de la relevancia a la situación real actual!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Obj "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Des:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Descargados %sB en %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Trabajando]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Cambio de medio: Por favor, inserte el disco etiquetado como\n"
-" «%s»\n"
-"en la unidad «%s» y pulse Intro\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "pero no está instalado"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "fijado %s como instalado manualmente.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "fijado %s como instalado automáticamente.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s ya está en su versión más reciente.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s ya está en su versión más reciente.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Esperaba %s pero no estaba allí"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "fijado %s como instalado manualmente.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "No se pudo abrir %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1330,6 +742,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1427,8 +856,8 @@ msgstr "La conexión expiró"
msgid "Server closed the connection"
msgstr "El servidor cerró la conexión"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Error de lectura"
@@ -1441,8 +870,8 @@ msgid "Protocol corruption"
msgstr "Fallo del protocolo"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Error de escritura"
@@ -1454,6 +883,10 @@ msgstr "No pude crear un socket"
msgid "Could not connect data socket, connection timed out"
msgstr "No pude conectar el socket de datos, expiró el tiempo de conexión"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Falló"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "No pude conectar un socket pasivo."
@@ -1496,7 +929,7 @@ msgstr "Expiró conexión a socket de datos"
msgid "Unable to accept connection"
msgstr "No pude aceptar la conexión"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Se produjo un problema al hacer un hash del archivo"
@@ -1629,81 +1062,609 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Error escribiendo al archivo"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Error leyendo del servidor, el lado remoto cerró la conexión."
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Error leyendo del servidor"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Error escribiendo a archivo"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Falló la selección"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Expiró la conexión"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Error escribiendo al archivo de salida"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Esperando las cabeceras"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Mala línea de cabecera"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "El servidor de http envió una cabecera de respuesta inválida"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "El servidor de http envió una cabecera de Content-Length inválida"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "El servidor de http envió una cabecera de Content-Range inválida"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Éste servidor de http tiene el soporte de alcance roto"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Formato de fecha desconocido"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Falló la selección"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Mala cabecera Data"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Expiró la conexión"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Fallo la conexión"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Error escribiendo al archivo de salida"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Error interno"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Error escribiendo a archivo"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Error escribiendo al archivo"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Error interno, ¡se llamó a «InstallPackages» con paquetes rotos!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Error leyendo del servidor, el lado remoto cerró la conexión."
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr ""
+"Los paquetes necesitan eliminarse pero está deshabilitado la posibilidad de "
+"eliminar."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Error leyendo del servidor"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Error interno, no terminó la ordenación"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Mala cabecera Data"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Qué raro.. Los tamaños no concuerdan, mande un correo a apt@packages.debian."
+"org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Fallo la conexión"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Se necesita descargar %sB/%sB de archivos.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Error interno"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Necesito descargar %sB de archivos.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr ""
+"Se utilizarán %sB de espacio de disco adicional después de esta operación.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Se liberarán %sB después de esta operación.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "No tiene suficiente espacio libre en %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Hay problemas y se utilizó -y sin --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Se especificó Trivial Only pero ésta no es una operación trivial."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Sí, ¡haga lo que le digo!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Está a punto de hacer algo potencialmente dañino\n"
+"Para continuar escriba la frase «%s»\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Abortado."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "¿Desea continuar?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "No se pudieron descargar algunos archivos"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"No se pudieron obtener algunos archivos, ¿quizás deba ejecutar «apt-get "
+"update» o deba intentarlo de nuevo con --fix-missing?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "Actualmente no están soportados --fix-missing e intercambio de medio"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "No se pudieron corregir los paquetes que faltan."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Abortando la instalación."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"El paquete mostrado a continuación ha desaparecido de su sistema\n"
+"dado que todos sus ficheros han sido sobreescritos por otros paquetes:"
+msgstr[1] ""
+"Los paquetes mostrados a continuación han desaparecido de su sistema\n"
+"dado que todos sus ficheros han sido sobreescritos por otros paquetes:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Nota: Dpkg realiza esto de forma automática y a propósito."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+"Se supone que no vamos a eliminar cosas, no se pudo iniciar «AutoRemover»"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmmm. Parece que «AutoRemover» destruyó algo y eso no debería haber pasado. "
+"Por favor, envíe un informe de fallo al programa apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "La siguiente información puede ayudar a resolver la situación:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Error interno, «AutoRemover» rompió cosas"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"El paquete indicado a continuación se instaló de forma automática y ya no es "
+"necesarios."
+msgstr[1] ""
+"Los paquetes indicados a continuación se instalaron de forma automática y ya "
+"no son necesarios."
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "Se instaló de forma automática %lu paquete y ya no es necesario.\n"
+msgstr[1] ""
+"Se instalaron de forma automática %lu paquetes y ya no son necesarios.\n"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Utilice «apt-get autoremove» para eliminarlos."
+msgstr[1] "Utilice «apt-get autoremove» para eliminarlos."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o "
+"especifique una solución)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"No se pudieron instalar algunos paquetes. Esto puede significar que\n"
+"usted pidió una situación imposible o, si está usando la distribución\n"
+"inestable, que algunos paquetes necesarios no han sido creados o han\n"
+"sido movidos fuera de Incoming."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Paquetes rotos"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Se instalarán los siguientes paquetes extras:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Paquetes sugeridos:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Paquetes recomendados:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "AVISO: ¡No se han podido autenticar los siguientes paquetes!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Aviso de autenticación ignorado.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Algunos paquetes no se pueden autenticar"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "¿Instalar estos paquetes sin verificación?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Imposible obtener %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Instalado]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Instalado]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Instalado]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Los siguientes paquetes tienen dependencias incumplidas:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "pero %s está instalado"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "pero %s va a ser instalado"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "pero no es instalable"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "pero es un paquete virtual"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "pero no está instalado"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "pero no va a instalarse"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " o"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Se instalarán los siguientes paquetes NUEVOS:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Los siguientes paquetes se ELIMINARÃN:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Los siguientes paquetes se han retenido:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Se actualizarán los siguientes paquetes:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Se DESACTUALIZARÃN los siguientes paquetes:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Se cambiarán los siguientes paquetes retenidos:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (por %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"AVISO: Se van a eliminar los siguientes paquetes esenciales.\n"
+"¡NO debe hacerse a menos que sepa exactamente lo que está haciendo!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu actualizados, %lu se instalarán, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstalados, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu desactualizados, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu para eliminar y %lu no actualizados.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu no instalados del todo o eliminados.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[S/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[s/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "S"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Error de compilación de expresiones regulares - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Corrigiendo dependencias..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " falló."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "No se puede corregir las dependencias"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "No se puede minimizar el conjunto de actualización"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Listo"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "El comando de actualización no toma argumentos"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Calculando la actualización... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Error Interno, AllUpgrade rompió cosas"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Listo"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"NOTA: ¡Esto es sólo una simulación\n"
+" apt-get necesita privilegios de administrador para la ejecución real.\n"
+" Tenga también en cuenta que se han desactivado los bloqueos,\n"
+" ¡no dependa de la relevancia a la situación real actual!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "No pude abrir %s.new"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Obj "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Des:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Descargados %sB en %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Trabajando]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Cambio de medio: Por favor, inserte el disco etiquetado como\n"
+" «%s»\n"
+"en la unidad «%s» y pulse Intro\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "No pude leer %s"
@@ -1766,36 +1727,36 @@ msgstr "Falló la creación de una tubería IPC para el subproceso"
msgid "Connection closed prematurely"
msgstr "La conexión se cerró prematuramente"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "¡Parámetro por omisión incorrecto!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Pulse Intro para continuar."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "¿Desea borrar los archivos .deb descargados con anterioridad?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
"Se produjeron algunos problemas mientras se desempaquetaba. Los paquetes que "
"se instalaron"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "van a configurarse. Esto puede dar lugar a errores duplicados"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"o errores causados por dependencias no presentes. Esto está BIEN, sólo los "
"errores"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -2051,36 +2012,36 @@ msgstr "No se pudo leer el enlace %s"
msgid "Failed to unlink %s"
msgstr "No se pudo desligar %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** No pude enlazar %s con %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " DeLink se ha llegado al límite de %sB.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Archivo no tiene campo de paquetes"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s no tiene entrada de predominio\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " el encargado de %s es %s y no %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s no tiene una entrada fuente predominante\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s tampoco tiene una entrada binaria predominante\n"
@@ -2159,7 +2120,7 @@ msgstr "Se produjo un problema al desligar %s"
msgid "Failed to rename %s to %s"
msgstr "Falló el renombre de %s a %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2231,7 +2192,7 @@ msgid "Tar checksum failed, archive corrupted"
msgstr ""
"Se produjo un fallo al calcular la suma de control de tar, archive dañado"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Cabecera del TAR tipo %u desconocida, miembro %s"
@@ -2355,22 +2316,17 @@ msgid "Unable to stat %s"
msgstr "No pude leer %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Este no es un archivo DEB válido, falta el miembro «%s»"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "Este no es un archivo DEB válido, falta el miembro «%s», «%s» o «%s»"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Error interno, no pude localizar el miembro %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Archivo de control inanalizable"
@@ -2431,89 +2387,89 @@ msgstr ""
"deshabilitado el crecimiento automático."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr "%lid %lih %limin. %liseg."
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lih %limin. %liseg."
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin. %liseg."
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%liseg."
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Selección %s no encontrada"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Tipo de abreviación no reconocida: «%c»"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Abriendo fichero de configuración %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Error de sintaxis %s:%u: Marca mal formada"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Error de sintaxis %s:%u: Basura extra después del valor"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
"Error de sintaxis %s:%u: Las directivas sólo se pueden poner en el primer "
"nivel"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Error de sintaxis %s:%u: Incluido desde aquí"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, 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:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Error de sintaxis %s:%u: la directiva «clear» tiene que incluir un árbol de "
"opciones como argumento"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, 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"
@@ -2538,50 +2494,50 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Hecho"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "No se conoce la opción de línea de órdenes «%c» [de %s]."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "No se entiende la opción de línea de órdenes %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "La opción de línea de órdenes %s no es un booleano"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "La opción %s necesita un argumento."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"Opción %s: La especificación del elemento de configuración debe tener un "
"=<val>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "La opción %s exige un argumento entero, no «%s»"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Opción «%s» demasiado larga"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "El sentido %s no se entiende, pruebe verdadero o falso."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Operación inválida: %s"
@@ -2595,116 +2551,116 @@ msgstr "No se puede obtener información del punto de montaje %s"
msgid "Failed to stat the cdrom"
msgstr "No pude montar el cdrom"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Se produjo un problema al cerrar el fichero gzip %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "No se utiliza bloqueos para el fichero de bloqueo de sólo lectura %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "No se pudo abrir el fichero de bloqueo «%s»"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "No se utilizan bloqueos para el fichero de bloqueo de montaje nfs %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "No se pudo bloquear %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "El subproceso %s recibió un fallo de segmentación."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "El subproceso %s recibió la señal %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "El subproceso %s devolvió un código de error (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "El subproceso %s terminó de forma inesperada"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "No pude abrir el fichero %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "No se pudo abrir el descriptor de fichero %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "No se pudo crear el subproceso IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "No se pudo ejecutar el compresor "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "leídos, todavía debía leer %lu pero no queda nada"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "escritos, todavía tenía que escribir %lu pero no pude hacerlo"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Se produjo un problema al cerrar el fichero %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Se produjo un problema al renombrar el fichero %s a %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Se produjo un problema al desligar el fichero %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Se produjo un problema al sincronizar el fichero"
@@ -2822,12 +2778,12 @@ msgstr "No se pudo abrir el fichero de estado %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Falló la escritura del fichero de estado temporal %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "No se pudo tratar el archivo de paquetes %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "No se pudo tratar el archivo de paquetes %s (2)"
@@ -2908,7 +2864,7 @@ msgstr "Línea %u mal formada en la lista de fuentes %s (tipo)"
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "Tipo «%s» desconocido en la línea %u de lista de fuentes %s"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2918,12 +2874,12 @@ msgstr ""
"de manual con «man 5 apt.conf» bajo «APT::Immediate-Configure» para más "
"información. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "No pude abrir el fichero «%s»"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2948,7 +2904,7 @@ msgstr ""
"El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para "
"éste."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2956,20 +2912,11 @@ msgstr ""
"Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido "
"causado por paquetes retenidos."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr ""
"No se pudieron corregir los problemas, usted ha retenido paquetes rotos."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"No se han podido descargar algunos archivos de índice, se han ignorado, o se "
-"ha utilizado unos antiguos en su lugar."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -3012,12 +2959,12 @@ msgstr "El método %s no se inició correctamente"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Por favor, inserte el disco «%s» en la unidad «%s» y pulse Intro."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "No está soportado el sistema de paquetes «%s»"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "No se pudo determinar un tipo de sistema de paquetes adecuado"
@@ -3051,18 +2998,18 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr ""
"Registro inválido en el archivo de preferencias %s, no hay cabecera «Package»"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "No se entiende el pin tipo %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "No hay prioridad especificada para pin (o es cero)"
@@ -3134,46 +3081,50 @@ msgstr "Error de E/S guardando caché fuente"
msgid "rename failed, %s (%s -> %s)."
msgstr "falló el cambio de nombre, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "La suma MD5 difiere"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "La suma hash difiere"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "El tamaño difiere"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Operación inválida: %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "No se pudo leer el archivo «Release» %s"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
"No existe ninguna clave pública disponible para los siguientes "
"identificadores de clave:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Distribución conflictiva: %s (se esperaba %s, pero se obtuvo %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3184,12 +3135,12 @@ msgstr ""
"GPG es: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Error de GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3199,16 +3150,12 @@ msgstr ""
"que necesita arreglar manualmente este paquete (debido a que falta una "
"arquitectura)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
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:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3216,16 +3163,12 @@ msgstr ""
"Los archivos de índice de paquetes están dañados. No existe un campo "
"«Filename:» para el paquete %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "El tamaño difiere"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "No se pudo leer el archivo «Release» %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "No se encontraron secciones en el archivo «Release» %s"
@@ -3371,34 +3314,34 @@ msgstr "No se pudo encontrar un registro de autenticación para: %s"
msgid "Hash mismatch for: %s"
msgstr "La suma hash difiere para: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "No se encontró la Distribución «%s» para «%s»"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "No se encontró la versión «%s» para «%s»"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "No se pudo encontrar la tarea «%s»"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
"No se pueden seleccionar distintas versiones del paquete «%s» porque es "
"puramente virtual"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3407,21 +3350,21 @@ msgstr ""
"No se puede seleccionar una versión instalada o candidata para el paquete "
"«%s» dado que éste no tiene ninguna de éstas"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"No se puede seleccionar la última versión del paquete «%s» dado que es "
"puramente virtual"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"No se puede seleccionar una versión candidata del paquete %s dado que no "
"tiene candidatos"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3448,113 +3391,134 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Ejecutando dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"No se han podido descargar algunos archivos de índice, se han ignorado, o se "
+"ha utilizado unos antiguos en su lugar."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Instalando %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Configurando %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Eliminando %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "Borrando completamente %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Se detectó la desaparición de %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Ejecutando disparador post-instalación %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Falta el directorio «%s»."
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "No pude abrir el fichero «%s»"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Preparando %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Desempaquetando %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Preparándose para configurar %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s instalado"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Preparándose para eliminar %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s eliminado"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Preparándose para eliminar completamente %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Se borró completamente %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "No se puede escribir en %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"No pudo escribirse el registro, falló la llamada a openpty() (¿está montado "
-"«/dev/pts?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Ejecutando dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
"No se escribió ningún informe «apport» porque ya se ha alcanzado el valor de "
"«MaxReports»"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "problemas de dependencias - dejando sin instalar"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3562,7 +3526,7 @@ msgstr ""
"No se escribió un informe «apport» porque el mensaje de error indica que es "
"un mensaje de error asociado a un fallo previo."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3570,7 +3534,7 @@ msgstr ""
"No se escribió un informe «apport» porque el mensaje de error indica que el "
"error es de disco lleno"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3578,7 +3542,16 @@ msgstr ""
"No se escribió un informe «apport» porque el mensaje de error indica un "
"error de memoria excedida"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"No se escribió un informe «apport» porque el mensaje de error indica que el "
+"error es de disco lleno"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3613,6 +3586,97 @@ msgstr ""
msgid "Not locked"
msgstr "No bloqueado"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Nota, seleccionando «%s» para la tarea «%s»\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Nota, seleccionando «%s» para la expresión regular «%s»\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "El paquete %s es un paquete virtual provisto por:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [No es la versión candidata]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Necesita seleccionar explícitamente uno para instalar."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "El paquete %s no está disponible, pero algún otro paquete hace "
+#~ "referencia\n"
+#~ "a él. Esto puede significar que el paquete falta, está obsoleto o sólo "
+#~ "se\n"
+#~ "encuentra disponible desde alguna otra fuente\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Sin embargo, los siguientes paquetes lo reemplazan:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "El paquete «%s» no tiene un candidato para la instalación"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "No pueden eliminarse los paquetes virtuales como «%s»\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "El paquete %s no está instalado, no se eliminará\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "El paquete %s no está instalado, no se eliminará\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Nota, seleccionando «%s» en lugar de «%s»\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "Ignorando %s, ya está instalado y no está activada la actualización.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Ignorando %s, no está instalado y sólo se están solicitando "
+#~ "actualizaciones.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "No es posible reinstalar el paquete %s, no se puede descargar.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s ya está en su versión más reciente.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Versión seleccionada «%s» (%s) para «%s»\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Versión seleccionada «%s» (%s) para «%s»\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr ""
+#~ "Ignorar la distribución objetivo no disponible «%s» del paquete «%s»"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Este no es un archivo DEB válido, falta el miembro «%s», «%s» o «%s»"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "La suma MD5 difiere"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "No se pudo localizar un archivo para el paquete %s. Esto puede significar "
+#~ "que necesita arreglar manualmente este paquete."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "No pudo escribirse el registro, falló la llamada a openpty() (¿está "
+#~ "montado «/dev/pts?)\n"
+
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Omitiendo el fichero inexistente %s"
@@ -4041,9 +4105,6 @@ msgstr "No bloqueado"
#~ msgid "Failed to stat %s%s"
#~ msgstr "No pude leer %s%s"
-#~ msgid "Failed to open %s.new"
-#~ msgstr "No pude abrir %s.new"
-
#~ msgid "Failed to rename %s.new to %s"
#~ msgstr "No se pudo renombrar %s.new a %s"
diff --git a/po/eu.po b/po/eu.po
index a270c4bf8..7837d51f4 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt_po_eu\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2009-05-17 00:41+0200\n"
"Last-Translator: Piarres Beobide <pi@beobide.net>\n"
"Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\n"
@@ -18,154 +18,156 @@ msgstr ""
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "%s paketeak (%s bertsioa) mendekotasun arazo bat du:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Pakete Izenak Guztira : "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "Pakete Izenak Guztira : "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Pakete normalak:"
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Pakete birtual puruak:"
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Bakanako pakete birtualak: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Nahastutako pakete birtualak: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Falta direnak: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Bertsio Ezberdinak Guztira: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Azalpen Ezberdinak Guztira: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Dependentziak Guztira: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Guztira Bertsio/fitxategi erlazioak: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Fitx/Azalpen erlazioak guztira: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Guztira Saltzaile Mapatzea: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Guztira bateratutako kateak: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Guztira bertsio dependentzia lekua: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Guztira galdutako tokia:"
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Guztira erregistratutako lekua: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "%s pakete fitxategia ez dago sinkronizatuta."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Ez da paketerik aurkitu"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "Zehazki eredu bat eman behar duzu."
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Ezin da %s paketea lokalizatu"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Pakete Fitxategiak:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"Katxea ez dago sinkronizatuta, ezin zaio erreferentziarik (x-ref) egin "
"pakete fitxategi bati"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Pin duten Paketeak:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(ez da aurkitu)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Instalatuta: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Hautagaia: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(bat ere ez)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Paketearen pin-a:"
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Bertsio taula:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s %s-rentzat %s %s-ean konpilatua\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -238,37 +240,37 @@ msgstr ""
"Informazio gehiago nahi izanez gero: ikus apt-cache(8) eta apt.conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
#, fuzzy
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
"Mesedez idatzi izen bat diska honentzat, 'Debian 2.1r1 1 Diska' antzerakoan"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Mesedez sar diska bat gailuan eta enter sakatu"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Huts egin du %s izenaren ordez %s ipintzean"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Prozesu hau bildumako beste CD guztiekin errepikatu."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Parekatu gabeko argumentuak"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -296,608 +298,62 @@ msgstr ""
" -c=? Irakurri konfigurazio fitxategi hau\n"
" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[B/e]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[b/E]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr ""
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Adierazpen erregularren konpilazio errorea - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Ondorengo paketeetan bete gabeko mendekotasunak daude:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "baina %s instalatuta dago"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "baina %s instalatzeko dago"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "baina ez da instalagarria"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "baina pakete birtuala da"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "baina ez dago instalatuta"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "baina ez da instalatuko"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " edo"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Ondorengo pakete BERRIAK instalatuko dira:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Ondorengo paketeak KENDUKO dira:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Ondorengo paketeak mantendu egin dira:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Ondorengo paketeak bertsio-berrituko dira:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Ondorengo paketeak AURREKO BERTSIORA itzuliko dira:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Ondorengo pakete atxikiak aldatu egingo dira:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (arrazoia: %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"KONTUZ: Ondorengo funtsezko paketeak kendu egingo dira\n"
-"EZ ezazu horrelakorik egin, ez badakizu ondo zertan ari zaren!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu bertsio berritua(k), %lu berriki instalatuta, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu berrinstalatuta, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu aurreko bertsiora itzulita, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu ez erabat instalatuta edo kenduta.\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Oharra: %s hautatzen '%s' adierazpen erregularrarentzat\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Oharra: %s hautatzen '%s' adierazpen erregularrarentzat\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Instalatuta]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "Hautagaien bertsioak"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Zehazki bat hautatu behar duzu instalatzeko."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"%s paketea ez dago erabilgarri, baina beste pakete batek erreferentzia \n"
-"egiten dio. Beharbada paketea faltako da, edo zaharkituta egongo da, edo \n"
-"beste iturburu batean bakarrik egongo da erabilgarri\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Baina ondorengo paketeek ordezten dute:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "%s paketeak ez du instalatzeko hautagairik"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Oharra, %s hautatzen %s(r)en ordez\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s bertsiorik berriena da jada.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s eskuz instalatua bezala ezarri.\n"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Hautatutako bertsioa: %s (%s) -- %s\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Hautatutako bertsioa: %s (%s) -- %s\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Mendekotasunak zuzentzen..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " : huts egin du."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Ezin dira mendekotasunak zuzendu"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Ezin da bertsio berritzeko multzoa minimizatu"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Eginda"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Bete gabeko mendekotasunak. Probatu -f erabiliz."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Egiaztapen abisua gainidazten.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Paketeak egiaztapen gabe instalatu?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Zenbait pakete ezin dira egiaztatu"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Barne errorea, ez da ordenatzeaz amaitu"
-
-#: cmdline/apt-get.cc:1218
-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)"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Artxiboetako %sB eskuratu behar dira.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Ekintza honen ondoren, %sB gehiago erabiliko dira diskoan.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Ezin da %s(e)n duzun leku librea atzeman."
-
-#: cmdline/apt-get.cc:1270
-#, 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:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "'Trivial Only' zehaztu da, baina hau ez da eragiketa tribial bat."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Bai, egin esandakoa!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Egin nahi duzunak kalte larriak eragin ditzake\n"
-"Jarraitzeko, idatzi '%s' esaldia\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Abortatu."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Aurrera jarraitu nahi al duzu?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Ezin da lortu %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Fitxategi batzuk ezin izan dira deskargatu"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Deskarga amaituta eta deskarga soileko moduan"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Ezin izan dira artxibo batzuk lortu; beharbada apt-get update exekutatu, edo "
-"--fix-missing aukerarekin saiatu?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Falta diren paketeak ezin dira zuzendu."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Abortatu instalazioa."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, fuzzy, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Ezin da atzitu %s iturburu paketeen zerrenda"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Eguneratzeko komandoak ez du argumenturik hartzen"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, dirudienez AutoRemover-ek gertatu behar ez zen apurtu du\n"
-"Mesedez programa errore txosten bat bete mesedez."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Informazio honek arazoa konpontzen lagun dezake:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du"
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
-"behar."
-msgstr[1] ""
-"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
-"behar."
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
-"behar."
-msgstr[1] ""
-"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
-"behar."
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "'apt-get autoremove' erabili ezabatzeko."
-msgstr[1] "'apt-get autoremove' erabili ezabatzeko."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Barne Errorea, AllUpgade-k zerbait apurtu du"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo "
-"zehaztu konponbide bat)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Pakete batzuk ezin izan dira instalatu. Beharbada ezinezko egoera \n"
-"bat eskatu duzu, edo, banaketa ezegonkorra erabiltzen ari bazara,\n"
-"beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n"
-"Sarrerakoetan (Incoming) egoten jarraituko dute."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Hautsitako paketeak"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Ondorengo pakete gehigarriak instalatuko dira:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Iradokitako paketeak:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Gomendatutako paketeak:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Ezin izan da %s paketea aurkitu"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s eskuz instalatua bezala ezarri.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s eskuz instalatua bezala ezarri.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Berriketak kalkulatzen... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Huts egin du"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Eginda"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Barne Errorea, arazo konpontzaileak zerbait apurtu du"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Ezin da deskarga direktorioa blokeatu"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -905,87 +361,97 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Ezin da %s(e)n duzun leku librea atzeman."
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Ez daukazu nahikoa leku libre %s(e)n."
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Iturburu artxiboetako %sB/%sB eskuratu behar dira.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Eskuratu %s iturburua\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Huts egin du zenbat artxibo lortzean."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Deskarga amaituta eta deskarga soileko moduan"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Eraikitzeko '%s' komandoak huts egin du.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Prozesu umeak huts egin du"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s: ez du eraikitze mendekotasunik.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -993,7 +459,7 @@ msgid ""
msgstr ""
"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1001,14 +467,14 @@ msgid ""
msgstr ""
"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1017,7 +483,7 @@ msgstr ""
"%2$s(r)en %1$s mendekotasuna ezin da bete, ez baitago bertsio-eskakizunak "
"betetzen dituen %3$s paketearen bertsio erabilgarririk"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1025,30 +491,30 @@ msgid ""
msgstr ""
"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, 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:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Huts egin du eraikitze mendekotasunak prozesatzean"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Konektatzen -> %s.(%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Onartutako Moduluak:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1135,98 +601,53 @@ msgstr ""
"sources.list(5) eta apt.conf(5) orrialdeak eskuliburuan.\n"
" APT honek Super Behiaren Ahalmenak ditu.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Atzituta "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Hartu:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ez ikusi "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Lortuta: %sB (%s) (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Lanean]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Medio Aldaketa: Mesedez sar\n"
-" '%s'\n"
-"izeneko diska '%s' gailuan eta enter sakatu\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "baina ez dago instalatuta"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s eskuz instalatua bezala ezarri.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s eskuz instalatua bezala ezarri.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s bertsiorik berriena da jada.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s bertsiorik berriena da jada.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "%s espero zen baina ez zegoen han"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s eskuz instalatua bezala ezarri.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Huts egin du %s irekitzean"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1248,6 +669,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1348,8 +786,8 @@ msgstr "Konexioa denboraz kanpo"
msgid "Server closed the connection"
msgstr "Zerbitzariak konexioa itxi du"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Irakurketa errorea"
@@ -1362,8 +800,8 @@ msgid "Protocol corruption"
msgstr "Protokolo hondatzea"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Idazketa errorea"
@@ -1376,6 +814,10 @@ msgid "Could not connect data socket, connection timed out"
msgstr ""
"Ezin izan da datu-socketa konektatu; konexioak denbora muga gainditu du"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Huts egin du"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Ezin izan da socket pasibora konektatu."
@@ -1418,7 +860,7 @@ msgstr "Datu-socket konexioak denbora muga gainditu du"
msgid "Unable to accept connection"
msgstr "Ezin da konexioa onartu"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Arazoa fitxategiaren hash egitean"
@@ -1550,81 +992,601 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Errorea fitxategian idaztean"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Errorea zerbitzaritik irakurtzean"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Errorea fitxategian idaztean"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Hautapenak huts egin du"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Konexioaren denbora muga gainditu da"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Errorea irteerako fitxategian idaztean"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Goiburuen zain"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Okerreko goiburu-lerroa"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "http zerbitzariak erantzun goiburu baliogabe bat bidali du."
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "http zerbitzariak Content-Length buru baliogabe bat bidali du"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "http zerbitzariak Content-Range buru baliogabe bat bidali du"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "http zerbitzariak barruti onarpena apurturik du"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Datu formatu ezezaguna"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Hautapenak huts egin du"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Goiburu data gaizki dago"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Konexioaren denbora muga gainditu da"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Konexioak huts egin du"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Errorea irteerako fitxategian idaztean"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Barne errorea"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Errorea fitxategian idaztean"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Errorea fitxategian idaztean"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Errorea zerbitzaritik irakurtzean"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Barne errorea, ez da ordenatzeaz amaitu"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Goiburu data gaizki dago"
+#: apt-private/private-install.cc:159
+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)"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Konexioak huts egin du"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Barne errorea"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Artxiboetako %sB eskuratu behar dira.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Ekintza honen ondoren, %sB gehiago erabiliko dira diskoan.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Ekintza honen ondoren, %sB libratuko dira diskoan.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Ez daukazu nahikoa leku libre %s(e)n."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Arazoak daude, eta -y erabili da --force-yes gabe"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "'Trivial Only' zehaztu da, baina hau ez da eragiketa tribial bat."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Bai, egin esandakoa!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Egin nahi duzunak kalte larriak eragin ditzake\n"
+"Jarraitzeko, idatzi '%s' esaldia\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Abortatu."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Aurrera jarraitu nahi al duzu?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Fitxategi batzuk ezin izan dira deskargatu"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Ezin izan dira artxibo batzuk lortu; beharbada apt-get update exekutatu, edo "
+"--fix-missing aukerarekin saiatu?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Falta diren paketeak ezin dira zuzendu."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Abortatu instalazioa."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Suposatu ez dugun zerbait ezabatuko da, ezin da AutoRemover abiarazi"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, dirudienez AutoRemover-ek gertatu behar ez zen apurtu du\n"
+"Mesedez programa errore txosten bat bete mesedez."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Informazio honek arazoa konpontzen lagun dezake:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du"
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
+"behar."
+msgstr[1] ""
+"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
+"behar."
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
+"behar."
+msgstr[1] ""
+"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
+"behar."
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "'apt-get autoremove' erabili ezabatzeko."
+msgstr[1] "'apt-get autoremove' erabili ezabatzeko."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu hauek zuzentzeko:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo "
+"zehaztu konponbide bat)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Pakete batzuk ezin izan dira instalatu. Beharbada ezinezko egoera \n"
+"bat eskatu duzu, edo, banaketa ezegonkorra erabiltzen ari bazara,\n"
+"beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n"
+"Sarrerakoetan (Incoming) egoten jarraituko dute."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Hautsitako paketeak"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Ondorengo pakete gehigarriak instalatuko dira:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Iradokitako paketeak:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Gomendatutako paketeak:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Egiaztapen abisua gainidazten.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Zenbait pakete ezin dira egiaztatu"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Paketeak egiaztapen gabe instalatu?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Ezin da lortu %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Instalatuta]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Instalatuta]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Instalatuta]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Ondorengo paketeetan bete gabeko mendekotasunak daude:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "baina %s instalatuta dago"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "baina %s instalatzeko dago"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "baina ez da instalagarria"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "baina pakete birtuala da"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "baina ez dago instalatuta"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "baina ez da instalatuko"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " edo"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Ondorengo pakete BERRIAK instalatuko dira:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Ondorengo paketeak KENDUKO dira:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Ondorengo paketeak mantendu egin dira:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Ondorengo paketeak bertsio-berrituko dira:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Ondorengo paketeak AURREKO BERTSIORA itzuliko dira:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Ondorengo pakete atxikiak aldatu egingo dira:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (arrazoia: %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"KONTUZ: Ondorengo funtsezko paketeak kendu egingo dira\n"
+"EZ ezazu horrelakorik egin, ez badakizu ondo zertan ari zaren!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu bertsio berritua(k), %lu berriki instalatuta, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu berrinstalatuta, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu aurreko bertsiora itzulita, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu ez erabat instalatuta edo kenduta.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[B/e]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[b/E]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr ""
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Adierazpen erregularren konpilazio errorea - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Mendekotasunak zuzentzen..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " : huts egin du."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Ezin dira mendekotasunak zuzendu"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Ezin da bertsio berritzeko multzoa minimizatu"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Eginda"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu zuzentzeko."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Bete gabeko mendekotasunak. Probatu -f erabiliz."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Eguneratzeko komandoak ez du argumenturik hartzen"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Berriketak kalkulatzen... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Barne Errorea, AllUpgade-k zerbait apurtu du"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Eginda"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Huts egin du %s izenaren ordez %s ipintzean"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Atzituta "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Hartu:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ez ikusi "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Lortuta: %sB (%s) (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Lanean]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Medio Aldaketa: Mesedez sar\n"
+" '%s'\n"
+"izeneko diska '%s' gailuan eta enter sakatu\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Ezin da %s irakurri"
@@ -1683,34 +1645,34 @@ msgstr "Huts egin du azpiprozesuarentzako IPC kanalizazio bat sortzean"
msgid "Connection closed prematurely"
msgstr "Konexioa behar baino lehenago itxi da"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Okerreko ezarpen lehenetsia!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Jarraitzeko, sakatu Sartu."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Deskargaturiko .deb fitxategi guztiak ezabatu nahi al dituzu?"
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Errore batzuk gertatu dira deskonprimitzean. Konfiguratu egingo ditut"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "instalatutako paketeak. Horrek errore bikoiztuak eragin ditzake"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "edo falta diren mendekotasunen erroreak. Hori ondo dago; mezu honen"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1960,36 +1922,36 @@ msgstr "Huts egin du %s esteka irakurtzean"
msgid "Failed to unlink %s"
msgstr "Huts egin du %s desestekatzean"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Ezin izan da %s %s(r)ekin estekatu"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " DeLink-en mugara (%sB) heldu da.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Artxiboak ez du pakete eremurik"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s: ez du override sarrerarik\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s mantentzailea %s da, eta ez %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s: ez du jatorri gainidazketa sarrerarik\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s: ez du bitar gainidazketa sarrerarik\n"
@@ -2068,7 +2030,7 @@ msgstr "Arazoa %s desestekatzean"
msgid "Failed to rename %s to %s"
msgstr "Huts egin du %s izenaren ordez %s ipintzean"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2137,7 +2099,7 @@ msgstr "Hondatutako artxiboa"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar egiaztapenak huts egin, hondatutakofitxategia"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "%u TAR goiburu mota ezezaguna, %s kidea"
@@ -2261,23 +2223,17 @@ msgid "Unable to stat %s"
msgstr "Ezin da daturik lortu %s(e)tik"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Ez da baliozko DEB artxiboa; '%s' kidea falta da"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Hau ez da baliozko DEB fitxategi bat, ez du '%s', '%s' edo '%s' atalik "
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Barne Errorea, ezin da %s atala kokatu"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Kontrol fitxategi ezin analizagarria"
@@ -2336,85 +2292,85 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "%s hautapena ez da aurkitu"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Mota ezezaguneko laburtzapena: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "%s konfigurazio fitxategia irekitzen"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Sintaxi errorea %s:%u: Gaizki eratutako"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Sintaxi errorea, %s:%u: habiaratutako elementu gehiegi"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Sintaxi errorea, %s:%u: hemendik barne hartuta"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Sintaxi errorea, %s:%u: onartu gabeko '%s' direktiba"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria fitxategi amaieran"
@@ -2439,49 +2395,49 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Eginda"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Ez da ezagutzen komando lerroko '%c' aukera [%s]."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Ez da ulertzen komando lerroko %s aukera"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Komando lerroko %s aukera ez da boolearra."
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "%s aukerak argumentu bat behar du."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"%s aukera: konfigurazio elementuaren zehaztapenak =<val> eduki behar du."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "%s aukerak osoko argumentu bat behar du, eta ez '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "'%s' aukera luzeegia da"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "%s zentzua ez da ulertzen; probatu egiazkoa edo faltsua."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Eragiketa baliogabea: %s"
@@ -2495,119 +2451,119 @@ msgstr "Ezin da atzitu %s muntatze puntua"
msgid "Failed to stat the cdrom"
msgstr "Huts egin du CDROMa atzitzean"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "Arazoa fitxategia ixtean"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
"Ez da blokeorik erabiltzen ari irakurtzeko soilik den %s blokeo "
"fitxategiarentzat"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Ezin izan da %s blokeo fitxategia ireki"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
"Ez da blokeorik erabiltzen ari nfs %s muntatutako blokeo fitxategiarentzat"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Ezin izan da %s blokeoa hartu"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "%s azpiprozesua ustekabean amaitu da"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "%s fitxategia ezin izan da ireki"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "Ezin izan da %s(r)en kanalizazioa ireki"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Huts egin du IPC azpiprozesua sortzean"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Huts egin du konpresorea exekutatzean "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "irakurrita; oraindik %lu irakurtzeke, baina ez da ezer geratzen"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "idatzita; oraindik %lu idazteke, baina ezin da"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "Arazoa fitxategia ixtean"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Arazoa fitxategia sinkronizatzean"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "Arazoa fitxategia desestekatzean"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Arazoa fitxategia sinkronizatzean"
@@ -2725,12 +2681,12 @@ msgstr "Huts egin du %s EgoeraFitxategia irekitzean"
msgid "Failed to write temporary StateFile %s"
msgstr "Ezin izan da %s aldiroko EgoeraFitrxategia idatzi"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Ezin da %s pakete fitxategia analizatu (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Ezin da %s pakete fitxategia analizatu (2)"
@@ -2805,19 +2761,19 @@ msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "%s fitxategia ezin izan da ireki"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2841,7 +2797,7 @@ msgid ""
msgstr ""
"%s paketea berriro instalatu behar da, baina ezin dut artxiborik aurkitu."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2849,19 +2805,10 @@ msgstr ""
"Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada "
"atxikitako paketeek eraginda."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Indize fitxategi batzuk ezin izan dira deskargatu; ez ikusi egin zaie, edo "
-"zaharrak erabili dira haien ordez."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2904,12 +2851,12 @@ msgstr "%s metodoa ez da behar bezala abiarazi"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Mesedez sa ''%s' izeneko diska '%s' gailuan eta enter sakatu"
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "'%s' pakete sistema ez da onartzen"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Ezin da pakete sistemaren mota egokirik zehaztu"
@@ -2941,17 +2888,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Erregistro baliogabea hobespenen fitxategian, pakete goibururik ez"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Ez da ulertu %s orratz-mota (pin)"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Ez da lehentasunik zehaztu orratzarentzat (pin) (edo zero da)"
@@ -3018,44 +2965,48 @@ msgstr "S/I errorea iturburu katxea gordetzean"
msgid "rename failed, %s (%s -> %s)."
msgstr "huts egin du izen-aldaketak, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum ez dator bat"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Egiaztapena ez dator bat"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Tamaina ez dator bat"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Eragiketa baliogabea: %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Ezin da %s pakete fitxategia analizatu (1)"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3063,12 +3014,12 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3077,16 +3028,12 @@ msgstr ""
"Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu "
"beharko duzu paketea. (arkitektura falta delako)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu "
-"beharko duzu paketea."
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3094,16 +3041,12 @@ msgstr ""
"Paketearen indize fitxategiak hondatuta daude. 'Filename:' eremurik ez %s "
"paketearentzat."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Tamaina ez dator bat"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "Ezin da %s pakete fitxategia analizatu (1)"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "Oharra, %s hautatzen %s(r)en ordez\n"
@@ -3247,49 +3190,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "Egiaztapena ez dator bat"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "'%2$s'(r)en '%1$s' banaketa ez da aurkitu"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "'%2$s'(r)en '%1$s' bertsioa ez da aurkitu"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "Ezin izan da %s zeregina aurkitu"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Ezin izan da %s paketea aurkitu"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3314,129 +3257,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Indize fitxategi batzuk ezin izan dira deskargatu; ez ikusi egin zaie, edo "
+"zaharrak erabili dira haien ordez."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "%s Instalatzen"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "%s konfiguratzen"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "%s kentzen"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "%s guztiz ezabatu da"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "'%s' direktorioa falta da"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "%s fitxategia ezin izan da ireki"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "%s prestatzen"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "%s irekitzen"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "%s konfiguratzeko prestatzen"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s Instalatuta"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "%s kentzeko prestatzen"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s kendurik"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "%s guztiz ezabatzeko prestatzen"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s guztiz ezabatu da"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "%s : ezin da idatzi"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Ezin da erregistroa idatzi, openpty() -ek huts egin du (/dev/pts ez dago "
-"muntaturik?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3466,6 +3436,93 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Oharra: %s hautatzen '%s' adierazpen erregularrarentzat\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Oharra: %s hautatzen '%s' adierazpen erregularrarentzat\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "%s pakete birtual bat da, honek hornitua:\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "Hautagaien bertsioak"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Zehazki bat hautatu behar duzu instalatzeko."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "%s paketea ez dago erabilgarri, baina beste pakete batek erreferentzia \n"
+#~ "egiten dio. Beharbada paketea faltako da, edo zaharkituta egongo da, "
+#~ "edo \n"
+#~ "beste iturburu batean bakarrik egongo da erabilgarri\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Baina ondorengo paketeek ordezten dute:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "%s paketeak ez du instalatzeko hautagairik"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Oharra, %s hautatzen %s(r)en ordez\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "%s berriro instalatzea ez da posible; ezin da deskargatu.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s bertsiorik berriena da jada.\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Hautatutako bertsioa: %s (%s) -- %s\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Hautatutako bertsioa: %s (%s) -- %s\n"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Hau ez da baliozko DEB fitxategi bat, ez du '%s', '%s' edo '%s' atalik "
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum ez dator bat"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz "
+#~ "konpondu beharko duzu paketea."
+
+#~ 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"
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "%s konfigurazio fitxategia irekitzen"
diff --git a/po/fi.po b/po/fi.po
index fca44794c..db7361d60 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.5.26\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2008-12-11 14:52+0200\n"
"Last-Translator: Tapio Lehtonen <tale@debian.org>\n"
"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
@@ -18,152 +18,154 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Paketin %s versiossa %s on tyydyttämätön riippuvuus:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Pakettien kokonaismäärä : "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "Pakettien kokonaismäärä : "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Tavallisia paketteja: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Aitoja näennäispaketteja: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Yksinkertaisia näennäispaketteja: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Sekanäennäispaketteja: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Puuttuu: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Eri versioita yhteensä: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Eri kuvauksia yhteensä: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Riippuvuuksia yhteensä: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Versio/tdsto suhteita yht: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Kuvaus/tdsto suhteita yht: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Tarjoamiskuvauksia yhteensä: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Erilaisia merkkijonoja yhteensä: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Versioriippuvuustila yhteensä: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Löysää tilaa yhteensä: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Käytetty tila yhteensä: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Pakettitiedosto %s ei ole ajan tasalla."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Yhtään pakettia ei löytynyt"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "On annettava täsmälleen yksi lauseke"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Pakettia %s ei löydy"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Pakettitiedostot:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Varasto ei ole ajan tasalla, pakettitiedostoa ei löydy kansiosta"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Paketit joissa tunniste:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(ei löydy)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Asennettu: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Ehdokas: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ei mitään)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Paketin tunnistenumero: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Versiotaulukko:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s laitealustalle %s käännöksen päiväys %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -236,36 +238,36 @@ msgstr ""
"Lisätietoja apt-cache(8) ja apt.conf(5) käsikirjasivuilla.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
#, 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:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Aseta levy asemaan ja paina Enter"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Nimen muuttaminen %s -> %s ei onnistunut"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Toista tämä lopuille rompuille kasassasi."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Parametrit eivät ole pareittain"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -293,608 +295,62 @@ msgstr ""
" -c=? Lue tämä asetustiedosto\n"
" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[K/e]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "K"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Käännösvirhe lausekkeessa - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Näillä paketeilla on tyydyttämättömiä riippuvuuksia:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "mutta %s on asennettu"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "mutta %s on merkitty asennettavaksi"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "mutta ei ole asennuskelpoinen"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "mutta on näennäispaketti"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "mutta ei ole asennettu"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "mutta ei ole merkitty asennettavaksi"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " tai"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Seuraavat UUDET paketit asennetaan:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Seuraavat paketit POISTETAAN:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Nämä paketit on jätetty odottamaan:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Nämä paketit päivitetään:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Nämä paketit VARHENNETAAN:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Seuraavat pysytetyt paketit muutetaan:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (syynä %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"VAROITUS: Seuraavat välttämättömät paketit poistetaan.\n"
-"Näin EI PITÄISI tehdä jos ei aivan tarkkaan tiedä mitä tekee!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu päivitetty, %lu uutta asennusta, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu uudelleen asennettua, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu varhennettua, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu ei asennettu kokonaan tai poistettiin.\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Huomautus, valitaan %s lausekkeella \"%s\"\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Huomautus, valitaan %s lausekkeella \"%s\"\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Asennettu]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "Mahdolliset versiot"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Yksi pitää valita asennettavaksi."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Pakettia %s ei ole saatavilla, mutta toinen paketti viittaa siihen.\n"
-"Tämä voi tarkoittaa paketin puuttuvan, olevan vanhentunut tai\n"
-"saatavilla vain jostain muusta lähteestä\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Seuraavat paketit kuitenkin korvaavat sen:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Paketilla %s ei ole asennettavaa valintaa"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Huomautus, valitaan %s eikä %s\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s on jo uusin versio.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Valittiin versio %s (%s) paketille %s\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Valittiin versio %s (%s) paketille %s\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Korjataan riippuvuuksia..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " ei onnistunut."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Riippuvuuksien korjaus ei onnistu"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Päivitysjoukon minimointi ei onnistu"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Valmis"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Tyydyttämättömiä riippuvuuksia. Koita käyttää -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Varoitus varmistamisesta on ohitettu.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Asennetaanko nämä paketit ilman todennusta?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Joidenkin pakettien alkuperästä ei voitu varmistua"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!"
-
-#: cmdline/apt-get.cc:1169
-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:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"No jo on... Koot eivät täsmää, sähköpostita email apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Noudettavaa arkistoa %st/%st.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Noudettavaa arkistoa %st.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Toiminnon jälkeen käytetään %s t lisää levytilaa.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Kansion %s vapaan tilan määrä ei selvinnyt"
-
-#: cmdline/apt-get.cc:1270
-#, 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:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"On määritetty Trivial Only mutta tämä ei ole itsestäänselvä toimenpide."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Kyllä, tee kuten käsketään!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Olet aikeissa tehdä mahdollisesti vahingollisen toimenpiteen.\n"
-"Jatka kirjoittamalla \"%s\"\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Keskeytä."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Haluatko jatkaa?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Tiedoston %s nouto ei onnistunut %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Joidenkin tiedostojen nouto ei onnistunut"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Nouto on valmis ja määrätty vain nouto"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai "
-"kokeile --fix-missing?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Puuttuvia paketteja ei voi korjata."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Asennus keskeytetään."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, fuzzy, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "stat ei toiminut lähdepakettiluettelolle %s"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Komento update ei käytä parametreja"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, nähtävästi AutoRemover tuhosi jotain, mitä ei pitäisi tapahtua.\n"
-"Tekisitkö vikailmoituksen apt:sta."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Sisäinen virhe, AutoRemover rikkoi jotain"
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää "
-"vaadittuja:"
-msgstr[1] ""
-"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää "
-"vaadittuja:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää "
-"vaadittuja:"
-msgstr[1] ""
-"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää "
-"vaadittuja:"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Poista ne komennolla \"apt-get autoremove\"."
-msgstr[1] "Poista ne komennolla \"apt-get autoremove\"."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Sisäinen virhe, AllUpgrade rikkoi jotain"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" "
-"ilmanpaketteja (tai ratkaise itse)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Joitakin paketteja ei voitu asentaa. On ehkä vaadittu mahdottomia tai,\n"
-"jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n"
-"vielä luotu tai siirretty Incoming-kansiosta."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Rikkinäiset paketit"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Ehdotetut paketit:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Suositellut paketit:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Pakettia %s ei löytynyt"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Käsitellään päivitystä ... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Ei onnistunut"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Valmis"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Sisäinen virhe, resolver rikkoi jotain"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Noutokansiota ei saatu lukittua"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Paketin %s lähdekoodipakettia ei löytynyt"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -902,86 +358,96 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Kansion %s vapaan tilan määrä ei selvinnyt"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "On noudettava %st lähdekoodiarkistoja.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Nouda lähdekoodi %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Joidenkin arkistojen noutaminen ei onnistunut."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Nouto on valmis ja määrätty vain nouto"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Purkukomento \"%s\" ei onnistunut.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Paketointikomento \"%s\" ei onnistunut.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Lapsiprosessi kaatui"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Paketille %s ei ole saatavilla riippuvuustietoja"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -989,7 +455,7 @@ msgid ""
msgstr ""
"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -997,14 +463,14 @@ msgid ""
msgstr ""
"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1013,7 +479,7 @@ msgstr ""
"%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio "
"ei vastaa versioriippuvuuksia"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1021,30 +487,30 @@ msgid ""
msgstr ""
"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Paketointiriippuvuuksien käsittely ei onnistunut"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Avataan yhteys %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Tuetut moduulit:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1130,98 +596,53 @@ msgstr ""
"lisätietoja ja lisää valitsimia.\n"
" This APT has Super Cow Powers.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Löytyi "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Nouda:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Siv "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Vrhe "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Noudettiin %st ajassa %s (%st/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Työskennellään]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Taltion vaihto: Pistä levy \n"
-"\"%s\"\n"
-"asemaan \"%s\" ja paina Enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "mutta ei ole asennettu"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s on jo uusin versio.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s on jo uusin versio.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Odotettiin %s, mutta sitä ei ollut"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Tiedoston %s avaaminen ei onnistunut"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1243,6 +664,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1340,8 +778,8 @@ msgstr "Yhteys aikakatkaistiin"
msgid "Server closed the connection"
msgstr "Palvelin sulki yhteyden"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Lukuvirhe"
@@ -1354,8 +792,8 @@ msgid "Protocol corruption"
msgstr "Yhteyskäytäntö on turmeltunut"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Virhe kirjoitettaessa"
@@ -1367,6 +805,10 @@ msgstr "Pistoketta ei voitu luoda"
msgid "Could not connect data socket, connection timed out"
msgstr "Pistoketta ei voitu kytkeä, yhteys aikakatkaistiin"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Ei onnistunut"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Passiivista pistoketta ei voitu kytkeä."
@@ -1409,7 +851,7 @@ msgstr "Pistokkeen kytkeminen aikakatkaistiin"
msgid "Unable to accept connection"
msgstr "Yhteyttä ei voitu hyväksyä"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Pulmia tiedoston hajautuksessa"
@@ -1542,81 +984,601 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Tapahtui virhe luettaessa palvelimelta"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Select ei toiminut"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Yhteys aikakatkaistiin"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Odotetaan otsikoita"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Virheellinen otsikkorivi"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "HTTP-palvelin lähetti virheellisen vastausotsikon"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "HTTP-palvelin lähetti virheellisen Content-Length-otsikon"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "HTTP-palvelin lähetti virheellisen Content-Range-otsikon"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "HTTP-palvelimen arvoaluetuki on rikki"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Tuntematon päiväysmuoto"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Select ei toiminut"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Virheellinen otsikkotieto"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Yhteys aikakatkaistiin"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Yhteys ei toiminut"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Sisäinen virhe"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Paketteja pitäisi poistaa mutta Remove ei ole käytössä."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Tapahtui virhe luettaessa palvelimelta"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Virheellinen otsikkotieto"
+#: apt-private/private-install.cc:159
+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"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Yhteys ei toiminut"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Noudettavaa arkistoa %st/%st.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Sisäinen virhe"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Noudettavaa arkistoa %st.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Toiminnon jälkeen käytetään %s t lisää levytilaa.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Toiminnon jälkeen vapautuu %s t levytilaa.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Oli pulmia ja -y käytettiin ilman valitsinta --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"On määritetty Trivial Only mutta tämä ei ole itsestäänselvä toimenpide."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Kyllä, tee kuten käsketään!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Olet aikeissa tehdä mahdollisesti vahingollisen toimenpiteen.\n"
+"Jatka kirjoittamalla \"%s\"\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Keskeytä."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Haluatko jatkaa?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Joidenkin tiedostojen nouto ei onnistunut"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai "
+"kokeile --fix-missing?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Puuttuvia paketteja ei voi korjata."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Asennus keskeytetään."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+"On tarkoitus olla poistamatta mitään, joten AutoRemover:ia ei voi käynnistää"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, nähtävästi AutoRemover tuhosi jotain, mitä ei pitäisi tapahtua.\n"
+"Tekisitkö vikailmoituksen apt:sta."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Sisäinen virhe, AutoRemover rikkoi jotain"
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää "
+"vaadittuja:"
+msgstr[1] ""
+"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää "
+"vaadittuja:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää "
+"vaadittuja:"
+msgstr[1] ""
+"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää "
+"vaadittuja:"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Poista ne komennolla \"apt-get autoremove\"."
+msgstr[1] "Poista ne komennolla \"apt-get autoremove\"."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Saatat haluta suorittaa \"apt-get -f install\" korjaamaan nämä:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" "
+"ilmanpaketteja (tai ratkaise itse)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Joitakin paketteja ei voitu asentaa. On ehkä vaadittu mahdottomia tai,\n"
+"jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n"
+"vielä luotu tai siirretty Incoming-kansiosta."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Rikkinäiset paketit"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Ehdotetut paketit:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Suositellut paketit:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Varoitus varmistamisesta on ohitettu.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Joidenkin pakettien alkuperästä ei voitu varmistua"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Asennetaanko nämä paketit ilman todennusta?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Tiedoston %s nouto ei onnistunut %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Asennettu]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Asennettu]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Asennettu]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Näillä paketeilla on tyydyttämättömiä riippuvuuksia:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "mutta %s on asennettu"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "mutta %s on merkitty asennettavaksi"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "mutta ei ole asennuskelpoinen"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "mutta on näennäispaketti"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "mutta ei ole asennettu"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "mutta ei ole merkitty asennettavaksi"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " tai"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Seuraavat UUDET paketit asennetaan:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Seuraavat paketit POISTETAAN:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Nämä paketit on jätetty odottamaan:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Nämä paketit päivitetään:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Nämä paketit VARHENNETAAN:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Seuraavat pysytetyt paketit muutetaan:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (syynä %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"VAROITUS: Seuraavat välttämättömät paketit poistetaan.\n"
+"Näin EI PITÄISI tehdä jos ei aivan tarkkaan tiedä mitä tekee!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu päivitetty, %lu uutta asennusta, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu uudelleen asennettua, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu varhennettua, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu ei asennettu kokonaan tai poistettiin.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[K/e]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "K"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Käännösvirhe lausekkeessa - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Korjataan riippuvuuksia..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " ei onnistunut."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Riippuvuuksien korjaus ei onnistu"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Päivitysjoukon minimointi ei onnistu"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Valmis"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Halunnet suorittaa \"apt-get -f install\" korjaamaan nämä."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Tyydyttämättömiä riippuvuuksia. Koita käyttää -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Komento update ei käytä parametreja"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Käsitellään päivitystä ... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Sisäinen virhe, AllUpgrade rikkoi jotain"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Valmis"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Nimen muuttaminen %s -> %s ei onnistunut"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Löytyi "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Nouda:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Siv "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Vrhe "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Noudettiin %st ajassa %s (%st/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Työskennellään]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Taltion vaihto: Pistä levy \n"
+"\"%s\"\n"
+"asemaan \"%s\" ja paina Enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Tiedostoa %s ei voi lukea"
@@ -1675,35 +1637,35 @@ msgstr "IPC-putken luominen aliprosessiin ei onnistunut"
msgid "Connection closed prematurely"
msgstr "Yhteys katkesi ennenaikaisesti"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Oletusasetus ei kelpaa!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Jatka painamalla Enter."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Haluatko poistaa aiemmin noudettuja .deb-tiedostoja?"
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Tapahtui virheitä purettaessa. Tehdään asennettujen"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "pakettien asetukset. Samat virheet voivat tulla toiseen kertaan"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"tai tyydyttämättömät riippuvuudet aiheuttavat virheitä. Tämä ei haittaa"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1957,36 +1919,36 @@ msgstr "readlink %s ei onnistunut"
msgid "Failed to unlink %s"
msgstr "unlink %s ei onnistunut"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Linkin %s -> %s luonti ei onnistunut"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " DeLinkin yläraja %st saavutettu.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Arkistossa ei ollut pakettikenttää"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s:llä ei ole poikkeustietuetta\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s ylläpitäjä on %s eikä %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s:llä ei ole poikkeustietuetta\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s:llä ei ole binääristäkään poikkeustietuetta\n"
@@ -2065,7 +2027,7 @@ msgstr "Ilmeni pulmia poistettaessa tiedosto %s"
msgid "Failed to rename %s to %s"
msgstr "Nimen muuttaminen %s -> %s ei onnistunut"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2134,7 +2096,7 @@ msgstr "Arkisto on turmeltunut"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar-ohjelman laskema tarkistussumma ei täsmää, arkisto on turmeltunut"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Tuntematon TAR-otsikon tyyppi %u, tiedosto %s"
@@ -2258,24 +2220,17 @@ msgid "Unable to stat %s"
msgstr "Tiedostolle %s ei toimi stat"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Tämä ei ole kelvollinen DEB-arkisto, puuttuu tiedosto \"%s\""
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Tämä ei ole kelvollinen DEB-arkisto, jokin osista \"%s\", \"%s\" tai \"%s\" "
-"puuttuu."
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Tapahtui sisäinen virhe, tiedostoa %s ei löydy"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Ohjaustiedosto ei jäsenny"
@@ -2332,85 +2287,85 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Valintaa %s ei löydy"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Tuntematon tyypin lyhenne: \"%c\""
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Avataan asetustiedosto %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Syntaksivirhe %s: %u: väärän muotoinen nimikenttä"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Syntaksivirhe %s: %u: Sisällytetty tästä"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, 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:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "Syntaksivirhe %s: %u: Direktiivejä voi olla vain ylimmällä tasolla"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Syntaksivirhe %s: %u: Ylimääräistä roskaa tiedoston lopussa"
@@ -2435,48 +2390,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Valmis"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Komentorivin valitsin \"%c\" [%s] on tuntematon."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Komentorivin valitsin %s on tuntematon"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Komentorivin valitsin %s ei ole totuusarvoinen"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Valitsin %s tarvitsee parametrin"
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Valitsin %s: Asetusarvon määrityksessä on oltava =<arvo>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Valitsin %s tarvitsee kokonaislukuparametrin, ei \"%s\""
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Valitsin \"%s\" on liian pitkä"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Arvo %s on tuntematon, yritä tosi tai epätosi."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Virheellinen toiminto %s"
@@ -2490,116 +2445,116 @@ msgstr "Komento stat ei toiminut liitoskohdalle %s"
msgid "Failed to stat the cdrom"
msgstr "Komento stat ei toiminut rompulle"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "Pulmia tiedoston sulkemisessa"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Lukkoa ei käytetä kirjoitussuojatulle tiedostolle %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Lukkotiedostoa %s ei voitu avata"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Lukitusta ei käytetä NFS-liitetylle tiedostolle %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Lukkoa %s ei saada"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Aliprosessi %s aiheutti suojausvirheen."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "Aliprosessi %s aiheutti suojausvirheen."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "Aliprosessi %s palautti virhekoodin (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Aliprosessi %s lopetti odottamatta"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Tiedostoa %s ei voitu avata"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "Putkea %s ei voitu avata"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Prosessien välistä kommunikaatiota aliprosessiin ei saatu luotua"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Pakkaajan käynnistäminen ei onnistunut"
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "read, vielä %lu lukematta mutta tiedosto loppui"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "write, vielä %lu kirjoittamatta mutta epäonnistui"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "Pulmia tiedoston sulkemisessa"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Pulmia tehtäessä tiedostolle sync"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "Pulmia tehtäessä tiedostolle unlink"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Pulmia tehtäessä tiedostolle sync"
@@ -2717,12 +2672,12 @@ msgstr "Tilatiedoston %s avaaminen ei onnistunut"
msgid "Failed to write temporary StateFile %s"
msgstr "Tilapäisen tilatiedoston %s kirjoittaminen ei onnistunut"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Pakettitiedostoa %s (1) ei voi jäsentää"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Pakettitiedostoa %s (2) ei voi jäsentää"
@@ -2797,19 +2752,19 @@ msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Tiedostoa %s ei voitu avata"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2831,7 +2786,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:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2839,19 +2794,10 @@ msgstr ""
"Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt "
"paketit."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Joidenkin hakemistotiedostojen nouto ei onnistunut, ne on ohitettu tai "
-"käytetty vanhoja. "
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2894,12 +2840,12 @@ msgstr "Menetelmä %s ei käynnistynyt oikein"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Pistä levy nimeltään: \"%s\" asemaan \"%s\" ja paina Enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Paketointijärjestelmä \"%s\" ei ole tuettu"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Sopivaa paketointijärjestelmän tyyppiä ei saa selvitettyä"
@@ -2932,17 +2878,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Asetustiedostossa on virheellinen tietue, Package-otsikko puuttuu"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Tunnistetyyppi %s on tuntematon"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Tärkeysjärjestystä ei määritetty tunnisteelle (tai se on nolla)"
@@ -3010,44 +2956,48 @@ msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa"
msgid "rename failed, %s (%s -> %s)."
msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum ei täsmää"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Tarkistussumma ei täsmää"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Koko ei täsmää"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Virheellinen toiminto %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Pakettitiedostoa %s (1) ei voi jäsentää"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3055,12 +3005,12 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3069,16 +3019,12 @@ msgstr ""
"En löytänyt pakettia %s vastaavaa tiedostoa. Voit ehkä joutua korjaamaan "
"tämän paketin itse (puuttuvan arkkitehtuurin vuoksi)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"Pakettia %s vastaavaa tiedostoa ei löytynyt. Voit ehkä joutua korjaamaan "
-"tämän paketin itse."
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3086,16 +3032,12 @@ msgstr ""
"Pakettihakemistotiedostot ovat turmeltuneet. Paketille %s ei ole Filename-"
"kenttää."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Koko ei täsmää"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "Pakettitiedostoa %s (1) ei voi jäsentää"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "Huomautus, valitaan %s eikä %s\n"
@@ -3240,49 +3182,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "Kohteen %s tarkistussumma ei täsmää"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Julkaisua \"%s\" paketille \"%s\" ei löytynyt"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Versiota \"%s\" paketille \"%s\" ei löytynyt"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "Tehtävää %s ei löytynyt"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Pakettia %s ei löytynyt"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3307,129 +3249,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Joidenkin hakemistotiedostojen nouto ei onnistunut, ne on ohitettu tai "
+"käytetty vanhoja. "
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Asennetaan %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Tehdään asetukset: %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Poistetaan %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "%s poistettiin kokonaan"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Suoritetaan jälkiasennusliipaisin %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Kansio \"%s\" puuttuu."
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "Tiedostoa %s ei voitu avata"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Valmistellaan %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Puretaan %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Valmistaudutaan tekemään asetukset: %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s asennettu"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Valmistaudutaan poistamaan %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s poistettu"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Valmistaudutaan poistamaan %s kokonaan"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s poistettiin kokonaan"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Tiedostoon %s kirjoittaminen ei onnistu"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Lokiin ei voi kirjoittaa, openpty() epäonnistui (onko /dev/pts "
-"liittämättä?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3459,6 +3428,94 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Huomautus, valitaan %s lausekkeella \"%s\"\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Huomautus, valitaan %s lausekkeella \"%s\"\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Paketti %s on näennäispaketti, jonka kattaa:\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "Mahdolliset versiot"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Yksi pitää valita asennettavaksi."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Pakettia %s ei ole saatavilla, mutta toinen paketti viittaa siihen.\n"
+#~ "Tämä voi tarkoittaa paketin puuttuvan, olevan vanhentunut tai\n"
+#~ "saatavilla vain jostain muusta lähteestä\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Seuraavat paketit kuitenkin korvaavat sen:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Paketilla %s ei ole asennettavaa valintaa"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Huomautus, valitaan %s eikä %s\n"
+
+#~ 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"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr ""
+#~ "Paketin %s uudelleenasennus ei ole mahdollista, sitä ei voi noutaa.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s on jo uusin versio.\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Valittiin versio %s (%s) paketille %s\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Valittiin versio %s (%s) paketille %s\n"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Tämä ei ole kelvollinen DEB-arkisto, jokin osista \"%s\", \"%s\" tai \"%s"
+#~ "\" puuttuu."
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum ei täsmää"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Pakettia %s vastaavaa tiedostoa ei löytynyt. Voit ehkä joutua korjaamaan "
+#~ "tämän paketin itse."
+
+#~ 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"
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Avataan asetustiedosto %s"
diff --git a/po/fr.po b/po/fr.po
index fc6dc4300..2f02646c5 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: fr\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2013-08-17 07:57+0200\n"
"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -19,150 +19,152 @@ msgstr ""
"X-Generator: Lokalize 1.5\n"
"Plural-Forms: Plural-Forms: nplurals=2; plural=n > 1;\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Le paquet %s de version %s contient une dépendance absente :\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Nombre total de paquets : "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Nombre total de structures de paquets : "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Paquets ordinaires : "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Paquets entièrement virtuels : "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Paquets virtuels simples : "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Paquets virtuels mixtes : "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Manquants : "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Nombre de versions distinctes : "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Nombre de descriptions distinctes : "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Nombre de dépendances : "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Nombre de relations version/fichier : "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Nombre de relations description/fichier : "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Nombre de relations « Provides » : "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Nombre de motifs rationnels : "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Espace occupé par les versions des dépendances : "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Espace disque gaspillé : "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Total de l'espace attribué : "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Fichier %s désynchronisé."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Aucun paquet n'a été trouvé"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Vous devez fournir au moins un motif de recherche"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr "Cette commande est obsolète. Veuillez utiliser « apt-mark showauto »."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Impossible de trouver le paquet %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Fichiers du paquet :"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Le cache est désynchronisé, impossible de référencer un fichier"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Paquets épinglés :"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(non trouvé)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Installé : "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Candidat : "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(aucun)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Épinglage de paquet : "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Table de version :"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s pour %s compilé sur %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -237,7 +239,7 @@ msgstr ""
"d'informations.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
@@ -248,32 +250,32 @@ msgstr ""
"CD-ROM. Voir la page de manuel d'apt-cdrom pour plus d'informations sur "
"l'auto-détection des CD et le point de montage."
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
"Veuillez indiquer le nom de ce disque, par exemple « Debian 5.0.3 Disk 1 »"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Impossible de monter « %s » sur « %s »"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr ""
"Veuillez répéter cette opération pour tous les disques de votre jeu de "
"cédéroms."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Les paramètres ne sont pas appariés"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -301,575 +303,32 @@ msgstr ""
" -c=? Lit ce fichier de configuration\n"
" -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[O/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[o/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "O"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Erreur de compilation de l'expression rationnelle - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Les paquets suivants contiennent des dépendances non satisfaites :"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "mais %s est installé"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "mais %s devra être installé"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "mais il n'est pas installable"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "mais c'est un paquet virtuel"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "mais il n'est pas installé"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "mais ne sera pas installé"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " ou"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Les NOUVEAUX paquets suivants seront installés :"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Les paquets suivants seront ENLEVÉS :"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Les paquets suivants ont été conservés :"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Les paquets suivants seront mis à jour :"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Les paquets suivants seront mis à une VERSION INFÉRIEURE :"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Les paquets retenus suivants seront changés :"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (en raison de %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"ATTENTION : Les paquets essentiels suivants vont être enlevés.\n"
-"Vous NE devez PAS faire ceci, à moins de savoir exactement ce\n"
-"que vous êtes en train de faire."
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu mis à jour, %lu nouvellement installés, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu réinstallés, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu remis à une version inférieure, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu à enlever et %lu non mis à jour.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu partiellement installés ou enlevés.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Note : sélection de %s pour la tâche « %s »\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Note : sélection de %s pour l'expression rationnelle « %s »\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Installé]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Pas de version candidate]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Vous devez explicitement sélectionner un paquet à installer."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Aucune version du paquet %s n'est disponible, mais il existe dans la base\n"
-"de données. Cela signifie en général que le paquet est manquant, qu'il est "
-"devenu obsolète\n"
-"ou qu'il n'est disponible que sur une autre source\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Cependant les paquets suivants le remplacent :"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Le paquet « %s » n'a pas de version susceptible d'être installée"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Les paquets virtuels comme « %s » ne peuvent pas être supprimés\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"Le paquet « %s » n'est pas installé, et ne peut donc être supprimé. Peut-"
-"être vouliez-vous écrire « %s » ?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, 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:817
-#, 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:847
-#, 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:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"%s ignoré : il n'est pas installé et seules des mises à jour ont été "
-"demandées.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, 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:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s passé en « installé manuellement ».\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Version choisie « %s » (%s) pour « %s »\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Version choisie « %s » (%s) pour « %s » à cause de « %s »\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Correction des dépendances..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " a échoué."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Impossible de corriger les dépendances"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Impossible de minimiser le nombre des paquets mis à jour"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Fait"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dépendances manquantes. Essayez d'utiliser l'option -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ATTENTION : les paquets suivants n'ont pas été authentifiés."
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Avertissement d'authentification ignoré.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Faut-il installer ces paquets sans vérification ?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Certains paquets n'ont pas pu être authentifiés"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Erreur interne, « InstallPackages » appelé avec des paquets cassés."
-
-#: cmdline/apt-get.cc:1169
-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:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Erreur interne. Le tri a été interrompu."
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Étrangement, les tailles ne correspondent pas. Veuillez le signaler par "
-"courriel à apt@packages.debian.org."
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Il est nécessaire de prendre %so/%so dans les archives.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Il est nécessaire de prendre %so dans les archives.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, 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"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Impossible de déterminer l'espace disponible sur %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Pas assez d'espace disponible sur %s"
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"L'option --trivial-only a été indiquée mais il ne s'agit pas d'une opération "
-"triviale."
-
-# The space before the exclamation mark must not be a non-breaking space; this
-# sentence is supposed to be typed by a user who cannot see the difference.
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Oui, faites ce que je vous dis !"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Vous êtes sur le point de faire quelque chose de potentiellement dangereux\n"
-"Pour continuer, tapez la phrase « %s »\n"
-" ?]"
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Annulation."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Souhaitez-vous continuer ?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Impossible de récupérer %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Certains fichiers n'ont pu être téléchargés."
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-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:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Impossible de récupérer quelques archives, peut-être devrez-vous lancer apt-"
-"get update ou essayer avec --fix-missing ?"
-
-#: cmdline/apt-get.cc:1414
-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:1419
-msgid "Unable to correct missing packages."
-msgstr "Impossible de corriger le fait que les paquets manquent."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Annulation de l'installation."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Le paquet suivant a disparu du système car tous ses fichiers\n"
-"ont été remplacés par d'autres paquets :"
-msgstr[1] ""
-"Les paquets suivants ont disparu du système car tous leurs fichiers\n"
-"ont été remplacés par d'autres paquets :"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-"Note : cette opération volontaire (effectuée par dpkg) est automatique."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-"La distribution cible « %s » indisponible pour le paquet « %s » est ignorée"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Choix de « %s » comme paquet source à la place de « %s »\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "La version « %s » indisponible du paquet « %s » est ignorée"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "La commande de mise à jour ne prend pas de paramètre"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-"Aucune suppression n'est censée se produire : impossible de lancer "
-"« Autoremover »"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Il semble que l'outil de suppression automatique (« Autoremover ») ait\n"
-"supprimé quelque chose, ce qui est inattendu. Veuillez envoyer un\n"
-"rapport de bogue pour le paquet « apt »."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-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:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr ""
-"Erreur interne, l'outil de suppression automatique a cassé quelque chose."
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Le paquet suivant a été installé automatiquement et n'est plus nécessaire :"
-msgstr[1] ""
-"Les paquets suivants ont été installés automatiquement et ne sont plus "
-"nécessaires :"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"%lu paquet a été installé automatiquement et n'est plus nécessaire.\n"
-msgstr[1] ""
-"%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Veuillez utiliser « apt-get autoremove » pour le supprimer."
-msgstr[1] "Veuillez utiliser « apt-get autoremove » pour les supprimer."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Erreur interne, AllUpgrade a cassé le boulot !"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n"
-"(ou indiquez une solution)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Certains paquets ne peuvent être installés. Ceci peut signifier\n"
-"que vous avez demandé l'impossible, ou bien, si vous utilisez\n"
-"la distribution unstable, que certains paquets n'ont pas encore\n"
-"été créés ou ne sont pas sortis d'Incoming."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Paquets défectueux"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Les paquets supplémentaires suivants seront installés : "
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Paquets suggérés :"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Paquets recommandés :"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Impossible de trouver le paquet %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s passé en « installé manuellement ».\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s passé en « installé automatiquement ».\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -877,50 +336,26 @@ msgstr ""
"Cette commande est obsolète. Veuillez utiliser « apt-mark auto » et « apt-"
"mark manual »."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Calcul de la mise à jour... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Échec"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Fait"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
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:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Impossible de verrouiller le répertoire de téléchargement"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-"Impossible de trouver une source de téléchargement de la version « %s » de "
-"« %s »"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "Téléchargement de %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, 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:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -930,7 +365,7 @@ msgstr ""
"suivi de versions « %s » à l'adresse :\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -942,70 +377,80 @@ msgstr ""
"pour récupérer les dernières mises à jour (éventuellement non encore "
"publiées) du paquet.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, 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:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Impossible de déterminer l'espace disponible sur %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Pas assez d'espace disponible sur %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Nécessité de prendre %so/%so dans les sources.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, 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:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Récupération des sources %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Échec lors de la récupération de quelques archives."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+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:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "La commande de décompactage « %s » a échoué.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "La commande de construction « %s » a échoué.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Échec du processus fils"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -1015,17 +460,17 @@ msgstr ""
"consulter la section à propos de APT::Architectures dans la page de manuel "
"apt.conf(5)."
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s n'a pas de dépendance de construction.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1034,7 +479,7 @@ msgstr ""
"La dépendance %s vis-à-vis de %s ne peut être satisfaite car %s n'est pas "
"autorisé avec les paquets « %s »."
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1043,14 +488,14 @@ msgstr ""
"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s ne "
"peut être trouvé"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1059,7 +504,7 @@ msgstr ""
"La dépendance %s vis-à-vis de %s ne peut être satisfaite car aucune version "
"disponible du paquet %s ne peut satisfaire les prérequis de version."
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1068,31 +513,31 @@ msgstr ""
"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s "
"n'a pas de version disponible."
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr ""
"Les dépendances de compilation pour %s ne peuvent pas être satisfaites."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Impossible d'activer les dépendances de construction"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Journal des modifications pour %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Modules reconnus :"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1182,106 +627,55 @@ msgstr ""
"apt.conf(5) pour plus d'informations et d'options.\n"
" Cet APT a les « Super Cow Powers »\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"NOTE: Ceci n'est qu'une simulation !\n"
-" apt-get a besoin des privilèges du superutilisateur\n"
-" pour pouvoir vraiment fonctionner.\n"
-" Veuillez aussi noter que le verrouillage est désactivé,\n"
-" et la situation n'est donc pas forcément représentative\n"
-" de la réalité !"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Atteint "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Réception de : "
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%so réceptionnés en %s (%so/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [En cours]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Changement de support : veuillez insérer le disque\n"
-"« %s »\n"
-"dans le lecteur « %s » et appuyez sur la touche Entrée\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s ne peut pas être marqué car il n'est pas installé.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s était déjà marqué comme installé manuellement.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s était déjà marqué comme installé automatiquement.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s était déjà marqué comme figé (« hold »).\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s était déjà marqué comme non figé.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "A attendu %s mais il n'était pas présent"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s passé en figé (« hold »).\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "Annulation de l'état figé pour %s.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
"Échec de l'exécution de dpkg. Possédez-vous les privilèges du "
"superutilisateur ?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1325,6 +719,23 @@ msgstr ""
"Veuillez consulter les pages de manuel apt-mark(8) et apt.conf(5)\n"
"pour plus d'informations."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1425,8 +836,8 @@ msgstr "Dépassement du délai de connexion"
msgid "Server closed the connection"
msgstr "Le serveur a fermé la connexion"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Erreur de lecture"
@@ -1439,8 +850,8 @@ msgid "Protocol corruption"
msgstr "Corruption du protocole"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Erreur d'écriture"
@@ -1453,6 +864,10 @@ 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:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Échec"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Impossible de se connecter au port en mode passif."
@@ -1495,7 +910,7 @@ msgstr "Délai de connexion au port de données dépassé"
msgid "Unable to accept connection"
msgstr "Impossible d'accepter une connexion"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problème de hachage du fichier"
@@ -1633,81 +1048,620 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Les fichiers vides ne peuvent être des archives valables"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Erreur d'écriture sur le fichier"
+
+#: methods/http.cc:533
+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:535
+msgid "Error reading from server"
+msgstr "Erreur de lecture du serveur"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Erreur d'écriture sur un fichier"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Sélection défaillante"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Délai de connexion dépassé"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Erreur d'écriture du fichier de sortie"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Attente des fichiers d'en-tête"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Mauvaise ligne d'en-tête"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
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:606
+#: methods/server.cc:176
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:621
+#: methods/server.cc:199
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:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Ce serveur http possède un support des limites non-valide"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Format de date inconnu"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Sélection défaillante"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Mauvais en-tête de donnée"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Délai de connexion dépassé"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Échec de la connexion"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Erreur d'écriture du fichier de sortie"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Erreur interne"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Erreur d'écriture sur un fichier"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Erreur d'écriture sur le fichier"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Erreur interne, « InstallPackages » appelé avec des paquets cassés."
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Erreur de lecture depuis le serveur distant et clôture de la connexion"
+#: apt-private/private-install.cc:102
+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."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Erreur de lecture du serveur"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Erreur interne. Le tri a été interrompu."
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Mauvais en-tête de donnée"
+#: apt-private/private-install.cc:159
+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."
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Échec de la connexion"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Il est nécessaire de prendre %so/%so dans les archives.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Erreur interne"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Il est nécessaire de prendre %so dans les archives.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, 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"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Après cette opération, %so d'espace disque seront libérés.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Pas assez d'espace disponible sur %s"
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Il y a des problèmes et -y a été employé sans --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"L'option --trivial-only a été indiquée mais il ne s'agit pas d'une opération "
+"triviale."
+
+# The space before the exclamation mark must not be a non-breaking space; this
+# sentence is supposed to be typed by a user who cannot see the difference.
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Oui, faites ce que je vous dis !"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Vous êtes sur le point de faire quelque chose de potentiellement dangereux\n"
+"Pour continuer, tapez la phrase « %s »\n"
+" ?]"
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Annulation."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Souhaitez-vous continuer ?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Certains fichiers n'ont pu être téléchargés."
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Impossible de récupérer quelques archives, peut-être devrez-vous lancer apt-"
+"get update ou essayer avec --fix-missing ?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr ""
+"l'option --fix-missing et l'échange de support ne sont pas encore reconnus."
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Impossible de corriger le fait que les paquets manquent."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Annulation de l'installation."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Le paquet suivant a disparu du système car tous ses fichiers\n"
+"ont été remplacés par d'autres paquets :"
+msgstr[1] ""
+"Les paquets suivants ont disparu du système car tous leurs fichiers\n"
+"ont été remplacés par d'autres paquets :"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+"Note : cette opération volontaire (effectuée par dpkg) est automatique."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+"Aucune suppression n'est censée se produire : impossible de lancer "
+"« Autoremover »"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Il semble que l'outil de suppression automatique (« Autoremover ») ait\n"
+"supprimé quelque chose, ce qui est inattendu. Veuillez envoyer un\n"
+"rapport de bogue pour le paquet « apt »."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "L'information suivante devrait vous aider à résoudre la situation : "
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr ""
+"Erreur interne, l'outil de suppression automatique a cassé quelque chose."
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Le paquet suivant a été installé automatiquement et n'est plus nécessaire :"
+msgstr[1] ""
+"Les paquets suivants ont été installés automatiquement et ne sont plus "
+"nécessaires :"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"%lu paquet a été installé automatiquement et n'est plus nécessaire.\n"
+msgstr[1] ""
+"%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Veuillez utiliser « apt-get autoremove » pour le supprimer."
+msgstr[1] "Veuillez utiliser « apt-get autoremove » pour les supprimer."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+"Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes :"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n"
+"(ou indiquez une solution)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Certains paquets ne peuvent être installés. Ceci peut signifier\n"
+"que vous avez demandé l'impossible, ou bien, si vous utilisez\n"
+"la distribution unstable, que certains paquets n'ont pas encore\n"
+"été créés ou ne sont pas sortis d'Incoming."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Paquets défectueux"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Les paquets supplémentaires suivants seront installés : "
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Paquets suggérés :"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Paquets recommandés :"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ATTENTION : les paquets suivants n'ont pas été authentifiés."
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Avertissement d'authentification ignoré.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Certains paquets n'ont pas pu être authentifiés"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Faut-il installer ces paquets sans vérification ?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Impossible de récupérer %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Installé]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Installé]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Installé]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Les paquets suivants contiennent des dépendances non satisfaites :"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "mais %s est installé"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "mais %s devra être installé"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "mais il n'est pas installable"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "mais c'est un paquet virtuel"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "mais il n'est pas installé"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "mais ne sera pas installé"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " ou"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Les NOUVEAUX paquets suivants seront installés :"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Les paquets suivants seront ENLEVÉS :"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Les paquets suivants ont été conservés :"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Les paquets suivants seront mis à jour :"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Les paquets suivants seront mis à une VERSION INFÉRIEURE :"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Les paquets retenus suivants seront changés :"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (en raison de %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ATTENTION : Les paquets essentiels suivants vont être enlevés.\n"
+"Vous NE devez PAS faire ceci, à moins de savoir exactement ce\n"
+"que vous êtes en train de faire."
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu mis à jour, %lu nouvellement installés, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu réinstallés, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu remis à une version inférieure, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu à enlever et %lu non mis à jour.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu partiellement installés ou enlevés.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[O/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[o/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "O"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Erreur de compilation de l'expression rationnelle - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Correction des dépendances..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " a échoué."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Impossible de corriger les dépendances"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Impossible de minimiser le nombre des paquets mis à jour"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Fait"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dépendances manquantes. Essayez d'utiliser l'option -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "La commande de mise à jour ne prend pas de paramètre"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Calcul de la mise à jour... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Erreur interne, AllUpgrade a cassé le boulot !"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Fait"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"NOTE: Ceci n'est qu'une simulation !\n"
+" apt-get a besoin des privilèges du superutilisateur\n"
+" pour pouvoir vraiment fonctionner.\n"
+" Veuillez aussi noter que le verrouillage est désactivé,\n"
+" et la situation n'est donc pas forcément représentative\n"
+" de la réalité !"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Impossible de changer le nom %s en %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Atteint "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Réception de : "
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%so réceptionnés en %s (%so/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [En cours]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Changement de support : veuillez insérer le disque\n"
+"« %s »\n"
+"dans le lecteur « %s » et appuyez sur la touche Entrée\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Impossible de lire %s"
@@ -1770,35 +1724,35 @@ msgstr "Impossible de créer le tube IPC sur le sous-processus"
msgid "Connection closed prematurely"
msgstr "Connexion fermée prématurément"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Mauvais paramètre par défaut !"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Veuillez appuyer sur Entrée pour continuer."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Voulez-vous effacer les fichiers .deb précédemment téléchargés ?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Quelques erreurs sont apparues lors du décompactage. Les paquets qui"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr ""
"ont été installés vont être configurés . Il peut en résulter d'autres erreurs"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"ou des erreurs provoquées par les dépendances manquantes. C'est bénin, "
"seules les erreurs."
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -2053,36 +2007,36 @@ msgstr "Impossible de lire le lien %s"
msgid "Failed to unlink %s"
msgstr "Impossible de délier %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Impossible de lier %s à %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Seuil de delink de %so atteint.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "L'archive ne possède pas de champ de paquet"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr "%s ne possède pas d'entrée « override »\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " le responsable de %s est %s et non %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s ne possède pas d'entrée « source override »\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s ne possède pas également pas d'entrée « binary override »\n"
@@ -2161,7 +2115,7 @@ msgstr "Problème en déliant %s"
msgid "Failed to rename %s to %s"
msgstr "Impossible de changer le nom %s en %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2233,7 +2187,7 @@ msgstr "Archive corrompue"
msgid "Tar checksum failed, archive corrupted"
msgstr "Échec dans la somme de contrôle de tar, l'archive est corrompue"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Type d'en-tête %u inconnu pour TAR, partie %s"
@@ -2357,24 +2311,17 @@ msgid "Unable to stat %s"
msgstr "Impossible de statuer pour %s."
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Ce n'est pas une archive DEB valide, partie « %s » manquante"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Ce n'est pas une archive DEB valide, elle n'a pas de membre « %s », « %s » "
-"ou « %s »"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Erreur interne, ne peut localiser la partie %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Fichier de contrôle non traitable"
@@ -2436,89 +2383,89 @@ msgstr ""
"automatique a été désactivée par une option utilisateur."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lih %limin %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "La sélection %s n'a pu être trouvée"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Type d'abréviation non reconnue : « %c »"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Ouverture du fichier de configuration %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Erreur syntaxique %s:%u : balise mal formée"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Erreur syntaxique %s:%u : inclus à partir d'ici"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, 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:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Erreur de syntaxe %s:%u : la directive « clear » a besoin d'un arbre "
"d'options comme paramètre"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Erreur syntaxique %s:%u : valeur aberrante à la fin du fichier"
@@ -2543,48 +2490,48 @@ msgstr "…"
msgid "%c%s... %u%%"
msgstr "%c%s… %u%%"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "L'option « %c » de la ligne de commande [d'origine %s] est inconnue."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "L'option %s de la ligne de commande n'est pas reconnue"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "L'option %s de la ligne de commande n'est pas une valeur booléenne"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "L'option %s nécessite un paramètre."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Option %s : l'item configuration doit être spécifiée avec un =<val>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "L'option %s prend un nombre entier en paramètre, et non « %s »"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "L'option « %s » est trop longue"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "La signification %s n'est pas comprise, veuillez essayer vrai ou faux."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "L'opération %s n'est pas valable"
@@ -2598,53 +2545,53 @@ msgstr "Impossible de localiser le point de montage %s"
msgid "Failed to stat the cdrom"
msgstr "Impossible d'accéder au cédérom."
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problème de fermeture du fichier gzip %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Verrou non utilisé pour le fichier %s en lecture seule"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Impossible d'ouvrir le fichier verrou %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Verrou non utilisé pour le fichier %s se situant sur une partition nfs"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Impossible d'obtenir le verrou %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
"La liste des fichiers ne peut pas être créée car « %s » n'est pas un "
"répertoire"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
"« %s » dans le répertoire « %s » a été ignoré car ce n'est pas un fichier "
"ordinaire"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
"« %s » dans le répertoire « %s » a été ignoré car il n'utilise pas "
"d'extension"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
@@ -2652,70 +2599,70 @@ msgstr ""
"« %s » dans le répertoire « %s » a été ignoré car il utilise une extension "
"non valable"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, 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:846
+#: apt-pkg/contrib/fileutl.cc:864
#, 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:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, 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:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Impossible d'ouvrir le fichier %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Impossible d'ouvrir le descripteur de fichier %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Impossible de créer un sous-processus IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Impossible d'exécuter la compression "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "lu(s), %llu restant à lire, mais rien n'est disponible"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "écrit(s), %llu restant à écrire, mais l'écriture est impossible"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Problème de fermeture du fichier %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problème de renommage du fichier %s en %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Problème de suppression du lien %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problème de synchronisation du fichier"
@@ -2832,12 +2779,12 @@ msgstr "Impossible d'ouvrir le fichier d'état %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Erreur d'écriture du fichier d'état temporaire %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Impossible de traiter le fichier %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Impossible de traiter le fichier %s (2)"
@@ -2923,7 +2870,7 @@ 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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2933,12 +2880,12 @@ msgstr ""
"consulter la page de manuel apt.conf(5) et notamment la section à propos de "
"APT::Immediate-Configure, pour plus d'informations. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "Impossible de configurer « %s »."
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2963,7 +2910,7 @@ msgstr ""
"Le paquet %s doit être réinstallé, mais il est impossible de trouver son "
"archive."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2971,20 +2918,12 @@ msgstr ""
"Erreur, pkgProblem::Resolve a généré des ruptures, ce qui a pu être causé "
"par les paquets devant être gardés en l'état."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
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:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Le téléchargement de quelques fichiers d'index a échoué, ils ont été "
-"ignorés, ou les anciens ont été utilisés à la place."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -3029,12 +2968,12 @@ msgstr ""
"Veuillez insérer le disque « %s » dans le lecteur « %s » et appuyez sur la "
"touche Entrée."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Le système de paquet « %s » n'est pas supporté"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Impossible de déterminer un type du système de paquets adéquat"
@@ -3071,19 +3010,19 @@ msgstr ""
"La valeur « %s » n'est pas valable pour APT::Default-Release car cette "
"version ne fait pas partie des sources disponibles."
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, 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:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Type d'épinglage %s inconnu"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Aucune priorité (ou zéro) n'a été spécifiée pour l'épinglage"
@@ -3161,16 +3100,20 @@ msgstr ""
msgid "rename failed, %s (%s -> %s)."
msgstr "impossible de changer le nom, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Somme de contrôle MD5 incohérente"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Somme de contrôle de hachage incohérente"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Taille incohérente"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "L'opération %s n'est pas valable"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3179,18 +3122,18 @@ msgstr ""
"Impossible de trouver l'entrée « %s » attendue dans le fichier « Release » : "
" ligne non valable dans sources.list ou fichier corrompu"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr ""
"Impossible de trouver la comme de contrôle de « %s » dans le fichier Release"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
"Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3199,12 +3142,12 @@ msgstr ""
"Le fichier « Release » pour %s a expiré (plus valable depuis %s). Les mises "
"à jour depuis ce dépôt ne s'effectueront pas."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Distribution en conflit : %s (%s attendu, mais %s obtenu)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3215,12 +3158,12 @@ msgstr ""
"GPG : %s : %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Erreur de GPG : %s : %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3229,16 +3172,14 @@ msgstr ""
"Impossible de localiser un fichier du paquet %s. Cela signifie que vous "
"devrez corriger ce paquet vous-même (absence d'architecture)."
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"Impossible de localiser un fichier du paquet %s. Cela signifie que vous "
-"devrez corriger ce paquet vous-même."
+"Impossible de trouver une source de téléchargement de la version « %s » de "
+"« %s »"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3246,16 +3187,12 @@ msgstr ""
"Les fichiers d'index des paquets sont corrompus. Aucun champ « Filename: » "
"pour le paquet %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Taille incohérente"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Impossible d'analyser le fichier Release %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Pas de sections dans le fichier Release %s"
@@ -3402,36 +3339,36 @@ msgstr "Impossible de trouver l'enregistrement d'authentification pour %s"
msgid "Hash mismatch for: %s"
msgstr "Somme de contrôle de hachage incohérente pour %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "La version « %s » de « %s » est introuvable"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "La version « %s » de « %s » n'a pu être trouvée"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Impossible de trouver la tâche « %s »"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr ""
"Impossible de trouver de paquet correspondant à l'expression rationnelle "
"« %s »"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
"Impossible de choisir les versions du paquet « %s » qui n'est qu'un paquet "
"virtuel"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3440,20 +3377,20 @@ msgstr ""
"Impossible de choisir une version installée ou candidate du paquet « %s » "
"qui n'en n'a aucune"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Impossible de choisir une nouvelle version du paquet « %s » qui n'est qu'un "
"paquet virtuel"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Impossible de choisir une version candidate du paquet « %s » qui n'en n'a pas"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3480,111 +3417,131 @@ msgstr "Échec du solveur externe sans message d'erreur adapté"
msgid "Execute external solver"
msgstr "Exécu tion du solveur externe"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Exécution de dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Le téléchargement de quelques fichiers d'index a échoué, ils ont été "
+"ignorés, ou les anciens ont été utilisés à la place."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Installation de %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Configuration de %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Suppression de %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "Suppression complète de %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Disparition de %s constatée"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Exécution des actions différées (« trigger ») de %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Répertoire %s inexistant"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Impossible d'ouvrir le fichier « %s »"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Préparation de %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Décompression de %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Préparation de la configuration de %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s installé"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Préparation de la suppression de %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s supprimé"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Préparation de la suppression complète de %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s complètement supprimé"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Impossible d'écrire sur %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Impossible d'écrire le journal, échec d'openpty()\n"
-"(/dev/pts est-il monté ?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Exécution de dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "L'opération a été interrompue avant de se terminer"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "Aucun rapport « apport » écrit car MaxReports a déjà été atteint"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "problème de dépendances : laissé non configuré"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3592,14 +3549,14 @@ msgstr ""
"Aucun rapport « apport » n'a été créé car le message d'erreur indique une "
"erreur consécutive à un échec précédent."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
"Aucun rapport « apport » n'a été créé car un disque plein a été signalé"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3607,7 +3564,15 @@ msgstr ""
"Aucun « apport » n'a été créé car une erreur de dépassement de capacité "
"mémoire a été signalée"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Aucun rapport « apport » n'a été créé car un disque plein a été signalé"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3644,6 +3609,103 @@ msgstr ""
msgid "Not locked"
msgstr "Non verrouillé"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Note : sélection de %s pour la tâche « %s »\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Note : sélection de %s pour l'expression rationnelle « %s »\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Le paquet %s est un paquet virtuel fourni par :\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Pas de version candidate]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Vous devez explicitement sélectionner un paquet à installer."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Aucune version du paquet %s n'est disponible, mais il existe dans la "
+#~ "base\n"
+#~ "de données. Cela signifie en général que le paquet est manquant, qu'il "
+#~ "est devenu obsolète\n"
+#~ "ou qu'il n'est disponible que sur une autre source\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Cependant les paquets suivants le remplacent :"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Le paquet « %s » n'a pas de version susceptible d'être installée"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Les paquets virtuels comme « %s » ne peuvent pas être supprimés\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Le paquet « %s » n'est pas installé, et ne peut donc être supprimé. Peut-"
+#~ "être vouliez-vous écrire « %s » ?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr ""
+#~ "Le paquet « %s » n'est pas installé, et ne peut donc être supprimé\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Note : sélection de « %s » au lieu de « %s »\n"
+
+#~ 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"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "%s ignoré : il n'est pas installé et seules des mises à jour ont été "
+#~ "demandées.\n"
+
+#~ 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"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s est déjà la plus récente version disponible.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Version choisie « %s » (%s) pour « %s »\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Version choisie « %s » (%s) pour « %s » à cause de « %s »\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr ""
+#~ "La distribution cible « %s » indisponible pour le paquet « %s » est "
+#~ "ignorée"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "Téléchargement de %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Ce n'est pas une archive DEB valide, elle n'a pas de membre « %s », "
+#~ "« %s » ou « %s »"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Somme de contrôle MD5 incohérente"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Impossible de localiser un fichier du paquet %s. Cela signifie que vous "
+#~ "devrez corriger ce paquet vous-même."
+
+#~ 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"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "Le fichier %s ne commence pas par un message signé en clair."
diff --git a/po/gl.po b/po/gl.po
index 4676d06fa..49e7452e2 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt_po_gl\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2011-05-12 15:28+0100\n"
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
"Language-Team: galician <proxecto@trasno.net>\n"
@@ -22,152 +22,154 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Poedit-Language: Galician\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "O paquete %s versión %s ten unha dependencia incumprida:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Número total de nomes de paquetes : "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Estruturas de paquetes totais: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Paquetes normais: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Paquetes virtuais puros: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Paquetes virtuais simples: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Paquetes virtuais mixtos: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Non atopados: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Número total de versións distintas: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Número total de descricións distintas: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Número total de dependencias: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Número total de relacións versión/ficheiro: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Número total de relacións descrición/ficheiro: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Número total de asignacións provistas: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Número total de cadeas: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Espazo total de versións de dependencias: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Espazo de reserva total: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Espazo total contabilizado: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "O ficheiro de paquete %s está sen sincronizar."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Non se atopou ningún paquete"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Debe fornecer cando menos un patrón de busca"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Non foi posíbel atopar o paquete %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Ficheiros de paquetes:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"A caché está sen sincronizar, non se pode facer referencia a un ficheiro de "
"paquetes"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Paquetes inmobilizados:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(non se atopou)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Instalado: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Candidato: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ningún)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Inmobilizado: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Táboa de versións:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s para %s compilado en %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -242,35 +244,35 @@ msgstr ""
"información.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Forneza un nome para este disco, como «Debian 5.0.3 Disco 1»"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Insira un disco na unidade e prema Intro"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Produciuse un fallo ao montar «%s» en «%s»"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Repita este proceso para o resto de CD do seu conxunto."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Os argumentos non van en parellas"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -299,605 +301,55 @@ msgstr ""
" -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/"
"tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[S/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[s/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "S"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Produciuse un erro na compilación da expresión regular - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Os seguintes paquetes teñen dependencias sen cumprir:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "mais %s está instalado"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "mais vaise instalar %s"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "mais non é instalábel"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "mais é un paquete virtual"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "mais non está instalado"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "mais non se vai a instalar"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " ou"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Os seguintes paquetes NOVOS hanse instalar:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Vanse RETIRAR os paquetes seguintes:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Consérvanse os seguintes paquetes:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Vanse anovar os paquetes seguintes:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Vanse REVERTER os seguintes paquetes :"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Vanse modificar os paquetes retidos seguintes:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (por mor de %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"AVISO: Retiraranse os seguintes paquetes esenciais.\n"
-"Isto NON se debe facer a menos que saiba exactamente o que está a facer!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu anovados, %lu instalados, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstalados, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu revertidos, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "Vanse retirar %lu e deixar %lu sen anovar.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu non instalados ou retirados de todo.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Nota, seleccione «%s» para a tarefa «%s»\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Nota, seleccione «%s» para a expresión regular «%s»\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Instalado]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Non hai unha versión candidata]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Debería escoller un para instalar."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"O paquete %s non está dispoñíbel, mais outro paquete fai referencia a el.\n"
-"Isto pode significar que falta o paquete, está obsoleto ou só está\n"
-"dispoñíbel noutra fonte.\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Porén, os seguintes paquetes substitúeno:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "O paquete «%s» non ten unha instalación candidata"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Non se poden retirar os paquetes virtuais como «%s»\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "O paquete %s non está instalado, así que non foi retirado\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "O paquete %s non está instalado, así que non foi retirado\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Nota, seleccione «%s» no canto de «%s»\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "Omítese %s, xa está instalado e non se especificou a anovación.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "Omitindo %s, non está instalado e só se solicitaron as anovacións.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "A reinstalación de %s non é posíbel, non se pode descargar.\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s xa é a versión máis recente.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s cambiado a instalado manualmente.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Versión seleccionada «%s» (%s) para «%s»\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Versión seleccionada «%s» (%s) para «%s» xa que «%s»\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Corrixindo as dependencias..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " fallou."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Non foi posíbel corrixir as dependencias."
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Non foi posíbel minimizar o conxunto de anovacións"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Feito"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dependencias incumpridas. Probe a empregar -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "AVISO: Non se poden autenticar os seguintes paquetes!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Ignórase o aviso de autenticación.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Instalar estes paquetes sen verificación?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Non foi posíbel autenticar algúns paquetes"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Xurdiron problemas e empregouse -y sen --force-yes"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-"Produciuse un erro interno, chamouse a InstallPackages con paquetes "
-"estragados."
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Hai que retirar paquetes mais o retirado está desactivado."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Produciuse un erro interno; non rematou a ordenación"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Que estraño... Os tamaños non coinciden; envíe un correo-e a apt@packages."
-"debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Ten que recibir %sB/%sB de arquivos.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Ten que recibir %sB de arquivos.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Despois desta operación ocuparanse %sB de disco adicionais.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "Despois desta operación liberaranse %sB de espazo de disco.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Non foi posíbel determinar o espazo libre en %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Non hai espazo libre abondo en %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Especificouse «Só triviais» mais esta non é unha operación trivial."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Si, fai o que digo!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Está a piques de facer algo perigoso.\n"
-"Para continuar escriba a frase «%s»\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Interromper."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Quere continuar?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Non foi posíbel obter %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Non foi posíbel descargar algúns ficheiros"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Completouse a descarga no modo de só descargas"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Non foi posíbel obter algúns arquivos; probe con apt-get update ou --fix-"
-"missing."
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr ""
-"O emprego conxunto de --fix-missing e intercambio de discos non está admitido"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Non é posíbel corrixir os paquetes non dispoñíbeis."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Interrompendo a instalación."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"O seguinte paquete desapareceu do seu sistema e todos os \n"
-"ficheiros serán sobrescritos por outros paquetes:"
-msgstr[1] ""
-"Os seguintes paquetes desapareceron do seu sistema e todos os \n"
-"ficheiros serán sobrescritos por outros paquetes:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Nota: Isto será feito automaticamente por dpkg."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Ignorase a versión de destino «%s» non dispoñíbel do paquete «%s»"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Tome «%s» como paquete fonte no canto de «%s»\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Ignorar a versión non dispoñíbel «%s» do paquete «%s»"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "A orde «update» non toma argumentos"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-"Non se agarda que eliminemos cousas, non se pode iniciar o Retirado "
-"automático"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Vaia, semella que o Retirado automático destruíu algo que realmente\n"
-"non debería ter feito. Informe deste erro de apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "A seguinte información pode axudar a solucionar a situación:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Produciuse un erro interno, o Retirado automático estragou cousas"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"O seguinte paquete foi instalado automaticamente e xa non é necesario:"
-msgstr[1] ""
-"Os seguintes paquetes foron instalados automaticamente e xa non son "
-"necesarios:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "%lu paquete foi instalado automaticamente e xa non é necesario.\n"
-msgstr[1] ""
-"%lu paquetes foron instalados automaticamente e xa non son necesarios.\n"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Empregue «apt-get autoremove» para eliminalos."
-msgstr[1] "Empregue «apt-get autoremove» para eliminalos."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Produciuse un erro interno, AllUpgrade estragou cousas"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "Pode querer executar «apt-get -f install» para corrixir isto:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Dependencias incumpridas. Probe «apt-get -f install» sen paquetes (ou "
-"especifique unha solución)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Non foi posíbel instalar algúns paquetes. Isto pode significar que "
-"solicitou\n"
-"unha situación imposíbel ou, se emprega a distribución inestábel, que\n"
-"algúns paquetes solicitados aínda non se creasen ou que se movesen da "
-"entrada."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Paquetes estragados"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Instalaranse os seguintes paquetes extra:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Paquetes suxeridos:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Paquetes recomendados:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Non foi posíbel atopar o paquete %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s cambiado a instalado manualmente.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s está estabelecido para a súa instalación automática.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Calculando a anovación... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Fallou"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Feito"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Produciuse un erro interno, o solucionador interno estragou cousas"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Non é posíbel bloquear o directorio de descargas"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "Descargando %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "Ten que especificar polo menos un paquete para obter o código fonte"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Non sé posíbel atopar un paquete fonte para %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -906,7 +358,7 @@ msgstr ""
"AVISO: o paquete «%s» mantense no sistema de control de versións «%s» en:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, fuzzy, c-format
msgid ""
"Please use:\n"
@@ -918,87 +370,97 @@ msgstr ""
"para obter as últimas actualizacións (posibelmente non publicadas) do "
"paquete.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Omítese o ficheiro xa descargado «%s»\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Non foi posíbel determinar o espazo libre en %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Non hai espazo libre abondo en %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Ten que recibir %sB/%sB de arquivos de fonte.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Ten que recibir %sB de arquivos de fonte.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Obter fonte %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Non se puideron obter algúns arquivos."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Completouse a descarga no modo de só descargas"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "Omítese o desempaquetado do código fonte xa desempaquetado en %s\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Fallou a orde de desempaquetado «%s».\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Fallou a orde de construción de «%s».\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "O proceso fillo fallou"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"Ten que especificar polo menos un paquete para comprobarlle as dependencias "
"de compilación"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Non é posíbel obter a información de dependencias de compilación de %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s non ten dependencias de compilación.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1007,7 +469,7 @@ msgstr ""
"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o "
"paquete %s"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1016,14 +478,14 @@ msgstr ""
"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o "
"paquete %s"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"Non foi posíbel satisfacer a dependencia «%s» de %s: O paquete instalado %s "
"é novo de máis"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1032,7 +494,7 @@ msgstr ""
"A dependencia «%s» de %s non se pode satisfacer porque ningunha versión "
"dispoñíbel do paquete %s satisfai os requirimentos de versión"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1041,30 +503,30 @@ msgstr ""
"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o "
"paquete %s"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Non foi posíbel satisfacer a dependencia «%s» de %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Non se puideron satisfacer as dependencias de construción de %s."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Non se puideron procesar as dependencias de construción"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Rexistro de cambios de %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Módulos admitidos:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1157,103 +619,53 @@ msgstr ""
"para obter mais información e opcións\n"
" Este APT ten poderes da Super Vaca.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"NOTA: Isto é só unha simulación!\n"
-" apt-get precisa de privilexios de administrador para executarse "
-"realmente.\n"
-" Lembre tamén que o bloqueo está desactivado,\n"
-" polo que non debe depender da relevancia da situación actual real."
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Teño "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Rcb:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Obtivéronse %sB en %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Traballando]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Cambio de soporte: introduza o disco etiquetado\n"
-" «%s»\n"
-"na unidade «%s» e prema Intro\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "mais non está instalado"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s cambiado a instalado manualmente.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s está estabelecido para a súa instalación automática.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s xa é a versión máis recente.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s xa é a versión máis recente.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Agardouse por %s pero non estaba alí"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s cambiado a instalado manualmente.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Non foi posíbel abrir %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1275,6 +687,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1372,8 +801,8 @@ msgstr "Esgotouse o tempo para a conexión"
msgid "Server closed the connection"
msgstr "O servidor pechou a conexión"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Produciuse un erro de lectura"
@@ -1386,8 +815,8 @@ msgid "Protocol corruption"
msgstr "Dano no protocolo"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Produciuse un erro de escritura"
@@ -1400,6 +829,10 @@ msgid "Could not connect data socket, connection timed out"
msgstr ""
"Non é posíbel conectar o socket de datos, o tempo esgotouse para a conexión"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Fallou"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Non é posíbel conectar o socket pasivo."
@@ -1442,7 +875,7 @@ msgstr "A conexión do socket de datos esgotou o tempo"
msgid "Unable to accept connection"
msgstr "Non é posíbel aceptar a conexión"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Xurdiu un problema ao calcular o hash do ficheiro"
@@ -1576,83 +1009,613 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Os ficheiros baleiros non poden ser arquivadores válidos"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Produciuse un erro ao escribir no ficheiro"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+"Produciuse un erro ao ler do servidor. O extremo remoto pechou a conexión"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Produciuse un erro ao ler do servidor"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Produciuse un erro ao escribir nun ficheiro"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Fallou a chamada a select"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "A conexión esgotou o tempo"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Produciuse un erro ao escribir no ficheiro de saída"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Agardando polas cabeceiras"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Liña de cabeceira incorrecta"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "O servidor HTTP enviou unha cabeceira de resposta incorrecta"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr ""
"O servidor HTTP enviou unha cabeceira cunha lonxitude de contido incorrecta"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "O servidor HTTP enviou unha cabeceira cun rango de contido incorrecto"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Este servidor HTTP ten a compatibilidade de rangos estragada"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Formato de datos descoñecido"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Fallou a chamada a select"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Datos da cabeceira incorrectos"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "A conexión esgotou o tempo"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Produciuse un fallo na conexión"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Produciuse un erro ao escribir no ficheiro de saída"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Produciuse un erro interno"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Produciuse un erro ao escribir nun ficheiro"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Produciuse un erro ao escribir no ficheiro"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+"Produciuse un erro interno, chamouse a InstallPackages con paquetes "
+"estragados."
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Hai que retirar paquetes mais o retirado está desactivado."
+
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Produciuse un erro interno; non rematou a ordenación"
+
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
-"Produciuse un erro ao ler do servidor. O extremo remoto pechou a conexión"
+"Que estraño... Os tamaños non coinciden; envíe un correo-e a apt@packages."
+"debian.org"
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Produciuse un erro ao ler do servidor"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Ten que recibir %sB/%sB de arquivos.\n"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Datos da cabeceira incorrectos"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Ten que recibir %sB de arquivos.\n"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Produciuse un fallo na conexión"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Despois desta operación ocuparanse %sB de disco adicionais.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Produciuse un erro interno"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Despois desta operación liberaranse %sB de espazo de disco.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Non hai espazo libre abondo en %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Xurdiron problemas e empregouse -y sen --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Especificouse «Só triviais» mais esta non é unha operación trivial."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Si, fai o que digo!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Está a piques de facer algo perigoso.\n"
+"Para continuar escriba a frase «%s»\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Interromper."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Quere continuar?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Non foi posíbel descargar algúns ficheiros"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Non foi posíbel obter algúns arquivos; probe con apt-get update ou --fix-"
+"missing."
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr ""
+"O emprego conxunto de --fix-missing e intercambio de discos non está admitido"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Non é posíbel corrixir os paquetes non dispoñíbeis."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Interrompendo a instalación."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"O seguinte paquete desapareceu do seu sistema e todos os \n"
+"ficheiros serán sobrescritos por outros paquetes:"
+msgstr[1] ""
+"Os seguintes paquetes desapareceron do seu sistema e todos os \n"
+"ficheiros serán sobrescritos por outros paquetes:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Nota: Isto será feito automaticamente por dpkg."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+"Non se agarda que eliminemos cousas, non se pode iniciar o Retirado "
+"automático"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Vaia, semella que o Retirado automático destruíu algo que realmente\n"
+"non debería ter feito. Informe deste erro de apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "A seguinte información pode axudar a solucionar a situación:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Produciuse un erro interno, o Retirado automático estragou cousas"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"O seguinte paquete foi instalado automaticamente e xa non é necesario:"
+msgstr[1] ""
+"Os seguintes paquetes foron instalados automaticamente e xa non son "
+"necesarios:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "%lu paquete foi instalado automaticamente e xa non é necesario.\n"
+msgstr[1] ""
+"%lu paquetes foron instalados automaticamente e xa non son necesarios.\n"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Empregue «apt-get autoremove» para eliminalos."
+msgstr[1] "Empregue «apt-get autoremove» para eliminalos."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Pode querer executar «apt-get -f install» para corrixir isto:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Dependencias incumpridas. Probe «apt-get -f install» sen paquetes (ou "
+"especifique unha solución)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Non foi posíbel instalar algúns paquetes. Isto pode significar que "
+"solicitou\n"
+"unha situación imposíbel ou, se emprega a distribución inestábel, que\n"
+"algúns paquetes solicitados aínda non se creasen ou que se movesen da "
+"entrada."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Paquetes estragados"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Instalaranse os seguintes paquetes extra:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Paquetes suxeridos:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Paquetes recomendados:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "AVISO: Non se poden autenticar os seguintes paquetes!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Ignórase o aviso de autenticación.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Non foi posíbel autenticar algúns paquetes"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Instalar estes paquetes sen verificación?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Non foi posíbel obter %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Instalado]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Instalado]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Instalado]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Os seguintes paquetes teñen dependencias sen cumprir:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "mais %s está instalado"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "mais vaise instalar %s"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "mais non é instalábel"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "mais é un paquete virtual"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "mais non está instalado"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "mais non se vai a instalar"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " ou"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Os seguintes paquetes NOVOS hanse instalar:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Vanse RETIRAR os paquetes seguintes:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Consérvanse os seguintes paquetes:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Vanse anovar os paquetes seguintes:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Vanse REVERTER os seguintes paquetes :"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Vanse modificar os paquetes retidos seguintes:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (por mor de %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"AVISO: Retiraranse os seguintes paquetes esenciais.\n"
+"Isto NON se debe facer a menos que saiba exactamente o que está a facer!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu anovados, %lu instalados, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstalados, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu revertidos, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "Vanse retirar %lu e deixar %lu sen anovar.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu non instalados ou retirados de todo.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[S/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[s/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "S"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Produciuse un erro na compilación da expresión regular - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Corrixindo as dependencias..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " fallou."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Non foi posíbel corrixir as dependencias."
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Non foi posíbel minimizar o conxunto de anovacións"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Feito"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Pode querer executar «apt-get -f install» para corrixilos."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dependencias incumpridas. Probe a empregar -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "A orde «update» non toma argumentos"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Calculando a anovación... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Produciuse un erro interno, AllUpgrade estragou cousas"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Feito"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"NOTA: Isto é só unha simulación!\n"
+" apt-get precisa de privilexios de administrador para executarse "
+"realmente.\n"
+" Lembre tamén que o bloqueo está desactivado,\n"
+" polo que non debe depender da relevancia da situación actual real."
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Non foi posíbel cambiar o nome de %s a %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Teño "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Rcb:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Obtivéronse %sB en %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Traballando]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Cambio de soporte: introduza o disco etiquetado\n"
+" «%s»\n"
+"na unidade «%s» e prema Intro\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Non é posíbel ler %s"
@@ -1715,34 +1678,34 @@ msgstr "Non foi posíbel crear a canle IPC ao subproceso"
msgid "Connection closed prematurely"
msgstr "A conexión pechouse prematuramente"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Configuración predeterminada incorrecta!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Prema Intro para continuar."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Quere borrar os ficheiros .deb descargados anteriormente?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
"Ocorreron algúns erros ao desempaquetar, Os paquetes que se instalaron"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "serán configurados, Isto pode dar erros de duplicación"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"ou erros causados por dependencias incumpridas. Isto é normal, só os erros"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1995,36 +1958,36 @@ msgstr "Non foi posíbel ler a ligazón %s"
msgid "Failed to unlink %s"
msgstr "Non foi posíbel desligar %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Non foi posíbel ligar %s con %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Acadouse o límite de desligado de %sB.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "O arquivo non tiña un campo Package"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s non ten unha entrada de «override»\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " O mantedor de %s é %s, non %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s non ten unha entrada de «override» de código fonte\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s tampouco ten unha entrada de «override» de binarios\n"
@@ -2103,7 +2066,7 @@ msgstr "Xurdiu un problema ao desligar %s"
msgid "Failed to rename %s to %s"
msgstr "Non foi posíbel cambiar o nome de %s a %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2174,7 +2137,7 @@ msgstr "Arquivo danado"
msgid "Tar checksum failed, archive corrupted"
msgstr "A suma de comprobación do arquivo tar non coincide, está danado"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Tipo de cabeceira TAR %u descoñecido, membro %s"
@@ -2298,23 +2261,17 @@ msgid "Unable to stat %s"
msgstr "Non é posíbel determinar o estado %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Este non é un arquivo DEB correcto, falta o membro «%s»"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Este non é un arquivo DEB correcto, non ten un membro «%s», «%s» ou «%s»"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Produciuse un erro interno, non foi posíbel atopar o membro %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Ficheiro de control non analizábel"
@@ -2375,89 +2332,89 @@ msgstr ""
"desactivado polo usuario."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lih %limin %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Non se atopou a selección %s"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Abreviatura de tipo «%c» descoñecida"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Abrindo o ficheiro de configuración %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "Produciuse un erro de sintaxe %s:%u: O bloque comeza sen un nome."
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Produciuse un erro de sintaxe %s:%u: Etiqueta mal formada"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra despois do valor"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
"Produciuse un erro de sintaxe %s:%u: Só se poden facer directivas no nivel "
"superior"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Produciuse un erro de sintaxe %s:%u: Includes aniñados de máis"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Produciuse un erro de sintaxe %s:%u: Incluído de aquí"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Produciuse un erro de sintaxe %s:%u: Non se admite a directiva «%s»"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Produciuse un erro de sintaxe %s:%u: a directiva «clear» require unha árbore "
"de opción como argumento"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra á fin da liña"
@@ -2482,49 +2439,49 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Feito"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Non se coñece a opción de liña de ordes «%c» [de %s]."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Non se entende a opción de liña de ordes %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "A opción de liña de ordes %s non é booleana"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "A opción %s precisa dun argumento."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"Opción %s: A especificación de elemento de configuración debe ter un =<val>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "A opción %s precisa dun argumento enteiro, non «%s»"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "A opción «%s» é longa de máis"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "O senso %s non se entende, probe «true» ou «false»."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Operación incorrecta: %s"
@@ -2538,48 +2495,48 @@ msgstr "Non é posíbel analizar o punto de montaxe %s"
msgid "Failed to stat the cdrom"
msgstr "Non foi posíbel analizar o CD-ROM"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Produciuse un problema ao pechar o arquivo gzip %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Non se empregan bloqueos para o ficheiro de bloqueo de só lectura %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Non foi posíbel abrir o ficheiro de bloqueo %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Non se empregan bloqueos para o ficheiro de bloqueo montado por NFS %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Non foi posíbel obter o bloqueo %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "A lista de ficheiros non pode ser creada como «%s» non é un directorio"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "Ignorando «%s» no directorio «%s» xa que non é un ficheiro regular"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
"Ignorando o ficheiro «%s» no directorio «%s» xa que non ten extensión de nome"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
@@ -2587,70 +2544,70 @@ msgstr ""
"Ignorando o ficheiro «%s» no directorio «%s» xa que ten unha extensión de "
"nome incorrecta"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "O subproceso %s recibiu un fallo de segmento."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "O subproceso %s recibiu o sinal %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "O subproceso %s saíu de xeito inesperado"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Non foi posíbel abrir o ficheiro %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Non foi posíbel abrir o descritor de ficheiro %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Non foi posíbel crear o IPC do subproceso"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Non foi posíbel executar o compresor "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "lectura, aínda hai %lu para ler pero non queda ningún"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "escritura, aínda hai %lu para escribir pero non se puido"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Produciuse un problema ao pechar o ficheiro %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Produciuse un problema ao renomear o ficheiro %s a %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Produciuse un problema ao desligar o ficheiro %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Produciuse un problema ao sincronizar o ficheiro"
@@ -2768,12 +2725,12 @@ msgstr "Non foi posíbel abrir o ficheiro de estado %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Non foi posíbel gravar o ficheiro de estado temporal %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Non é posíbel analizar o ficheiro de paquetes %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Non é posíbel analizar o ficheiro de paquetes %s (2)"
@@ -2852,7 +2809,7 @@ msgstr "Liña %u mal construída na lista de orixes %s (tipo)"
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2861,12 +2818,12 @@ msgstr ""
"Non foi posíbel facer a configuración inmediata en «%s». Vexa man 5 apt.conf "
"baixo APT::Immediate-Configure para obter máis detalles. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Non foi posíbel abrir o ficheiro «%s»"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2890,7 +2847,7 @@ msgstr ""
"O paquete %s ten que ser reinstalado, mais non é posíbel atopar o seu "
"arquivo."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2898,19 +2855,10 @@ msgstr ""
"Erro, pkgProblemResolver::Resolve xerou interrupcións, isto pode estar "
"causado por paquetes retidos."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Non é posíbel solucionar os problemas, ten retidos paquetes rotos."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Algúns ficheiros de índice fallaron durante a descarga. Ignoráronse, ou "
-"foron utilizados algúns antigos no seu lugar"
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2953,12 +2901,12 @@ msgstr "O método %s non se iniciou correctamente"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Insira o disco etiquetado: «%s» na unidade «%s» e prema Intro."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "O sistema de empaquetado «%s» non está admitido"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Non é posíbel determinar un tipo de sistema de empaquetado axeitado"
@@ -2992,18 +2940,18 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr ""
"Rexistro incorrecto no ficheiro de preferencias %s; falta a cabeceira Package"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Non se entendeu o tipo de inmobilización %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr ""
"Non se indicou unha prioridade (ou indicouse cero) para a inmobilización"
@@ -3074,16 +3022,20 @@ msgstr "Produciuse un erro de E/S ao gravar a caché de fontes"
msgid "rename failed, %s (%s -> %s)."
msgstr "non foi posíbel cambiar o nome, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "A MD5Sum non coincide"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "A sumas «hash» non coinciden"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Os tamaños non coinciden"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Operación incorrecta: %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3092,29 +3044,29 @@ msgstr ""
"Non é posíbel atopar a entrada agardada «%s» no ficheiro de publicación "
"(entrada sources.list incorrecta ou ficheiro con formato incorrecto)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr ""
"Non é posíbel ler a suma de comprobación para «%s» no ficheiro de publicación"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "Non hai unha chave pública dispoñíbel para os seguintes ID de chave:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Conflito na distribución: %s (agardábase %s mais obtívose %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3125,12 +3077,12 @@ msgstr ""
"%s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Produciuse un erro de GPG: %s %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3139,16 +3091,12 @@ msgstr ""
"Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar que "
"ten que arranxar este paquete a man. (Falta a arquitectura)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar que "
-"ten que arranxar este paquete a man."
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3156,16 +3104,12 @@ msgstr ""
"Os ficheiros de índices de paquetes están danados. Non hai un campo "
"Filename: para o paquete %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Os tamaños non coinciden"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Non se puido analizar o ficheiro de publicación %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Non hai seccións no ficheiro de publicación %s"
@@ -3312,34 +3256,34 @@ msgstr "Non é posíbel atopar un rexistro de autenticación para: %s"
msgid "Hash mismatch for: %s"
msgstr "Valor de hash non coincidente para: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Non se atopou a publicación «%s» de «%s»"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Non se atopou a versión «%s» de «%s»"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Non foi posíbel atopar a tarefa «%s»"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
"Non é posíbel seleccionar distintas versións do paquete «%s» xa que é "
"puramente virtual"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3348,21 +3292,21 @@ msgstr ""
"Non é posíbel seleccionar nin a versión instalada nin a candidata do paquete "
"«%s» xa que non ten ningunha delas"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Non é posíbel seleccionar a versión máis recente do paquete «%s» xa que é "
"puramente virtual"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Non é posíbel seleccionar a versión candidata do paquete %s xa que non ten "
"candidata"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3389,113 +3333,134 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Executando dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Algúns ficheiros de índice fallaron durante a descarga. Ignoráronse, ou "
+"foron utilizados algúns antigos no seu lugar"
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Instalando %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Configurando %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Retirando %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "%s completamente retirado"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Tomando nota da desaparición de %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Executando o disparador de post-instalación %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Falta o directorio «%s»"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Non foi posíbel abrir o ficheiro «%s»"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Preparando %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Desempaquetando %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Preparandose para configurar %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Instalouse %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Preparándose para o retirado de %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Retirouse %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Preparándose para retirar %s completamente"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Retirouse %s completamente"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Non é posíbel escribir en %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Non foi posíbel escribir no rexistro, a chamada a openpty() fallou (/dev/pts "
-"non estaba montado?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Executando dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
"Non se escribiu ningún informe de Apport porque xa se acadou o nivel "
"MaxReports"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "problemas de dependencias - déixase sen configurar"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3503,7 +3468,7 @@ msgstr ""
"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica que "
"é un error provinte dun fallo anterior."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3511,7 +3476,7 @@ msgstr ""
"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un "
"erro de disco cheo."
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3519,7 +3484,16 @@ msgstr ""
"Non se escribiu un informe de contribución porque a mensaxe de erro indica "
"un erro de falta de memoria"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un "
+"erro de disco cheo."
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3555,6 +3529,95 @@ msgstr ""
msgid "Not locked"
msgstr "Non está bloqueado"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Nota, seleccione «%s» para a tarefa «%s»\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Nota, seleccione «%s» para a expresión regular «%s»\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "O paquete %s é un paquete virtual fornecido por:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Non hai unha versión candidata]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Debería escoller un para instalar."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "O paquete %s non está dispoñíbel, mais outro paquete fai referencia a "
+#~ "el.\n"
+#~ "Isto pode significar que falta o paquete, está obsoleto ou só está\n"
+#~ "dispoñíbel noutra fonte.\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Porén, os seguintes paquetes substitúeno:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "O paquete «%s» non ten unha instalación candidata"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Non se poden retirar os paquetes virtuais como «%s»\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "O paquete %s non está instalado, así que non foi retirado\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "O paquete %s non está instalado, así que non foi retirado\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Nota, seleccione «%s» no canto de «%s»\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "Omítese %s, xa está instalado e non se especificou a anovación.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Omitindo %s, non está instalado e só se solicitaron as anovacións.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "A reinstalación de %s non é posíbel, non se pode descargar.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s xa é a versión máis recente.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Versión seleccionada «%s» (%s) para «%s»\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Versión seleccionada «%s» (%s) para «%s» xa que «%s»\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Ignorase a versión de destino «%s» non dispoñíbel do paquete «%s»"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "Descargando %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Este non é un arquivo DEB correcto, non ten un membro «%s», «%s» ou «%s»"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "A MD5Sum non coincide"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar "
+#~ "que ten que arranxar este paquete a man."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "Non foi posíbel escribir no rexistro, a chamada a openpty() fallou (/dev/"
+#~ "pts non estaba montado?)\n"
+
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Omitindo o ficheiro inexistente %s"
diff --git a/po/hu.po b/po/hu.po
index 11c116e56..a837b0cb2 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt trunk\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-06-25 17:09+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -21,151 +21,153 @@ msgstr ""
"X-Poedit-Country: HUNGARY\n"
"X-Poedit-Language: Hungarian\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "%s csomag %s verziójának teljesítetlen függősége van:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Csomagnevek összesen : "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Csomagstruktúrák összesen: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Normális csomagok: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Teljesen virtuális csomagok: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Egyedi virtuális csomagok: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Vegyes virtuális csomagok: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Hiányzik: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Különböző verziók összesen: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Összes különböző leírás: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Függőségek összesen: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Verzió/Fájl kapcsolatok összesen: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Leírás/Fájl kapcsolatok összesen: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "„Biztosítja†kapcsolatok összesen: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Minták összesen: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Függőségiverzió-terület összesen: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Slack terület összesen: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Nyilvántartott terület összesen: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "%s csomagfájl nincs szinkronban."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Nem találhatók csomagok"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Legalább egy keresési mintát meg kell adnia"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr "Ez a parancs elavult. Használja helyette az „apt-mark showautoâ€-t."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Ez a csomag nem található: %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Csomagfájlok:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"A gyorsítótár nincs szinkronban, nem lehet kereszthivatkozni a csomagfájlra"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Rögzített csomagok:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(nem található)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Telepítve: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Jelölt: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(nincs)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Csomagrögzítés: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Verziótáblázat:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s erre: %s lefordítva ekkor: %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -237,35 +239,35 @@ msgstr ""
"információkért.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Adja meg a lemez nevét, mint például „Debian 5.0.3 1. lemezâ€"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Helyezzen be egy lemezt a meghajtóba, és nyomja meg az Entert"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "„%s†csatolása a(z) „%s†könyvtárba meghiúsult"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Ismételje meg a folyamatot készlete többi CD-jével is."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Az argumentumok nincsenek párban"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -292,555 +294,33 @@ 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"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[I/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[i/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "I"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Regex fordítási hiba - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Az alábbi csomagoknak teljesítetlen függőségei vannak:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "de %s van telepítve"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "de csak %s telepíthető"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "de az nem telepíthető"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "de az egy virtuális csomag"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "de az nincs telepítve"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "de az nincs telepítésre megjelölve"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " vagy"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Az alábbi ÚJ csomagok lesznek telepítve:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Az alábbi csomagok el lesznek TÃVOLÃTVA:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Az alábbi csomagok vissza lesznek tartva:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Az alábbi csomagok frissítve lesznek:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Az alábbi csomagok VISSZAFEJLESZTÉSRE kerülnek:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Az alábbi visszafogott csomagokat cserélem:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (%s miatt) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"FIGYELMEZTETÉS: Az alábbi alapvető csomagok el lesznek távolítva.\n"
-"NE tegye ezt, hacsak nem tudja pontosan, mit csinál!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu frissített, %lu újonnan telepített, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu újratelepítendő, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu visszafejlesztendő, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu eltávolítandó és %lu nem frissített.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu nincs teljesen telepítve/eltávolítva.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Megjegyzés: „%s†kijelölése „%s†feladathoz\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Megjegyzés: „%s†kijelölése „%s†regexhez\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "%s egy virtuális csomag, melyet az alábbi csomagok biztosítanak:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [Telepítve]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Nem jelölt verzió]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Egyet név szerint ki kell jelölni a telepítésre."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"%s csomag nem elérhető, de egy másik hivatkozik rá.\n"
-"A kért csomag hiányzik, elavult vagy csak más forrásból érhető el\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "De az alábbi csomagok helyettesítik:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "„%s†csomagnak nincs telepítésre jelölt verziója"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "A virtuális csomagokat, mint a(z) „%s†nem lehet eltávolítani\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"A(z) „%s†csomag nincs telepítve, így nem lett törölve. Erre gondolt: „%s�\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "A(z) „%s†csomag nincs telepítve, így nem lett törölve\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Megjegyzés: „%s†kijelölése „%s†helyett\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "„%s†kihagyása, nincs telepítve, és csak frissítések lettek kérve.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s már a legújabb verzió.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s kézi telepítésűre állítva.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "„%s†(%s) verzió lett kijelölve ehhez: „%sâ€\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "„%s†(%s) verzió lett kijelölve ehhez: „%sâ€, a(z) „%s†miatt\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Függőségek javítása..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " sikertelen."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Nem lehet javítani a függőségeket"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Nem lehet minimalizálni a frissítendő csomagok mennyiségét"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Kész"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "Próbálja futtatni az „apt-get -f install†parancsot ezek javításához."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Teljesítetlen függőségek. Próbálja a -f használatával."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "FIGYELMEZTETÉS: Az alábbi csomagok nem hitelesíthetők!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "A hitelesítési figyelmeztetés felülbírálva.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Valóban ellenőrzés nélkül telepíti a csomagokat?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Néhány csomag nem hitelesíthető"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Problémák vannak, és a -y kapcsolót használta --force-yes nélkül"
-
-#: cmdline/apt-get.cc:1160
-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:1169
-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:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Belső hiba, a rendezés nem fejeződött be"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "A méretek nem egyeznek, írjon az apt@packages.debian.org címre"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Letöltendő adatmennyiség: %sB/%sB.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Letöltendő adatmennyiség: %sB.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "A művelet után %sB lemezterület kerül felhasználásra.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "A művelet után %sB lemezterület szabadul fel.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Nem határozható meg a szabad hely mennyisége itt: %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Nincs elég szabad hely itt: %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "A „Trivial Only†meg van adva, de ez nem egy triviális művelet."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Igen, tedd amit mondok!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Ãrtalmasnak tűnÅ‘ műveletet készül végrehajtani.\n"
-"A folytatáshoz írja be ezt a mondatot: „%sâ€\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Megszakítva."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Folytatni akarja?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Sikertelen letöltés: %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Néhány fájlt nem sikerült letölteni"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-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:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Nem lehet letölteni néhány archívumot. Próbálja futtatni az „apt-get update†"
-"parancsot, vagy használja a --fix-missing kapcsolót."
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "A --fix-missing és az adathordozó-csere jelenleg nem támogatott"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Nem lehet javítani a hiányzó csomagokat."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Telepítés megszakítása."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"A következő csomag eltűnt a rendszerből, mivel\n"
-"az összes fájlt más csomagok fölülírták:"
-msgstr[1] ""
-"A következő csomagok eltűntek a rendszerből, mivel\n"
-"az összes fájlt más csomagok fölülírták:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Megjegyzés: ezt a dpkg automatikusan és szándékosan hajtja végre."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-"A(z) „%2$s†csomag el nem érhető „%1$s†cél kiadásának figyelmen kívül "
-"hagyása"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "„%s†kiválasztása forráscsomagként „%s†helyett\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
"A(z) „%2$s†csomag el nem érhető „%1$s†verziójának figyelmen kívül hagyása"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Az update parancsnak nincsenek argumentumai"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr "Nem kellene semmit törölni, az AutoRemover nem indítható"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Úgy tűnik, az AutoRemover hibát okozott, ez nem történhetne meg.\n"
-"Küldjön hibajelentést az apt csomaghoz."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Az alábbi információk segíthetnek megoldani a problémát:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Belső hiba, az AutoRemover sérült"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"A következő csomag automatikusan lett telepítve, és már nincs rá szükség:"
-msgstr[1] ""
-"A következő csomagok automatikusan lettek telepítve, és már nincs rájuk "
-"szükség:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "%lu csomag automatikusan lett telepítve, és már nincs rá szükség.\n"
-msgstr[1] ""
-"%lu csomag automatikusan lett telepítve, és már nincs rájuk szükség.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Ezt az „apt-get autoremove†paranccsal törölheti."
-msgstr[1] "Ezeket az „apt-get autoremove†paranccsal törölheti."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Belső hiba, az AllUpgrade megsértett valamit"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr ""
-"Próbálja futtatni az „apt-get -f install†parancsot az alábbiak javításához:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Teljesítetlen függőségek. Próbálja kiadni az „apt-get -f install†parancsot "
-"csomagok nélkül (vagy telepítse a függőségeket is!)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Néhány csomagot nem lehetett telepíteni. Ez azt jelentheti, hogy\n"
-"egy lehetetlen állapotot kért, vagy ha az unstable disztribúciót\n"
-"használja, akkor néhány igényelt csomag még nem készült el vagy ki\n"
-"lett mozdítva az Incoming-ból."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Törött csomagok"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Az alábbi extra csomagok kerülnek telepítésre:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Javasolt csomagok:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Ajánlott csomagok:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Az alábbi csomag nem található: %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s kézi telepítésűre állítva.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s megjelölve automatikusan telepítettként.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -848,47 +328,25 @@ msgstr ""
"Ez a parancs elavult. Használja helyette az „apt-mark auto†és az „apt-mark "
"auto†parancsokat."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Frissítés kiszámítása... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Sikertelen"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Kész"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Belső hiba, a problémamegoldó hibát okozott"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Nem lehet zárolni a letöltési könyvtárat"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "Nem található forrás a(z) „%2$s†„%1$s†verziójának letöltéséhez"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "Letöltés: %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr ""
"Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Nem található forráscsomag ehhez: %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -898,7 +356,7 @@ msgstr ""
"karbantartva:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -909,70 +367,80 @@ msgstr ""
"bzr branch %s\n"
"a csomag legújabb (esetleg kiadatlan) frissítéseinek letöltéséhez.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, 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:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Nem határozható meg a szabad hely mennyisége itt: %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Nincs elég szabad hely itt: %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Letöltendő forrásadat-mennyiség: %sB/%sB.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Letöltendő forrásadat-mennyiség: %sB.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Forrás letöltése: %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Nem sikerült néhány archívumot letölteni."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+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:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "„%s†kibontási parancs nem sikerült.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Ellenőrizze, hogy a „dpkg-dev†csomag telepítve van-e.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "„%s†elkészítési parancs nem sikerült.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Hiba a gyermekfolyamatnál"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"Legalább egy csomagot adjon meg, amelynek fordítási függőségeit ellenőrizni "
"kell"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -981,17 +449,17 @@ msgstr ""
"Nem érhetők el architektúrainformációk ehhez: %s. A beállításokkal "
"kapcsolatban lásd az apt.conf(5) APT::Architectures részét."
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Nem lehet %s fordítási függőségeinek információit letölteni"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, 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:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1000,7 +468,7 @@ msgstr ""
"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s nem "
"engedélyezett a(z) „%4$s†csomagokon"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1009,14 +477,14 @@ msgstr ""
"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag nem "
"található"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"%2$s csomag %1$s függősége nem elégíthető ki: a telepített %3$s csomag túl "
"friss"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1025,7 +493,7 @@ msgstr ""
"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag elérhető "
"verziója nem elégíti ki a verziókövetelményeket"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1034,30 +502,30 @@ msgstr ""
"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomagnak nincs "
"jelölt verziója"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "%2$s csomag %1$s függősége nem elégíthető ki: %3$s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "%s építési függőségei nem elégíthetők ki."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Nem sikerült az építési függőségeket feldolgozni"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Változási napló ehhez: %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Támogatott modulok:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1146,102 +614,53 @@ msgstr ""
"információkért és opciókért.\n"
" Ez az APT a SzuperTehén Hatalmával rendelkezik.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"NE FELEDJE: Ez csak szimuláció!\n"
-" Az apt-get rendszergazdai jogokat igényel a tényleges végrehajtáshoz.\n"
-" Ne feledje, hogy a zárolás is ki van kapcsolva,\n"
-" így ne számítson a jelenlegi helyzet valósságára!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Találat "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Letöltés:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Mellőz "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Hiba "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Letöltve %sB %s alatt (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Folyamatban]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Helyezze be a(z)\n"
-" „%sâ€\n"
-"címkéjű lemezt a(z) %s meghajtóba, és nyomja meg az Entert\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s nem jelölhető meg, mivel nincs telepítve.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s már be van állítva kézi telepítésűre.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s már meg van jelölve automatikusan telepítettként.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s már be van állítva visszafogásra.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s eddig sem volt visszafogva.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Nem található a(z) %s, a várakozás után sem"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s beállítva visszafogásra.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "Visszafogás törölve ezen: %s.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "A dpkg futtatása sikertelen. Van root jogosultsága?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1283,6 +702,23 @@ msgstr ""
"Lásd még az apt-mark(8) és apt.conf(5) kézikönyvlapokat további\n"
"információkért."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1383,8 +819,8 @@ msgstr "Időtúllépés a kapcsolatban"
msgid "Server closed the connection"
msgstr "A kiszolgáló lezárta a kapcsolatot"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Olvasási hiba"
@@ -1397,8 +833,8 @@ msgid "Protocol corruption"
msgstr "Protokollhiba"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Ãrási hiba"
@@ -1411,6 +847,10 @@ msgid "Could not connect data socket, connection timed out"
msgstr ""
"Nem lehet kapcsolódni az adatfoglalathoz, a kapcsolat túllépte az időkorlátot"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Sikertelen"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Nem lehet kapcsolódni a passzív foglalathoz."
@@ -1453,7 +893,7 @@ msgstr "Az adatfoglalathoz kapcsolódás túllépte az időkorlátot"
msgid "Unable to accept connection"
msgstr "Nem lehet elfogadni a kapcsolatot"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Probléma a fájl hash értékének meghatározásakor"
@@ -1584,81 +1024,602 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Az üres fájlok biztosan nem érvényes csomagok"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Hiba a fájl írásakor"
+
+#: methods/http.cc:533
+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:535
+msgid "Error reading from server"
+msgstr "Hiba a kiszolgálóról olvasáskor"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Hiba a fájl írásakor"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "A kiválasztás sikertelen"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Időtúllépés a kapcsolatban"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Hiba a kimeneti fájl írásakor"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Várakozás a fejlécekre"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Rossz fejlécsor"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "A HTTP-kiszolgáló érvénytelen válaszfejlécet küldött"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "A HTTP-kiszolgáló érvénytelen Content-Length fejlécet küldött"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "A HTTP-kiszolgáló érvénytelen Content-Range fejlécet küldött"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "A HTTP-kiszolgáló tartománytámogatása sérült"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Ismeretlen dátumformátum"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "A kiválasztás sikertelen"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Rossz fejlécadatok"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Időtúllépés a kapcsolatban"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Sikertelen kapcsolódás"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Hiba a kimeneti fájl írásakor"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Belső hiba"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Hiba a fájl írásakor"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Hiba a fájl írásakor"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Belső hiba, az InstallPackages törött csomagokkal lett meghívva!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Hiba a kiszolgálóról olvasáskor, a túloldal lezárta a kapcsolatot"
+#: apt-private/private-install.cc:102
+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."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Hiba a kiszolgálóról olvasáskor"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Belső hiba, a rendezés nem fejeződött be"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Rossz fejlécadatok"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "A méretek nem egyeznek, írjon az apt@packages.debian.org címre"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Sikertelen kapcsolódás"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Letöltendő adatmennyiség: %sB/%sB.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Belső hiba"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Letöltendő adatmennyiség: %sB.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "A művelet után %sB lemezterület kerül felhasználásra.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "A művelet után %sB lemezterület szabadul fel.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Nincs elég szabad hely itt: %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Problémák vannak, és a -y kapcsolót használta --force-yes nélkül"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "A „Trivial Only†meg van adva, de ez nem egy triviális művelet."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Igen, tedd amit mondok!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Ãrtalmasnak tűnÅ‘ műveletet készül végrehajtani.\n"
+"A folytatáshoz írja be ezt a mondatot: „%sâ€\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Megszakítva."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Folytatni akarja?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Néhány fájlt nem sikerült letölteni"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Nem lehet letölteni néhány archívumot. Próbálja futtatni az „apt-get update†"
+"parancsot, vagy használja a --fix-missing kapcsolót."
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "A --fix-missing és az adathordozó-csere jelenleg nem támogatott"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Nem lehet javítani a hiányzó csomagokat."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Telepítés megszakítása."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"A következő csomag eltűnt a rendszerből, mivel\n"
+"az összes fájlt más csomagok fölülírták:"
+msgstr[1] ""
+"A következő csomagok eltűntek a rendszerből, mivel\n"
+"az összes fájlt más csomagok fölülírták:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Megjegyzés: ezt a dpkg automatikusan és szándékosan hajtja végre."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Nem kellene semmit törölni, az AutoRemover nem indítható"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Úgy tűnik, az AutoRemover hibát okozott, ez nem történhetne meg.\n"
+"Küldjön hibajelentést az apt csomaghoz."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Az alábbi információk segíthetnek megoldani a problémát:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Belső hiba, az AutoRemover sérült"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"A következő csomag automatikusan lett telepítve, és már nincs rá szükség:"
+msgstr[1] ""
+"A következő csomagok automatikusan lettek telepítve, és már nincs rájuk "
+"szükség:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "%lu csomag automatikusan lett telepítve, és már nincs rá szükség.\n"
+msgstr[1] ""
+"%lu csomag automatikusan lett telepítve, és már nincs rájuk szükség.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Ezt az „apt-get autoremove†paranccsal törölheti."
+msgstr[1] "Ezeket az „apt-get autoremove†paranccsal törölheti."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+"Próbálja futtatni az „apt-get -f install†parancsot az alábbiak javításához:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Teljesítetlen függőségek. Próbálja kiadni az „apt-get -f install†parancsot "
+"csomagok nélkül (vagy telepítse a függőségeket is!)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Néhány csomagot nem lehetett telepíteni. Ez azt jelentheti, hogy\n"
+"egy lehetetlen állapotot kért, vagy ha az unstable disztribúciót\n"
+"használja, akkor néhány igényelt csomag még nem készült el vagy ki\n"
+"lett mozdítva az Incoming-ból."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Törött csomagok"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Az alábbi extra csomagok kerülnek telepítésre:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Javasolt csomagok:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Ajánlott csomagok:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "FIGYELMEZTETÉS: Az alábbi csomagok nem hitelesíthetők!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "A hitelesítési figyelmeztetés felülbírálva.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Néhány csomag nem hitelesíthető"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Valóban ellenőrzés nélkül telepíti a csomagokat?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Sikertelen letöltés: %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Telepítve]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Telepítve]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Telepítve]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Az alábbi csomagoknak teljesítetlen függőségei vannak:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "de %s van telepítve"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "de csak %s telepíthető"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "de az nem telepíthető"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "de az egy virtuális csomag"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "de az nincs telepítve"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "de az nincs telepítésre megjelölve"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " vagy"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Az alábbi ÚJ csomagok lesznek telepítve:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Az alábbi csomagok el lesznek TÃVOLÃTVA:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Az alábbi csomagok vissza lesznek tartva:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Az alábbi csomagok frissítve lesznek:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Az alábbi csomagok VISSZAFEJLESZTÉSRE kerülnek:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Az alábbi visszafogott csomagokat cserélem:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (%s miatt) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"FIGYELMEZTETÉS: Az alábbi alapvető csomagok el lesznek távolítva.\n"
+"NE tegye ezt, hacsak nem tudja pontosan, mit csinál!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu frissített, %lu újonnan telepített, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu újratelepítendő, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu visszafejlesztendő, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu eltávolítandó és %lu nem frissített.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu nincs teljesen telepítve/eltávolítva.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[I/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[i/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "I"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Regex fordítási hiba - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Függőségek javítása..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " sikertelen."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Nem lehet javítani a függőségeket"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Nem lehet minimalizálni a frissítendő csomagok mennyiségét"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Kész"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Próbálja futtatni az „apt-get -f install†parancsot ezek javításához."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Teljesítetlen függőségek. Próbálja a -f használatával."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Az update parancsnak nincsenek argumentumai"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Frissítés kiszámítása... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Belső hiba, az AllUpgrade megsértett valamit"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Kész"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"NE FELEDJE: Ez csak szimuláció!\n"
+" Az apt-get rendszergazdai jogokat igényel a tényleges végrehajtáshoz.\n"
+" Ne feledje, hogy a zárolás is ki van kapcsolva,\n"
+" így ne számítson a jelenlegi helyzet valósságára!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "„%s†átnevezése sikertelen erre: %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Találat "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Letöltés:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Mellőz "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Hiba "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Letöltve %sB %s alatt (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Folyamatban]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Helyezze be a(z)\n"
+" „%sâ€\n"
+"címkéjű lemezt a(z) %s meghajtóba, és nyomja meg az Entert\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "%s nem olvasható"
@@ -1721,34 +1682,34 @@ msgstr "Nem sikerült IPC-adatcsatornát létrehozni az alfolyamathoz"
msgid "Connection closed prematurely"
msgstr "A kapcsolat idő előtt lezárult"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Hibás alapértelmezett beállítás!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Nyomja meg az Entert a folytatáshoz."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Törli a korábban letöltött .deb fájlokat?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Hiba történt a kicsomagolás során. A telepített csomagok"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "beállításra kerülnek. Ez többszörös"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"vagy hiányzó függőségek miatti hibákat okozhat. Ez így van rendben, csak az "
"ezen üzenet"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "előtti hibák fontosak. Javítsa azokat, és futtassa az [I]nstallt újra"
@@ -1999,36 +1960,36 @@ msgstr "readlink nem hajtható végre erre: %s"
msgid "Failed to unlink %s"
msgstr "%s törlése sikertelen"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** %s linkelése sikertelen ehhez: %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " a DeLink korlátja (%sB) elérve.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Az archívumnak nem volt csomag mezője"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s nem rendelkezik felülbíráló bejegyzéssel\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s karbantartója %s, nem %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s nem rendelkezik forrás-felülbíráló bejegyzéssel\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s nem rendelkezik bináris-felülbíráló bejegyzéssel sem\n"
@@ -2107,7 +2068,7 @@ msgstr "Hiba %s törlésekor"
msgid "Failed to rename %s to %s"
msgstr "„%s†átnevezése sikertelen erre: %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2177,7 +2138,7 @@ msgstr "Hibás archívum"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar ellenőrzőösszeg nem egyezik, az archívum megsérült"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Ismeretlen a(z) %u TAR fejléctípus, %s tag"
@@ -2301,22 +2262,17 @@ msgid "Unable to stat %s"
msgstr "%s nem érhető el"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Ez nem egy érvényes DEB archívum, hiányzik a(z) „%s†tag"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "Érvénytelen DEB archívum, nincs „%sâ€, „%s†vagy „%s†tagja"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Belső hiba, %s tag nem található"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Értelmezhetetlen control fájl"
@@ -2377,87 +2333,87 @@ msgstr ""
"automatikus emelést."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr "%lin %lió %lip %limp"
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lió %lip %limp"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%lip %limp"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%limp"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "%s kiválasztás nem található"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Ismeretlen típusrövidítés: „%câ€"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "%s konfigurációs fájl megnyitása"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Szintaktikai hiba %s: %u: rosszul formázott címke"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Szintaktikai hiba %s: %u: ugyaninnen include-olva"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, 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:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Szintaktikai hiba %s:%u: a törlési parancs egy beállítási fát vár "
"argumentumként"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, 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"
@@ -2482,49 +2438,49 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Kész"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "A(z) „%c†parancssori kapcsoló [a következőből: %s] ismeretlen."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "%s parancssori kapcsoló értelmezhetetlen"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "%s parancssori kapcsoló nem logikai"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "%s kapcsolóhoz argumentum szükséges."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"%s kapcsoló: a konfigurációs elem megadásához szükséges egy =<érték> rész."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "%s kapcsoló egész, és nem „%s†típusú argumentumot követel meg"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Túl hosszú „%s†kapcsoló"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "%s jelentés nem értelmezhető, próbálja a true vagy false értékeket."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "%s érvénytelen művelet"
@@ -2538,50 +2494,50 @@ msgstr "%s csatolási pont nem érhető el"
msgid "Failed to stat the cdrom"
msgstr "Nem sikerült elérni a CD-ROM-ot."
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Hiba a(z) %s gzip fájl bezárásakor"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Nem lesz zárolva a(z) „%s†csak olvasható zárolási fájl"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "%s zárolási fájl nem nyitható meg"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Nem lesz zárolva a(z) %s NFS-csatolású zárolási fájl"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Nem sikerült zárolni: %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "A fájlok listáját nem lehetett létrehozni, mert „%s†nem könyvtár"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
"„%s†figyelmen kívül hagyása a(z) „%s†könyvtárban, mert nem szabályos fájl"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
"„%s†fájl figyelmen kívül hagyása a(z) „%s†könyvtárban, mert nincs "
"fájlkiterjesztése"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
@@ -2589,70 +2545,70 @@ msgstr ""
"„%s†fájl figyelmen kívül hagyása a(z) „%s†könyvtárban, mert érvénytelen "
"fájlkiterjesztése van"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "%s alfolyamat szegmentálási hibát okozott."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "A(z) %s alfolyamat %u számú szignált kapott."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "%s alfolyamat váratlanul kilépett"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Nem lehet megnyitni a(z) %s fájlt"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Nem lehet megnyitni a(z) %d fájlleírót"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Nem sikerült az alfolyamat IPC-t létrehozni"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Nem sikerült elindítani a tömörítőt "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "olvasás, még kellene %llu, de már az összes elfogyott"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "írás, még kiírandó %llu, de ez nem lehetséges"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Hiba a(z) %s fájl bezárásakor"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Hiba a(z) %s fájl átnevezésekor erre: %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Hiba a(z) %s fájl törlésekor"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Hiba a fájl szinkronizálásakor"
@@ -2769,12 +2725,12 @@ msgstr "%s állapotfájl megnyitása sikertelen"
msgid "Failed to write temporary StateFile %s"
msgstr "%s átmeneti állapotfájl írása sikertelen"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (2)"
@@ -2859,7 +2815,7 @@ msgstr "A(z) %u. sor hibás a(z) %s forráslistában (típus)"
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "„%1$s†típus nem ismert a(z) %3$s forráslista %2$u. sorában"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2868,12 +2824,12 @@ msgstr ""
"Nem lehetett a(z) „%s†közvetlen beállítását végrehajtani. A részletekért "
"lásd a man 5 apt.conf oldalt az APT::Immediate-Configure címszó alatt. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "A(z) „%s†beállítása sikertelen"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2896,7 +2852,7 @@ msgid ""
msgstr ""
"A(z) %s csomagot újra kell telepíteni, de nem található hozzá archívum."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2904,18 +2860,10 @@ msgstr ""
"Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott "
"csomagok okozhatják."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "A problémák nem javíthatók, sérült csomagokat fogott vissza."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Néhány indexfájlt nem sikerült letölteni. Figyelmen kívül lettek hagyva, "
-"vagy régebbiek lettek felhasználva."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2960,12 +2908,12 @@ msgstr ""
"Helyezze be a(z) „%s†címkéjű lemezt a(z) „%s†meghajtóba, és nyomja meg az "
"Entert."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "A(z) „%s†csomagrendszer nem támogatott"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "A megfelelő csomagrendszertípus nem határozható meg"
@@ -3001,17 +2949,17 @@ msgstr ""
"A(z) „%s†érték érvénytelen az APT::Default-Release beállításhoz, mert nincs "
"ilyen kiadás a forrásokban"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Érvénytelen rekord a(z) %s beállításfájlban, nincs Package fejléc"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "A(z) %s rögzítéstípus nem értelmezhető"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Nincs prioritás (vagy nulla) megadva a rögzítéshez"
@@ -3081,16 +3029,20 @@ msgstr "IO hiba a forrás-gyorsítótár mentésekor"
msgid "rename failed, %s (%s -> %s)."
msgstr "sikertelen átnevezés, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Az MD5Sum nem megfelelő"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "A Hash Sum nem megfelelő"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "A méret nem megfelelő"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "%s érvénytelen művelet"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3099,16 +3051,16 @@ msgstr ""
"A várt „%s†bejegyzés nem található a Release fájlban (Rossz sources.list "
"bejegyzés vagy helytelenül formázott fájl)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Nem található a(z) „%s†ellenőrzőösszege a Release fájlban"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "Nem érhető el nyilvános kulcs az alábbi kulcsazonosítókhoz:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3117,12 +3069,12 @@ msgstr ""
"A Release fájl elavult ehhez: %s (érvénytelen ez óta: %s). A tároló "
"frissítései nem kerülnek alkalmazásra."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Ütköző disztribúció: %s (a várt %s helyett %s érkezett)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3132,12 +3084,12 @@ msgstr ""
"előző indexfájl lesz használva. GPG hiba: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "GPG hiba: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3146,32 +3098,24 @@ msgstr ""
"Egy fájl nem található a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel "
"kell kijavítani a csomagot. (hiányzó arch. miatt)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"Egy fájl nem található a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel "
-"kell kijavítani a csomagot."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "Nem található forrás a(z) „%2$s†„%1$s†verziójának letöltéséhez"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
"A csomagindexfájlok megsérültek. Nincs Filename: mező a(z) %s csomaghoz."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "A méret nem megfelelő"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "A(z) %s Release fájl nem dolgozható fel"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "A(z) %s Release fájl nem tartalmaz szakaszokat"
@@ -3316,32 +3260,32 @@ msgstr "%s hitelesítési rekordja nem található"
msgid "Hash mismatch for: %s"
msgstr "%s ellenőrzőösszege nem megfelelő"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "„%s†kiadás nem található ehhez: „%sâ€"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "„%s†verzió nem található ehhez: „%sâ€"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "„%s†feladat nem található"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Nem található csomag a(z) „%s†reguláris kifejezéssel"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "„%s†csomagból nem választható verzió, mert teljesen virtuális"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3350,19 +3294,19 @@ msgstr ""
"„%s†csomagból nem választható sem telepített, sem kiadásra jelölt verzió, "
"mert egyikkel sem rendelkezik"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"„%s†csomag legújabb verziója nem választható ki, mert teljesen virtuális"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"„%s†csomag kiadásra jelölt verziója nem választható ki, mert nincs jelöltje"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3388,110 +3332,131 @@ msgstr "A külső solver megfelelő hibaüzenet nélkül hibázott"
msgid "Execute external solver"
msgstr "Külső solver végrehajtása"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "A dpkg futtatása"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Néhány indexfájlt nem sikerült letölteni. Figyelmen kívül lettek hagyva, "
+"vagy régebbiek lettek felhasználva."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "%s telepítése"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "%s konfigurálása"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "%s eltávolítása"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "%s teljes eltávolítása"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "„%s†eltűnése feljegyezve"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "A(z) %s telepítés utáni trigger futtatása"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "A(z) „%s†könyvtár hiányzik"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "A(z) „%s†fájl megnyitása sikertelen"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "%s előkészítése"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "%s kicsomagolása"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "%s konfigurálásának előkészítése"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s telepítve"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, 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:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s eltávolítva"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "%s teljes eltávolításának előkészítése"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s teljesen eltávolítva"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Nem lehet írni ebbe: %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Nem írható a napló, sikertelen openpty() (a /dev/pts nincs csatolva?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "A dpkg futtatása"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "A művelet megszakadt, mielőtt befejeződhetett volna"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "Nem került írásra apport jelentés, mivel a MaxReports már elérve"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "függőségi hibák - a csomag beállítatlan maradt"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3499,7 +3464,7 @@ msgstr ""
"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint ez a hiba "
"egy korábbi hiba következménye."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3507,7 +3472,7 @@ msgstr ""
"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint megtelt a "
"lemez"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3515,7 +3480,15 @@ msgstr ""
"Nem került kiírásra apport jelentés, mivel a hibaüzenet memóriaelfogyási "
"hibát jelez"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Nem került kiírásra apport jelentés, mert a hibaüzenet a helyi rendszeren "
+"lévő hibát jelez"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3550,6 +3523,94 @@ msgstr ""
msgid "Not locked"
msgstr "Nincs zárolva"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Megjegyzés: „%s†kijelölése „%s†feladathoz\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Megjegyzés: „%s†kijelölése „%s†regexhez\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "%s egy virtuális csomag, melyet az alábbi csomagok biztosítanak:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Nem jelölt verzió]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Egyet név szerint ki kell jelölni a telepítésre."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "%s csomag nem elérhető, de egy másik hivatkozik rá.\n"
+#~ "A kért csomag hiányzik, elavult vagy csak más forrásból érhető el\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "De az alábbi csomagok helyettesítik:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "„%s†csomagnak nincs telepítésre jelölt verziója"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "A virtuális csomagokat, mint a(z) „%s†nem lehet eltávolítani\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "A(z) „%s†csomag nincs telepítve, így nem lett törölve. Erre gondolt: "
+#~ "„%s�\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "A(z) „%s†csomag nincs telepítve, így nem lett törölve\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Megjegyzés: „%s†kijelölése „%s†helyett\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "%s kihagyása, ez már telepítve van, és a frissítés nincs beállítva.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "„%s†kihagyása, nincs telepítve, és csak frissítések lettek kérve.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "%s újratelepítése nem lehetséges, mert nem lehet letölteni.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s már a legújabb verzió.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "„%s†(%s) verzió lett kijelölve ehhez: „%sâ€\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "„%s†(%s) verzió lett kijelölve ehhez: „%sâ€, a(z) „%s†miatt\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr ""
+#~ "A(z) „%2$s†csomag el nem érhető „%1$s†cél kiadásának figyelmen kívül "
+#~ "hagyása"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "Letöltés: %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "Érvénytelen DEB archívum, nincs „%sâ€, „%s†vagy „%s†tagja"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Az MD5Sum nem megfelelő"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Egy fájl nem található a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel "
+#~ "kell kijavítani a csomagot."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "Nem írható a napló, sikertelen openpty() (a /dev/pts nincs csatolva?)\n"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "A(z) %s fájl nem digitálisan aláírt üzenettel kezdődik"
@@ -3689,10 +3750,3 @@ msgstr "Nincs zárolva"
#~ msgid "Error occurred while processing %s (CollectFileProvides)"
#~ msgstr "Hiba történt %s feldolgozásakor (CollectFileProvides)"
-
-#~ msgid ""
-#~ "No apport report written because the error message indicates an issue on "
-#~ "the local system"
-#~ msgstr ""
-#~ "Nem került kiírásra apport jelentés, mert a hibaüzenet a helyi rendszeren "
-#~ "lévő hibát jelez"
diff --git a/po/it.po b/po/it.po
index abd5d6df2..9dcd8fa18 100644
--- a/po/it.po
+++ b/po/it.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2013-08-27 22:06+0200\n"
"Last-Translator: Milo Casagrande <milo@ubuntu.com>\n"
"Language-Team: Italian <tp@lists.linux.it>\n"
@@ -20,152 +20,154 @@ msgstr ""
"X-Launchpad-Export-Date: 2012-06-25 19:48+0000\n"
"X-Generator: Gtranslator 2.91.6\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Il pacchetto %s versione %s ha una dipendenza non soddisfatta:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Totale nomi dei pacchetti: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Totale strutture dei pacchetti: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Pacchetti normali: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Pacchetti virtuali puri: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Pacchetti virtuali singoli: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Pacchetti virtuali misti: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Mancante: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Totale versioni distinte: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Totale descrizioni distinte: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Totale dipendenze: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Totale relazioni ver/file: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Totale relazioni desc/file: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Totale corrispondenze fornite: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Totale stringhe globalizzate: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Totale spazio dipendenza di versione: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Totale spazio inutilizzato: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Totale spazio occupato: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Il file dei pacchetti %s non è sincronizzato."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Nessun pacchetto trovato"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "È necessario specificare almeno un modello per la ricerca"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
"Questo comando è deprecato. Utilizzare \"apt-mark showauto\" al suo posto."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Impossibile trovare il pacchetto %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "File dei pacchetti:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"La cache non è sincronizzata, impossibile referenziare un file di pacchetti"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Pacchetti con gancio:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(non trovato)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Installato: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Candidato: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(nessuno)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Gancio del pacchetto: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Tabella versione:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s per %s compilato il %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -239,7 +241,7 @@ msgstr ""
"apt.conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
@@ -252,28 +254,28 @@ msgstr ""
"CD-ROM. Per maggiori informazioni sull'autorilevamento e sul punto di mount\n"
"del CD-ROM, consultare \"man apt-cdrom\"."
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Dare un nome a questo disco, tipo \"Debian 5.0.3 Disco 1\""
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Inserire un disco nell'unità e premere Invio"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Mount di \"%s\" su \"%s\" non riuscito"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Ripetere questo processo per il resto dei CD."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argomenti non in coppia"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -301,568 +303,32 @@ msgstr ""
" -c=? Legge come configurazione il file specificato\n"
" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[S/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[s/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "S"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Errore di compilazione dell'espressione regolare - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "ma la versione %s è installata"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "ma la versione %s sta per essere installata"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "ma non è installabile"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "ma è un pacchetto virtuale"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "ma non è installato"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "ma non sta per essere installato"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " oppure"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "I seguenti pacchetti NUOVI saranno installati:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "I seguenti pacchetti saranno RIMOSSI:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "I seguenti pacchetti saranno aggiornati:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "I seguenti pacchetti saranno RETROCESSI:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "I seguenti pacchetti bloccati saranno cambiati:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (a causa di %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"ATTENZIONE: i seguenti pacchetti essenziali stanno per essere rimossi.\n"
-"Questo non dovrebbe essere fatto a meno che non si sappia esattamente cosa "
-"si sta facendo."
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu aggiornati, %lu installati, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstallati, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu retrocessi, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu da rimuovere e %lu non aggiornati.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu non completamente installati o rimossi.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Nota, viene selezionato \"%s\" per il task \"%s\"\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Nota, viene selezionato \"%s\" per l'espressione regolare \"%s\"\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Installato]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Versione non candidata]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "È necessario sceglierne uno da installare."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Il pacchetto %s non ha versioni disponibili, ma è nominato da un altro\n"
-"pacchetto. Questo potrebbe indicare che il pacchetto è mancante, obsoleto\n"
-"oppure è disponibile solo all'interno di un'altra sorgente\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Tuttavia questi pacchetti lo sostituiscono:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Il pacchetto \"%s\" non ha candidati da installare"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Pacchetti virtuali come \"%s\" non possono essere rimossi\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"Il pacchetto \"%s\" non è installato e quindi non è stato rimosso: si "
-"intendeva \"%s\"?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, 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:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Nota, viene selezionato \"%s\" al posto di \"%s\"\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"Viene saltato %s poiché non è installato e sono richiesti solo gli "
-"aggiornamenti.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s è già alla versione più recente.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "È stato impostato %s per l'installazione manuale.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Versione \"%s\" (%s) selezionata per \"%s\"\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Versione \"%s\" (%s) selezionata per \"%s\" per via di \"%s\"\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Correzione delle dipendenze..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " non riuscita."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Impossibile correggere le dipendenze"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Impossibile minimizzare l'insieme da aggiornare"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Fatto"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "È utile eseguire \"apt-get -f install\" per correggere ciò."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dipendenze non trovate. Riprovare usando -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati."
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Avviso di autenticazione disabilitato.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Installare questi pacchetti senza verificarli?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Alcuni pacchetti non possono essere autenticati"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-"Errore interno, InstallPackages è stato chiamato con un pacchetto "
-"danneggiato."
-
-#: cmdline/apt-get.cc:1169
-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:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Errore interno, l'ordinamento non è stato terminato"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Le dimensioni non corrispondono. Inviare un'email a: apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "È necessario scaricare %sB/%sB di archivi.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "È necessario scaricare %sB di archivi.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Dopo quest'operazione, verranno occupati %sB di spazio su disco.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Impossibile determinare lo spazio libero in %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Spazio libero in %s insufficiente."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"È stata specificata la modalità \"Trivial Only\", ma questa non è "
-"un'operazione banale."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Sì, esegui come da richiesta."
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Si sta per compiere un'azione potenzialmente pericolosa.\n"
-"Per continuare scrivere la frase \"%s\"\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Interrotto."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Continuare?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Impossibile recuperare %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Scaricamento di alcuni file non riuscito"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Scaricamento completato e in modalità solo scaricamento"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Impossibile scaricare alcuni pacchetti. Potrebbe essere utile eseguire \"apt-"
-"get update\" o provare l'opzione \"--fix-missing\"."
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing su supporti estraibili non è ancora supportato"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Impossibile correggere i pacchetti mancanti."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Interruzione dell'installazione."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Il seguente pacchetto è sparito dal sistema poiché\n"
-"tutti i file sono stati sovrascritti da altri pacchetti:"
-msgstr[1] ""
-"I seguenti pacchetti sono spariti dal sistema poiché\n"
-"tutti i file sono stati sovrascritti da altri pacchetti:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Nota: questo viene svolto automaticamente e volutamente da dpkg."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Ignorato il rilascio non disponibile \"%s\" del pacchetto \"%s\""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Scelto \"%s\" come pacchetto sorgente al posto di \"%s\"\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Ignorata la versione \"%s\" non disponibile del pacchetto \"%s\""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Il comando update non accetta argomenti"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Sembra che AutoRemover abbia rovinato qualcosa e questo\n"
-"non doveva accadere. Segnalare un bug riguardo apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Errore interno, AutoRemover ha rovinato qualche cosa"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Il seguente pacchetto è stato installato automaticamente e non è più "
-"richiesto:"
-msgstr[1] ""
-"I seguenti pacchetti sono stati installati automaticamente e non sono più "
-"richiesti:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"%lu pacchetto è stato installato automaticamente e non è più richiesto.\n"
-msgstr[1] ""
-"%lu pacchetti sono stati installati automaticamente e non sono più "
-"richiesti.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Usare \"apt-get autoremove\" per rimuoverlo."
-msgstr[1] "Usare \"apt-get autoremove\" per rimuoverli."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Errore interno, AllUpgrade ha rovinato qualche cosa"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti "
-"(o specificare una soluzione)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Alcuni pacchetti non possono essere installati. Questo può voler dire\n"
-"che è stata richiesta una situazione impossibile oppure, se si sta\n"
-"usando una distribuzione in sviluppo, che alcuni pacchetti richiesti\n"
-"non sono ancora stati creati o sono stati rimossi da Incoming."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Pacchetti danneggiati"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "I seguenti pacchetti saranno inoltre installati:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Pacchetti suggeriti:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Pacchetti raccomandati:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Impossibile trovare il pacchetto %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "È stato impostato %s per l'installazione manuale.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s impostato automaticamente come installato.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -870,48 +336,25 @@ msgstr ""
"Questo comando è deprecato. Utilizzare \"apt-mark auto\" e \"apt-mark manual"
"\" al suo posto."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Calcolo dell'aggiornamento... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Non riuscito"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Eseguito"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Errore interno, \"problem resolver\" ha rovinato qualcosa"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Impossibile bloccare la directory di scaricamento"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-"Impossibile trovare una sorgente per scaricare la versione \"%s\" di \"%s\""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "Scaricamento di %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Impossibile trovare un pacchetto sorgente per %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -921,7 +364,7 @@ msgstr ""
"all'interno del sistema di controllo della versione \"%s\" presso:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -933,70 +376,80 @@ msgstr ""
"per recuperare gli ultimi (forse non rilasciati) aggiornamenti del "
"pacchetto.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Impossibile determinare lo spazio libero in %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Lo spazio libero in %s è insufficiente"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "È necessario recuperare %sB/%sB di sorgenti.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "È necessario scaricare %sB di sorgenti.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Recupero sorgente %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Recupero di alcuni archivi non riuscito."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Scaricamento completato e in modalità solo scaricamento"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Comando di estrazione \"%s\" non riuscito.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Comando \"%s\" di generazione non riuscito.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Creazione processo figlio non riuscita"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -1005,17 +458,17 @@ msgstr ""
"Informazioni sull'architettura non disponibili per %s. Consultare apt."
"conf(5) APT::Architectures per l'impostazione"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s non ha dipendenze di generazione.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1024,7 +477,7 @@ msgstr ""
"La dipendenza %s per %s non può essere soddisfatta perché %s non è "
"consentito su pacchetti \"%s\""
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1033,14 +486,14 @@ msgstr ""
"%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s "
"non può essere trovato"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"La dipendenza %s per %s non è stata soddisfatta: il pacchetto installato %s "
"è troppo recente"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1049,7 +502,7 @@ msgstr ""
"La dipendenza %s per %s non può essere soddisfatta perché la versione "
"candidata del pacchetto %s non può soddisfare i requisiti di versione"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1058,30 +511,30 @@ msgstr ""
"La dipendenza %s per %s non può essere soddisfatta perché il pacchetto %s "
"non ha una versione candidata"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, 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:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Elaborazione delle dipendenze di generazione non riuscita"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Changelog per %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Moduli supportati:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1171,103 +624,53 @@ 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:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"Nota: questa è solo una simulazione.\n"
-" apt-get necessita dei privilegi di root per la normale esecuzione.\n"
-" Inoltre, il meccanismo di blocco non è attivato e non è quindi\n"
-" utile dare importanza a tutto ciò per una situazione reale."
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Trovato "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Scaricamento di:"
-
-# (ndt) questa non so cosa voglia dire
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Recuperati %sB in %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [In lavorazione]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Cambio disco: inserire il disco chiamato\n"
-" \"%s\"\n"
-"nell'unità \"%s\" e premere Invio\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s non può essere segnato perché non è installato.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s è già stato impostato come installato manualmente.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s è già stato impostato come installato automaticamente.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s è già stato impostato come bloccato.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s era già non bloccato.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "In attesa di %s ma non era presente"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s impostato come bloccato.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "Blocco su %s annullato.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "Esecuzione di dpkg non riuscita. È stato lanciato come root?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1310,6 +713,23 @@ msgstr ""
"Per maggiori informazioni, consultare le pagine di manuale apt-mark(8) e\n"
"apt.conf(5)."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1408,8 +828,8 @@ msgstr "Connessione scaduta"
msgid "Server closed the connection"
msgstr "Il server ha chiuso la connessione"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Errore di lettura"
@@ -1422,8 +842,8 @@ msgid "Protocol corruption"
msgstr "Protocollo danneggiato"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Errore di scrittura"
@@ -1436,6 +856,10 @@ msgid "Could not connect data socket, connection timed out"
msgstr ""
"Impossibile connettersi al socket dati, tempo esaurito per la connessione"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Non riuscito"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Impossibile connettersi alla socket passiva."
@@ -1478,7 +902,7 @@ msgstr "Connessione al socket dati terminata"
msgid "Unable to accept connection"
msgstr "Impossibile accettare connessioni"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Si è verificato un problema nel creare l'hash del file"
@@ -1615,81 +1039,614 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "File vuoti non possono essere archivi validi"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Errore nello scrivere sul file"
+
+#: methods/http.cc:533
+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:535
+msgid "Error reading from server"
+msgstr "Errore nel leggere dal server"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Errore nello scrivere su file"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Select non riuscita"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Connessione terminata"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Errore nello scrivere sul file di output"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "In attesa degli header"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Riga header non corretta"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "Il server HTTP ha inviato un header di risposta non valido"
-#: methods/http.cc:606
+#: methods/server.cc:176
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:621
+#: methods/server.cc:199
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:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Questo server HTTP ha un supporto del range non corretto"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Formato della data sconosciuto"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Select non riuscita"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Header dati non corretto"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Connessione terminata"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Connessione non riuscita"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Errore nello scrivere sul file di output"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Errore interno"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Errore nello scrivere su file"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Errore nello scrivere sul file"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+"Errore interno, InstallPackages è stato chiamato con un pacchetto "
+"danneggiato."
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Errore nel leggere dal server. Il lato remoto ha chiuso la connessione"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr ""
+"I pacchetti devono essere rimossi, ma l'azione di rimozione è disabilitata."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Errore nel leggere dal server"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Errore interno, l'ordinamento non è stato terminato"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Header dati non corretto"
+#: apt-private/private-install.cc:159
+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"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Connessione non riuscita"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "È necessario scaricare %sB/%sB di archivi.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Errore interno"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "È necessario scaricare %sB di archivi.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Dopo quest'operazione, verranno occupati %sB di spazio su disco.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Dopo quest'operazione, verranno liberati %sB di spazio su disco.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Spazio libero in %s insufficiente."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Si sono verificati dei problemi ed è stata usata -y senza --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"È stata specificata la modalità \"Trivial Only\", ma questa non è "
+"un'operazione banale."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Sì, esegui come da richiesta."
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Si sta per compiere un'azione potenzialmente pericolosa.\n"
+"Per continuare scrivere la frase \"%s\"\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Interrotto."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Continuare?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Scaricamento di alcuni file non riuscito"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Impossibile scaricare alcuni pacchetti. Potrebbe essere utile eseguire \"apt-"
+"get update\" o provare l'opzione \"--fix-missing\"."
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing su supporti estraibili non è ancora supportato"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Impossibile correggere i pacchetti mancanti."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Interruzione dell'installazione."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Il seguente pacchetto è sparito dal sistema poiché\n"
+"tutti i file sono stati sovrascritti da altri pacchetti:"
+msgstr[1] ""
+"I seguenti pacchetti sono spariti dal sistema poiché\n"
+"tutti i file sono stati sovrascritti da altri pacchetti:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Nota: questo viene svolto automaticamente e volutamente da dpkg."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+"Non si è autorizzati a rimuovere nulla, impossibile avviare AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Sembra che AutoRemover abbia rovinato qualcosa e questo\n"
+"non doveva accadere. Segnalare un bug riguardo apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Errore interno, AutoRemover ha rovinato qualche cosa"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Il seguente pacchetto è stato installato automaticamente e non è più "
+"richiesto:"
+msgstr[1] ""
+"I seguenti pacchetti sono stati installati automaticamente e non sono più "
+"richiesti:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"%lu pacchetto è stato installato automaticamente e non è più richiesto.\n"
+msgstr[1] ""
+"%lu pacchetti sono stati installati automaticamente e non sono più "
+"richiesti.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Usare \"apt-get autoremove\" per rimuoverlo."
+msgstr[1] "Usare \"apt-get autoremove\" per rimuoverli."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+"È utile eseguire \"apt-get -f install\" per correggere questi problemi:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti "
+"(o specificare una soluzione)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Alcuni pacchetti non possono essere installati. Questo può voler dire\n"
+"che è stata richiesta una situazione impossibile oppure, se si sta\n"
+"usando una distribuzione in sviluppo, che alcuni pacchetti richiesti\n"
+"non sono ancora stati creati o sono stati rimossi da Incoming."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Pacchetti danneggiati"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "I seguenti pacchetti saranno inoltre installati:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Pacchetti suggeriti:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Pacchetti raccomandati:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati."
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Avviso di autenticazione disabilitato.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Alcuni pacchetti non possono essere autenticati"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Installare questi pacchetti senza verificarli?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Impossibile recuperare %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Installato]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Installato]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Installato]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "ma la versione %s è installata"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "ma la versione %s sta per essere installata"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "ma non è installabile"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "ma è un pacchetto virtuale"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "ma non è installato"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "ma non sta per essere installato"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " oppure"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "I seguenti pacchetti NUOVI saranno installati:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "I seguenti pacchetti saranno RIMOSSI:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "I seguenti pacchetti saranno aggiornati:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "I seguenti pacchetti saranno RETROCESSI:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "I seguenti pacchetti bloccati saranno cambiati:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (a causa di %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ATTENZIONE: i seguenti pacchetti essenziali stanno per essere rimossi.\n"
+"Questo non dovrebbe essere fatto a meno che non si sappia esattamente cosa "
+"si sta facendo."
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu aggiornati, %lu installati, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstallati, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu retrocessi, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu da rimuovere e %lu non aggiornati.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu non completamente installati o rimossi.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[S/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[s/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "S"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Errore di compilazione dell'espressione regolare - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Correzione delle dipendenze..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " non riuscita."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Impossibile correggere le dipendenze"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Impossibile minimizzare l'insieme da aggiornare"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Fatto"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "È utile eseguire \"apt-get -f install\" per correggere ciò."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dipendenze non trovate. Riprovare usando -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Il comando update non accetta argomenti"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Calcolo dell'aggiornamento... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Errore interno, AllUpgrade ha rovinato qualche cosa"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Eseguito"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"Nota: questa è solo una simulazione.\n"
+" apt-get necessita dei privilegi di root per la normale esecuzione.\n"
+" Inoltre, il meccanismo di blocco non è attivato e non è quindi\n"
+" utile dare importanza a tutto ciò per una situazione reale."
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Rinomina di %s in %s non riuscita"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Trovato "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Scaricamento di:"
+
+# (ndt) questa non so cosa voglia dire
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Recuperati %sB in %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [In lavorazione]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Cambio disco: inserire il disco chiamato\n"
+" \"%s\"\n"
+"nell'unità \"%s\" e premere Invio\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Impossibile leggere %s"
@@ -1752,37 +1709,37 @@ msgstr "Creazione di una pipe IPC verso il sottoprocesso non riuscita"
msgid "Connection closed prematurely"
msgstr "Connessione chiusa prematuramente"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Impostazione predefinita errata."
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Premere Invio per continuare."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Eliminare tutti i file .deb precedentemente scaricati?"
# Note to translators: The following four messages belong together. It doesn't
# matter where sentences start, but it has to fit in just these four lines, and
# at only 80 characters per line, if possible.
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
"Si sono verificati alcuni errori nell'estrazione. Verrà tentata la "
"configurazione"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "dei pacchetti installati. Questo potrebbe generare errori duplicati"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "o errori causati da dipendenze mancanti. Questo non causa problemi,"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -2036,36 +1993,36 @@ msgstr "Esecuzione di readlink su %s non riuscita"
msgid "Failed to unlink %s"
msgstr "Esecuzione di unlink su %s non riuscita"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Collegamento di %s a %s non riuscito"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Raggiunto il limite di DeLink di %sB.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "L'archivio non ha un campo \"package\""
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s non ha un campo override\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " il responsabile di %s è %s non %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s non ha un campo source override\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s non ha neppure un campo binario override\n"
@@ -2144,7 +2101,7 @@ msgstr "Problema nell'unlink di %s"
msgid "Failed to rename %s to %s"
msgstr "Rinomina di %s in %s non riuscita"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2212,7 +2169,7 @@ msgstr "Archivio danneggiato"
msgid "Tar checksum failed, archive corrupted"
msgstr "Checksum di tar non riuscito, archivio danneggiato"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Intestazione TAR di tipo %u sconosciuta, member %s"
@@ -2337,23 +2294,17 @@ msgid "Unable to stat %s"
msgstr "Impossibile eseguire stat su %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Questo non è un archivio DEB valido: membro \"%s\" mancante"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Questo non è un archivio DEB valido: membri \"%s\", \"%s\" o \"%s\" mancanti"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Errore interno, impossibile trovare il membro %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "File \"control\" non analizzabile"
@@ -2415,90 +2366,90 @@ msgstr ""
"ridimensionamento automatico è stato disabilitato dall'utente."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lih %limin %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Selezione %s non trovata"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Tipo di abbreviazione non riconosciuto: \"%c\""
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Apertura file di configurazione %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Errore di sintassi %s:%u: tag non corretto"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Errore di sintassi %s:%u: incluso da qui"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Errore di sintassi %s:%u: direttiva \"%s\" non supportata"
# (ndt) sarebbe da controllare meglio...
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Errore di sintassi %s:%u: la direttiva clear richiede un albero di opzioni "
"come argomento"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, 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"
@@ -2523,50 +2474,50 @@ msgstr "..."
msgid "%c%s... %u%%"
msgstr "%c%s... %u%%"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Opzione a riga di comando \"%c\" [da %s] sconosciuta."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Opzione a riga di comando %s non comprensibile"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Opzione a riga di comando %s non booleana"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "L'opzione %s richiede un argomento."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"Opzione %s: la specifica di configurazione dell'oggetto deve avere un "
"=<valore>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "L'opzione %s richiede un argomento intero, non \"%s\""
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Opzione \"%s\" troppo lunga"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Il valore %s non è comprensibile, provare \"true\" o \"false\"."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Operazione %s non valida"
@@ -2580,51 +2531,51 @@ msgstr "Impossibile eseguire stat sul punto di mount %s"
msgid "Failed to stat the cdrom"
msgstr "Esecuzione di stat sul CD-ROM non riuscita"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Si è verificato un problema nel chiudere il file gzip %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Blocco disabilitato per il file di blocco in sola lettura %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Impossibile aprire il file di blocco %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Blocco disabilitato per il file di blocco %s montato via nfs"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Impossibile impostare il blocco %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
"L'elenco dei file non può essere creato poiché \"%s\" non è una directory"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
"Viene ignorato \"%s\" nella directory \"%s\" poiché non è un file regolare"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
"Viene ignorato il file \"%s\" nella directory \"%s\" poiché non ha "
"un'estensione"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
@@ -2632,70 +2583,70 @@ msgstr ""
"Viene ignorato il file \"%s\" nella directory \"%s\" poiché ha un'estensione "
"non valida"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Il sottoprocesso %s ha ricevuto il segnale %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Il sottoprocesso %s è uscito inaspettatamente"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Impossibile aprire il file %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Impossibile aprire il descrittore del file %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Creazione di un sottoprocesso IPC non riuscita"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Esecuzione non riuscita del compressore "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "lettura, ancora %llu da leggere, ma non è stato trovato nulla"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "scrittura, ancora %llu da scrivere, ma non è possibile"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Si è verificato un problema nel chiudere il file %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Si è verificato un problema nel rinominare il file %s in %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Si è verificato un problema nell'eseguire l'unlink del file %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Si è verificato un problema nel sincronizzare il file"
@@ -2813,12 +2764,12 @@ msgstr "Apertura del file di stato %s non riuscita"
msgid "Failed to write temporary StateFile %s"
msgstr "Scrittura del file temporaneo di stato %s non riuscita"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Impossibile analizzare il file di pacchetto %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Impossibile analizzare il file di pacchetto %s (2)"
@@ -2903,7 +2854,7 @@ msgstr "La riga %u nel file %s non è corretta (type)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2913,12 +2864,12 @@ msgstr ""
"maggiori informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::"
"Immediate-Configure\" (%d)."
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "Impossibile configurare \"%s\". "
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2943,7 +2894,7 @@ msgstr ""
"Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un "
"archivio."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2951,19 +2902,11 @@ msgstr ""
"Errore, pkgProblemResolver::Resolve ha generato delle interruzioni. Questo "
"potrebbe essere causato da pacchetti bloccati."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr ""
"Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Impossibile scaricare alcuni file di indice: saranno ignorati o verranno "
-"usati quelli vecchi."
-
# (ndt) sarebbe da controllare meglio assieme a quella dopo
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
@@ -3007,12 +2950,12 @@ msgstr "Il metodo %s non si è avviato correttamente"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Inserire il disco chiamato \"%s\" nell'unità \"%s\" e premere Invio."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Il sistema di pacchetti \"%s\" non è supportato"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Impossibile determinare un tipo di sistema appropriato di pacchetti"
@@ -3049,19 +2992,19 @@ msgstr ""
"Il valore \"%s\" non è valido per APT::Default-Release poiché tale release "
"non è disponibile dalle sorgenti"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr ""
"Campo non valido nel file delle preferenze %s, manca l'intestazione \"Package"
"\""
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Impossibile comprendere il tipo di gancio %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Priorità per il gancio non specificata (o zero)"
@@ -3133,16 +3076,20 @@ msgstr "Errore di I/O nel salvare la cache sorgente"
msgid "rename failed, %s (%s -> %s)."
msgstr "rename() non riuscita: %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5sum non corrispondente"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Somma hash non corrispondente"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Le dimensioni non corrispondono"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Operazione %s non valida"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3151,17 +3098,17 @@ msgstr ""
"Impossibile trovare la voce \"%s\" nel file Release (voce in sources.list "
"errata o file danneggiato)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Impossibile trovare la somma hash per \"%s\" nel file Release"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3170,12 +3117,12 @@ msgstr ""
"Il file Release per %s è scaduto (non valido dal %s). Gli aggiornamenti per "
"questo repository non verranno applicati."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3185,12 +3132,12 @@ msgstr ""
"aggiornato e verranno usati i file indice precedenti. Errore GPG: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Errore GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3199,17 +3146,14 @@ msgstr ""
"Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario "
"sistemare manualmente questo pacchetto (a causa dell'architettura mancante)."
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario "
-"correggere manualmente questo pacchetto."
+"Impossibile trovare una sorgente per scaricare la versione \"%s\" di \"%s\""
# (ndt) sarebbe da controllare se veramente possono esistere più file indice
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3217,16 +3161,12 @@ msgstr ""
"I file indice del pacchetto sono danneggiati. Manca il campo \"Filename:\" "
"per il pacchetto %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Le dimensioni non corrispondono"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Impossibile analizzare il file Release %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Nessuna sezione nel file Release %s"
@@ -3373,35 +3313,35 @@ msgid "Hash mismatch for: %s"
msgstr "Hash non corrispondente per %s"
# (ndt) dovrebbe essere inteso il file Release
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Release \"%s\" per \"%s\" non trovato."
# (ndt) dovrebbe essere inteso il Version
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Version \"%s\" per \"%s\" non trovato"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Impossibile trovare il task \"%s\""
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr ""
"Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\""
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
"Impossibile selezionare le versioni dal pacchetto \"%s\" poiché è virtuale"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3410,21 +3350,21 @@ msgstr ""
"Impossibile selezionare la versione installata o la candidata dal pacchetto "
"\"%s\" poiché non sono presenti"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Impossibile selezionare la versione più recente dal pacchetto \"%s\" poiché "
"è virtuale"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Impossibile selezionare la versione candidata dal pacchetto %s poiché non ha "
"alcun candidato"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3451,113 +3391,133 @@ msgstr "Il solver esterno è terminato senza un errore di messaggio"
msgid "Execute external solver"
msgstr "Esecuzione solver esterno"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Esecuzione di dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Impossibile scaricare alcuni file di indice: saranno ignorati o verranno "
+"usati quelli vecchi."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Installazione di %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Configurazione di %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Rimozione di %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "Rimozione completa di %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Notata la sparizione di %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Esecuzione comando di post installazione %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Directory \"%s\" mancante"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Impossibile aprire il file \"%s\""
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Preparazione di %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Estrazione di %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Preparazione alla configurazione di %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Pacchetto %s installato"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Preparazione alla rimozione di %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Pacchetto %s rimosso"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Preparazione alla rimozione completa di %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Pacchetto %s rimosso completamente"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Impossibile scrivere in %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Impossibile scrivere il registro, openpty() non riuscita (forse /dev/pts non "
-"è montato)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Esecuzione di dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "L'operazione è stata interrotta prima di essere completata"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
"Segnalazione apport non scritta poiché è stato raggiunto il valore massimo "
"di MaxReports"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "Problemi con le dipendenze - Viene lasciato non configurato"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3565,7 +3525,7 @@ msgstr ""
"Segnalazione apport non scritta poiché il messaggio di errore indica la "
"presenza di un fallimento precedente."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3573,7 +3533,7 @@ msgstr ""
"Segnalazione apport non scritta poiché il messaggio di errore indica un "
"errore per disco pieno."
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3581,7 +3541,16 @@ msgstr ""
"Segnalazione apport non scritta poiché il messaggio di errore indica un "
"errore di memoria esaurita"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Segnalazione apport non scritta poiché il messaggio di errore indica un "
+"errore per disco pieno."
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3617,3 +3586,97 @@ msgstr ""
#: apt-pkg/deb/debsystem.cc:121
msgid "Not locked"
msgstr "Non bloccato"
+
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Nota, viene selezionato \"%s\" per il task \"%s\"\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Nota, viene selezionato \"%s\" per l'espressione regolare \"%s\"\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Il pacchetto %s è un pacchetto virtuale fornito da:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Versione non candidata]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "È necessario sceglierne uno da installare."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Il pacchetto %s non ha versioni disponibili, ma è nominato da un altro\n"
+#~ "pacchetto. Questo potrebbe indicare che il pacchetto è mancante, "
+#~ "obsoleto\n"
+#~ "oppure è disponibile solo all'interno di un'altra sorgente\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Tuttavia questi pacchetti lo sostituiscono:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Il pacchetto \"%s\" non ha candidati da installare"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Pacchetti virtuali come \"%s\" non possono essere rimossi\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Il pacchetto \"%s\" non è installato e quindi non è stato rimosso: si "
+#~ "intendeva \"%s\"?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Il pacchetto \"%s\" non è installato e quindi non è stato rimosso\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Nota, viene selezionato \"%s\" al posto di \"%s\"\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "Viene saltato %s poiché è già installato e l'aggiornamento non è "
+#~ "impostato.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Viene saltato %s poiché non è installato e sono richiesti solo gli "
+#~ "aggiornamenti.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr ""
+#~ "La reinstallazione di %s non è possibile, non può essere scaricato.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s è già alla versione più recente.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Versione \"%s\" (%s) selezionata per \"%s\"\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Versione \"%s\" (%s) selezionata per \"%s\" per via di \"%s\"\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Ignorato il rilascio non disponibile \"%s\" del pacchetto \"%s\""
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "Scaricamento di %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Questo non è un archivio DEB valido: membri \"%s\", \"%s\" o \"%s\" "
+#~ "mancanti"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5sum non corrispondente"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Impossibile trovare un file per il pacchetto %s. Potrebbe essere "
+#~ "necessario correggere manualmente questo pacchetto."
+
+#~ 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"
diff --git a/po/ja.po b/po/ja.po
index 97c476b09..f74d7611c 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.9.9.4\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2013-08-11 19:39+0900\n"
"Last-Translator: Kenshi Muto <kmuto@debian.org>\n"
"Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n"
@@ -18,151 +18,153 @@ msgstr ""
"Content-Transfer-Encoding: 8 bit\n"
"Plural-Forms: Plural-Forms: nplurals=1; plural=0;\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "パッケージ %s ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %s ã«ã¯è§£æ±ºä¸å¯èƒ½ãªä¾å­˜é–¢ä¿‚ãŒã‚ã‚Šã¾ã™:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "パッケージåç·æ•°: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "パッケージ構造ç·æ•°: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " 通常パッケージ: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " 純粋仮想パッケージ: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " å˜ä¸€ä»®æƒ³ãƒ‘ッケージ: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " 複åˆä»®æƒ³ãƒ‘ッケージ: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " 欠è½: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "個別ãƒãƒ¼ã‚¸ãƒ§ãƒ³ç·æ•°: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "個別説明ç·æ•°: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "ä¾å­˜é–¢ä¿‚ç·æ•°: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³/ファイル関係ç·æ•°: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "説明/ファイル関係ç·æ•°: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "æ供マッピングç·æ•°: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Glob 文字列ã®ç·æ•°: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "ç·ä¾å­˜é–¢ä¿‚・ãƒãƒ¼ã‚¸ãƒ§ãƒ³å®¹é‡: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "ç·ç©ºã容é‡: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "ç·å æœ‰å®¹é‡: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Package ファイル %s ãŒåŒæœŸã—ã¦ã„ã¾ã›ã‚“。"
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "パッケージãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "検索パターンã¯ã¡ã‚‡ã†ã© 1 ã¤ã ã‘指定ã—ã¦ãã ã•ã„"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
"ã“ã®ã‚³ãƒžãƒ³ãƒ‰ã¯æ™‚代é…ã‚Œã§ã™ã€‚'apt-mark showauto' を代ã‚ã‚Šã«ä½¿ç”¨ã—ã¦ãã ã•ã„。"
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "パッケージ %s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "パッケージファイル:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "キャッシュãŒåŒæœŸã—ã¦ãŠã‚‰ãšã€ãƒ‘ッケージファイルを相互å‚ç…§ã§ãã¾ã›ã‚“"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Pin ã•ã‚ŒãŸãƒ‘ッケージ:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(見ã¤ã‹ã‚Šã¾ã›ã‚“)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " インストールã•ã‚Œã¦ã„ã‚‹ãƒãƒ¼ã‚¸ãƒ§ãƒ³: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " 候補: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ãªã—)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " パッケージ Pin: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãƒ†ãƒ¼ãƒ–ル:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s for %s コンパイル日時: %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -233,7 +235,7 @@ msgstr ""
"詳細ã¯ã€apt-cache(8) ã‚„ apt.conf(5) ã®ãƒžãƒ‹ãƒ¥ã‚¢ãƒ«ãƒšãƒ¼ã‚¸ã‚’å‚ç…§ã—ã¦ãã ã•ã„。\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
@@ -244,29 +246,29 @@ msgstr ""
"を試ã™ã“ã¨ãŒã§ãã¾ã™ã€‚CD-ROM ã®è‡ªå‹•æ¤œå‡ºãŠã‚ˆã³ãƒžã‚¦ãƒ³ãƒˆãƒã‚¤ãƒ³ãƒˆã®è©³ç´°ã«ã¤ã„ã¦"
"ã¯ã€'man apt-cdrom' ã‚’å‚ç…§ã—ã¦ãã ã•ã„。"
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "ã“ã®ãƒ‡ã‚£ã‚¹ã‚¯ã«ã€'Debian 5.0.3 Disk 1' ã®ã‚ˆã†ãªåå‰ã‚’付ã‘ã¦ãã ã•ã„"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "ディスクをドライブã«å…¥ã‚Œã¦ Enter キーを押ã—ã¦ãã ã•ã„"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "'%s' ã‚’ '%s' ã«ãƒžã‚¦ãƒ³ãƒˆã§ãã¾ã›ã‚“ã§ã—ãŸ"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr ""
"ã‚ãªãŸã®æŒã£ã¦ã„ã‚‹ CD セットã®æ®‹ã‚Šå…¨éƒ¨ã«ã€ã“ã®æ‰‹é †ã‚’ç¹°ã‚Šè¿”ã—ã¦ãã ã•ã„。"
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "引数ãŒãƒšã‚¢ã§ã¯ã‚ã‚Šã¾ã›ã‚“"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -294,556 +296,32 @@ msgstr ""
" -c=? 指定ã—ãŸè¨­å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’読ã¿è¾¼ã‚€\n"
" -o=? 指定ã—ãŸè¨­å®šã‚ªãƒ—ションをé©ç”¨ã™ã‚‹ (例: -o dir::cache=/tmp)\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[Y/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[y/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "Y"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "æ­£è¦è¡¨ç¾ã®å±•é–‹ã‚¨ãƒ©ãƒ¼ - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "以下ã®ãƒ‘ッケージã«ã¯æº€ãŸã›ãªã„ä¾å­˜é–¢ä¿‚ãŒã‚ã‚Šã¾ã™:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "ã—ã‹ã—ã€%s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã™"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "ã—ã‹ã—ã€%s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã‚ˆã†ã¨ã—ã¦ã„ã¾ã™"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "ã—ã‹ã—ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "ã—ã‹ã—ã€ã“ã‚Œã¯ä»®æƒ³ãƒ‘ッケージã§ã™"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "ã—ã‹ã—ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã›ã‚“"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "ã—ã‹ã—ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã‚ˆã†ã¨ã—ã¦ã„ã¾ã›ã‚“"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " ã¾ãŸã¯"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "以下ã®ãƒ‘ッケージãŒæ–°ãŸã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã™:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "以下ã®ãƒ‘ッケージã¯ã€Œå‰Šé™¤ã€ã•ã‚Œã¾ã™:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "以下ã®ãƒ‘ッケージã¯ä¿ç•™ã•ã‚Œã¾ã™:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "以下ã®ãƒ‘ッケージã¯ã‚¢ãƒƒãƒ—グレードã•ã‚Œã¾ã™:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "以下ã®ãƒ‘ッケージã¯ã€Œãƒ€ã‚¦ãƒ³ã‚°ãƒ¬ãƒ¼ãƒ‰ã€ã•ã‚Œã¾ã™:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "以下ã®å¤‰æ›´ç¦æ­¢ãƒ‘ッケージã¯å¤‰æ›´ã•ã‚Œã¾ã™:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (%s ã®ãŸã‚) "
-
-#: cmdline/apt-get.cc:600
-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"
-"何をã—よã†ã¨ã—ã¦ã„ã‚‹ã‹æœ¬å½“ã«ã‚ã‹ã£ã¦ã„ãªã„å ´åˆã¯ã€å®Ÿè¡Œã—ã¦ã¯ã„ã‘ã¾ã›ã‚“!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "アップグレード: %lu 個ã€æ–°è¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«: %lu 個ã€"
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "å†ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«: %lu 個ã€"
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "ダウングレード: %lu 個ã€"
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "削除: %lu 個ã€ä¿ç•™: %lu 個。\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu 個ã®ãƒ‘ッケージãŒå®Œå…¨ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã¾ãŸã¯å‰Šé™¤ã•ã‚Œã¦ã„ã¾ã›ã‚“。\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "注æ„: タスク '%2$s' ã«å¯¾ã—㦠'%1$s' ã‚’é¸æŠžã—ã¦ã„ã¾ã™\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "注æ„: æ­£è¦è¡¨ç¾ '%2$s' ã«å¯¾ã—㦠'%1$s' ã‚’é¸æŠžã—ã¦ã„ã¾ã™\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "%s ã¯ä»¥ä¸‹ã®ãƒ‘ッケージã§æä¾›ã•ã‚Œã¦ã„る仮想パッケージã§ã™:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [インストール済ã¿]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr "[候補ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãªã—]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "インストールã™ã‚‹ãƒ‘ッケージを明示的ã«é¸æŠžã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚"
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"パッケージ %s ã¯ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã«ã¯å­˜åœ¨ã—ã¾ã™ãŒã€åˆ©ç”¨ã§ãã¾ã›ã‚“。\n"
-"ãŠãらãã€ãã®ãƒ‘ッケージãŒè¦‹ã¤ã‹ã‚‰ãªã„ã‹ã€ã‚‚ã†å¤ããªã£ã¦ã„ã‚‹ã‹ã€\n"
-"ã‚ã‚‹ã„ã¯åˆ¥ã®ã‚½ãƒ¼ã‚¹ã‹ã‚‰ã®ã¿ã—ã‹åˆ©ç”¨ã§ããªã„ã¨ã„ã†çŠ¶æ³ãŒè€ƒãˆã‚‰ã‚Œã¾ã™\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "ã—ã‹ã—ã€ä»¥ä¸‹ã®ãƒ‘ッケージã§ç½®ãæ›ãˆã‚‰ã‚Œã¦ã„ã¾ã™:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "パッケージ '%s' ã«ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«å€™è£œãŒã‚ã‚Šã¾ã›ã‚“"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "'%s' ã®ã‚ˆã†ãªä»®æƒ³ãƒ‘ッケージã¯å‰Šé™¤ã§ãã¾ã›ã‚“\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"パッケージ %s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ãªã„ãŸã‚ã€å‰Šé™¤ã¯ã§ãã¾ã›ã‚“。'%s' ã®ã“ã¨ã§"
-"ã—ょã†ã‹?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "パッケージ '%s' ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ãªã„ãŸã‚ã€å‰Šé™¤ã¯ã§ãã¾ã›ã‚“\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "注æ„ã€'%2$s' ã®ä»£ã‚ã‚Šã« '%1$s' ã‚’é¸æŠžã—ã¦ã„ã¾ã™\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"ã™ã§ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ãŠã‚Šã‚¢ãƒƒãƒ—グレードも設定ã•ã‚Œã¦ã„ãªã„ãŸã‚ã€%s をスキッ"
-"プã—ã¾ã™ã€‚\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"%s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ãªã„ã®ã«ã‚¢ãƒƒãƒ—グレードã ã‘ãŒè¦æ±‚ã•ã‚Œã¦ã„ã‚‹ã®ã§ã€ã‚¹"
-"キップã—ã¾ã™ã€‚\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "ダウンロードã§ããªã„ãŸã‚ã€%s ã®å†ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã¯ä¸å¯èƒ½ã§ã™ã€‚\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ã¯ã™ã§ã«æœ€æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™ã€‚\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s ã¯æ‰‹å‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã¨è¨­å®šã•ã‚Œã¾ã—ãŸã€‚\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "'%3$s' ã«ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' (%2$s) ã‚’é¸æŠžã—ã¾ã—ãŸ\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "'%4$s' ã®ãŸã‚ã€'%3$s' ã«ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' (%2$s) ã‚’é¸æŠžã—ã¾ã—ãŸ\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "ä¾å­˜é–¢ä¿‚を解決ã—ã¦ã„ã¾ã™ ..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " 失敗ã—ã¾ã—ãŸã€‚"
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "ä¾å­˜é–¢ä¿‚を訂正ã§ãã¾ã›ã‚“"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "アップグレードセットを最å°åŒ–ã§ãã¾ã›ã‚“"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " 完了"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr ""
-"ã“れらを直ã™ãŸã‚ã«ã¯ 'apt-get -f install' を実行ã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›"
-"ん。"
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "未解決ã®ä¾å­˜é–¢ä¿‚ãŒã‚ã‚Šã¾ã™ã€‚-f オプションを試ã—ã¦ãã ã•ã„。"
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "警告: 以下ã®ãƒ‘ッケージã¯èªè¨¼ã•ã‚Œã¦ã„ã¾ã›ã‚“!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "èªè¨¼ã®è­¦å‘Šã¯ä¸Šæ›¸ãã•ã‚Œã¾ã—ãŸã€‚\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "検証ãªã—ã«ã“れらã®ãƒ‘ッケージをインストールã—ã¾ã™ã‹?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "ã„ãã¤ã‹ã®ãƒ‘ッケージをèªè¨¼ã§ãã¾ã›ã‚“ã§ã—ãŸ"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "å•é¡ŒãŒç™ºç”Ÿã—ã€-y オプション㌠--force-yes ãªã—ã§ä½¿ç”¨ã•ã‚Œã¾ã—ãŸ"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "内部エラーã€InstallPackages ãŒå£Šã‚ŒãŸãƒ‘ッケージã§å‘¼ã³å‡ºã•ã‚Œã¾ã—ãŸ!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "パッケージを削除ã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“ãŒã€å‰Šé™¤ãŒç„¡åŠ¹ã«ãªã£ã¦ã„ã¾ã™ã€‚"
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "内部エラーã€èª¿æ•´ãŒçµ‚ã‚ã£ã¦ã„ã¾ã›ã‚“"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"ãŠã£ã¨ã€ã‚µã‚¤ã‚ºãŒãƒžãƒƒãƒã—ã¾ã›ã‚“。apt@packages.debian.org ã«ãƒ¡ãƒ¼ãƒ«ã—ã¦ãã ã•ã„"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "%2$sB 中 %1$sB ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "%sB ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "ã“ã®æ“作後ã«è¿½åŠ ã§ %sB ã®ãƒ‡ã‚£ã‚¹ã‚¯å®¹é‡ãŒæ¶ˆè²»ã•ã‚Œã¾ã™ã€‚\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "ã“ã®æ“作後㫠%sB ã®ãƒ‡ã‚£ã‚¹ã‚¯å®¹é‡ãŒè§£æ”¾ã•ã‚Œã¾ã™ã€‚\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "%s ã®ç©ºã領域を測定ã§ãã¾ã›ã‚“"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "%s ã«å……分ãªç©ºãスペースãŒã‚ã‚Šã¾ã›ã‚“。"
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Trivial Only ãŒæŒ‡å®šã•ã‚Œã¾ã—ãŸãŒã€ã“ã‚Œã¯ç°¡å˜ãªæ“作ã§ã¯ã‚ã‚Šã¾ã›ã‚“。"
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Yes, do as I say!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"é‡å¤§ãªå•é¡Œã‚’引ãèµ·ã“ã™å¯èƒ½æ€§ã®ã‚ã‚‹ã“ã¨ã‚’ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚\n"
-"続行ã™ã‚‹ã«ã¯ã€'%s' ã¨ã„ã†ãƒ•ãƒ¬ãƒ¼ã‚ºã‚’タイプã—ã¦ãã ã•ã„。\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "中断ã—ã¾ã—ãŸã€‚"
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "続行ã—ã¾ã™ã‹?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "%s ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—㟠%s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "ã„ãã¤ã‹ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—ãŸ"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "ダウンロードオンリーモードã§ãƒ‘ッケージã®ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ãŒå®Œäº†ã—ã¾ã—ãŸ"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"ã„ãã¤ã‹ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã§ãã¾ã›ã‚“。apt-get update を実行ã™ã‚‹ã‹ --fix-"
-"missing オプションを付ã‘ã¦è©¦ã—ã¦ã¿ã¦ãã ã•ã„。"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing ã¨ãƒ¡ãƒ‡ã‚£ã‚¢äº¤æ›ã¯ç¾åœ¨åŒæ™‚ã«ã¯ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ã¾ã›ã‚“"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "足りãªã„パッケージを直ã™ã“ã¨ãŒã§ãã¾ã›ã‚“。"
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "インストールを中断ã—ã¾ã™ã€‚"
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"以下ã®ãƒ‘ッケージã¯ã€å…¨ãƒ•ã‚¡ã‚¤ãƒ«ãŒåˆ¥ã®ãƒ‘ッケージã§ä¸Šæ›¸ãã•ã‚ŒãŸãŸã‚ã€\n"
-"システムã‹ã‚‰æ¶ˆãˆã¾ã—ãŸ:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "注æ„: ã“れ㯠dpkg ã«ã‚ˆã‚Šè‡ªå‹•ã§ã‚ã–ã¨è¡Œã‚れれã¾ã™ã€‚"
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "パッケージ '%2$s' ã®åˆ©ç”¨ã§ããªã„ターゲットリリース '%1$s' を無視"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "'%2$s' ã®ä»£ã‚ã‚Šã« '%1$s' をソースパッケージã¨ã—ã¦é¸å‡ºã—ã¦ã„ã¾ã™\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "パッケージ '%2$s' ã®åˆ©ç”¨ã§ããªã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' を無視"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "update コマンドã¯å¼•æ•°ã‚’ã¨ã‚Šã¾ã›ã‚“"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-"一連ã®ã‚‚ã®ã‚’削除ã™ã‚‹ã‚ˆã†ã«ãªã£ã¦ã„ãªã„ã®ã§ã€AutoRemover を開始ã§ãã¾ã›ã‚“"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"AutoRemover ãŒã€æœ¬æ¥èµ·ãã‚‹ã¹ãã§ãªã„何ã‹ã‚’壊ã—ãŸã‚ˆã†ã§ã™ã€‚\n"
-"apt ã«ãƒã‚°å ±å‘Šã‚’é€ã£ã¦ãã ã•ã„。"
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "以下ã®æƒ…å ±ãŒã“ã®å•é¡Œã‚’解決ã™ã‚‹ãŸã‚ã«å½¹ç«‹ã¤ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "内部エラーã€AutoRemover ãŒä½•ã‹ã‚’破壊ã—ã¾ã—ãŸ"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"以下ã®ãƒ‘ッケージãŒè‡ªå‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã—ãŸãŒã€ã‚‚ã†å¿…è¦ã¨ã•ã‚Œã¦ã„ã¾ã›ã‚“:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"%lu ã¤ã®ãƒ‘ッケージãŒè‡ªå‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã—ãŸãŒã€ã‚‚ã†å¿…è¦ã¨ã•ã‚Œã¦ã„ã¾ã›"
-"ã‚“:\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "ã“れを削除ã™ã‚‹ã«ã¯ 'apt-get autoremove' を利用ã—ã¦ãã ã•ã„。"
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "内部エラーã€AllUpgrade ãŒä½•ã‹ã‚’破壊ã—ã¾ã—ãŸ"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr ""
-"以下ã®å•é¡Œã‚’解決ã™ã‚‹ãŸã‚ã« 'apt-get -f install' を実行ã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚‚ã—ã‚Œ"
-"ã¾ã›ã‚“:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"未解決ã®ä¾å­˜é–¢ä¿‚ã§ã™ã€‚'apt-get -f install' を実行ã—ã¦ã¿ã¦ãã ã•ã„ (ã¾ãŸã¯è§£æ³•"
-"を明示ã—ã¦ãã ã•ã„)。"
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"インストールã™ã‚‹ã“ã¨ãŒã§ããªã„パッケージãŒã‚ã‚Šã¾ã—ãŸã€‚ãŠãらãã€ã‚ã‚Šå¾—\n"
-"ãªã„状æ³ã‚’è¦æ±‚ã—ãŸã‹ã€(ä¸å®‰å®šç‰ˆãƒ‡ã‚£ã‚¹ãƒˆãƒªãƒ“ューションを使用ã—ã¦ã„ã‚‹ã®\n"
-"ã§ã‚ã‚Œã°) å¿…è¦ãªãƒ‘ッケージãŒã¾ã ä½œæˆã•ã‚Œã¦ã„ãªã‹ã£ãŸã‚Š Incoming ã‹ã‚‰ç§»\n"
-"å‹•ã•ã‚Œã¦ã„ãªã„ã“ã¨ãŒè€ƒãˆã‚‰ã‚Œã¾ã™ã€‚"
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "壊れãŸãƒ‘ッケージ"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "以下ã®ç‰¹åˆ¥ãƒ‘ッケージãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã™:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "æ案パッケージ:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "推奨パッケージ:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "パッケージ %s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s ã¯æ‰‹å‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã¨è¨­å®šã•ã‚Œã¾ã—ãŸã€‚\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s ã¯è‡ªå‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã¨è¨­å®šã•ã‚Œã¾ã—ãŸã€‚\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -851,47 +329,25 @@ msgstr ""
"ã“ã®ã‚³ãƒžãƒ³ãƒ‰ã¯æ™‚代é…ã‚Œã§ã™ã€‚'apt-mark auto' ãŠã‚ˆã³ 'apt-mark manual' を代ã‚ã‚Š"
"ã«ä½¿ç”¨ã—ã¦ãã ã•ã„。"
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "アップグレードパッケージを検出ã—ã¦ã„ã¾ã™ ... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "失敗"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "完了"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "内部エラーã€å•é¡Œãƒªã‚¾ãƒ«ãƒãŒä½•ã‹ã‚’破壊ã—ã¾ã—ãŸ"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "ダウンロードディレクトリをロックã§ãã¾ã›ã‚“"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "'%2$s' ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' をダウンロードã™ã‚‹ã‚½ãƒ¼ã‚¹ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "%s %s をダウンロードã—ã¦ã„ã¾ã™"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr ""
"ソースをå–å¾—ã™ã‚‹ã«ã¯å°‘ãªãã¨ã‚‚ 1 ã¤ã®ãƒ‘ッケージåを指定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "%s ã®ã‚½ãƒ¼ã‚¹ãƒ‘ッケージãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -901,7 +357,7 @@ msgstr ""
"ã¾ã™:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -913,70 +369,80 @@ msgstr ""
"bzr branch %s\n"
"を使用ã—ã¦ãã ã•ã„。\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "ã™ã§ã«ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã•ã‚ŒãŸãƒ•ã‚¡ã‚¤ãƒ« '%s' をスキップã—ã¾ã™\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "%s ã®ç©ºã領域を測定ã§ãã¾ã›ã‚“"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "%s ã«å……分ãªç©ºãスペースãŒã‚ã‚Šã¾ã›ã‚“"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "%2$sB 中 %1$sB ã®ã‚½ãƒ¼ã‚¹ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "%sB ã®ã‚½ãƒ¼ã‚¹ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "ソース %s ã‚’å–å¾—\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "ã„ãã¤ã‹ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—ãŸã€‚"
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "ダウンロードオンリーモードã§ãƒ‘ッケージã®ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ãŒå®Œäº†ã—ã¾ã—ãŸ"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "ã™ã§ã« %s ã«å±•é–‹ã•ã‚ŒãŸã‚½ãƒ¼ã‚¹ãŒã‚ã‚‹ãŸã‚ã€å±•é–‹ã‚’スキップã—ã¾ã™\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "展開コマンド '%s' ãŒå¤±æ•—ã—ã¾ã—ãŸã€‚\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr ""
"'dpkg-dev' パッケージãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã‚‹ã“ã¨ã‚’確èªã—ã¦ãã ã•ã„。\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "ビルドコマンド '%s' ãŒå¤±æ•—ã—ã¾ã—ãŸã€‚\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "å­ãƒ—ロセスãŒå¤±æ•—ã—ã¾ã—ãŸ"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"ビルドä¾å­˜é–¢ä¿‚ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ãƒ‘ッケージを少ãªãã¨ã‚‚ 1 ã¤æŒ‡å®šã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -985,17 +451,17 @@ msgstr ""
"%s ã«åˆ©ç”¨å¯èƒ½ãªã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£æƒ…å ±ãŒã‚ã‚Šã¾ã›ã‚“。セットアップã®ãŸã‚ã« apt."
"conf(5) ã® APT::Architectures ã‚’å‚ç…§ã—ã¦ãã ã•ã„。"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "%s ã®ãƒ“ルドä¾å­˜æƒ…報をå–å¾—ã§ãã¾ã›ã‚“"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s ã«ã¯ãƒ“ルドä¾å­˜æƒ…å ±ãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1004,7 +470,7 @@ msgstr ""
"パッケージ %3$s ㌠'%4$s' パッケージã§è¨±ã•ã‚Œã¦ã„ãªã„ãŸã‚ã€%2$s ã«å¯¾ã™ã‚‹ %1$s "
"ã®ä¾å­˜é–¢ä¿‚を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1013,14 +479,14 @@ msgstr ""
"パッケージ %3$s ãŒè¦‹ã¤ã‹ã‚‰ãªã„ãŸã‚ã€%2$s ã«å¯¾ã™ã‚‹ %1$s ã®ä¾å­˜é–¢ä¿‚を満ãŸã™ã“ã¨"
"ãŒã§ãã¾ã›ã‚“"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1029,7 +495,7 @@ msgstr ""
"パッケージ %3$s ã®å€™è£œãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã¤ã„ã¦ã®è¦æ±‚を満ãŸã›ãªã„ãŸ"
"ã‚ã€%2$s ã«å¯¾ã™ã‚‹ %1$s ã®ä¾å­˜é–¢ä¿‚を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1038,30 +504,30 @@ msgstr ""
"パッケージ %3$s ã®å€™è£œãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå­˜åœ¨ã—ãªã„ãŸã‚ã€%2$s ã«å¯¾ã™ã‚‹ %1$s ã®ä¾å­˜é–¢"
"係を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "%2$s ã®ä¾å­˜é–¢ä¿‚ %1$s を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“: %3$s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "%s ã®ãƒ“ルドä¾å­˜é–¢ä¿‚を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸã€‚"
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "ビルドä¾å­˜é–¢ä¿‚ã®å‡¦ç†ã«å¤±æ•—ã—ã¾ã—ãŸ"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "%s (%s) ã®å¤‰æ›´å±¥æ­´"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "サãƒãƒ¼ãƒˆã•ã‚Œã¦ã„るモジュール:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1153,102 +619,53 @@ msgstr ""
"apt-get(8)ã€sources.list(5)ã€apt.conf(5) ã‚’å‚ç…§ã—ã¦ãã ã•ã„。\n"
" ã“ã® APT 㯠Super Cow Powers 化ã•ã‚Œã¦ã„ã¾ã™ã€‚\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"注æ„: ã“ã‚Œã¯ã‚·ãƒŸãƒ¥ãƒ¬ãƒ¼ã‚·ãƒ§ãƒ³ã«ã™ãŽã¾ã›ã‚“!\n"
-" apt-get ã¯å®Ÿéš›ã®å®Ÿè¡Œã« root 権é™ã‚’å¿…è¦ã¨ã—ã¾ã™ã€‚\n"
-" ロックãŒéžã‚¢ã‚¯ãƒ†ã‚£ãƒ–ã§ã‚ã‚‹ã“ã¨ã‹ã‚‰ã€ä»Šã“ã®æ™‚点ã®çŠ¶æ…‹ã«å¦¥å½“性ãŒ\n"
-" ã‚ã‚‹ã¨ã¯è¨€ã„切れãªã„ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "ヒット "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "å–å¾—:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "無視 "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "エラー "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%sB ã‚’ %s ã§å–å¾—ã—ã¾ã—㟠(%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [処ç†ä¸­]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"メディア変更: \n"
-" '%s'\n"
-"ã¨ãƒ©ãƒ™ãƒ«ã®ä»˜ã„ãŸãƒ‡ã‚£ã‚¹ã‚¯ã‚’ドライブ '%s' ã«å…¥ã‚Œã¦ Enter キーを押ã—ã¦ãã ã•ã„\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s をインストールã•ã‚Œã¦ã„ãªã„ã‚‚ã®ã¨ã—ã¦ãƒžãƒ¼ã‚¯ã§ãã¾ã›ã‚“\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s ã¯æ‰‹å‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã¨ã™ã§ã«è¨­å®šã•ã‚Œã¦ã„ã¾ã™ã€‚\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s ã¯è‡ªå‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã¨ã™ã§ã«è¨­å®šã•ã‚Œã¦ã„ã¾ã™ã€‚\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s ã¯ã™ã§ã«ä¿ç•™ã«è¨­å®šã•ã‚Œã¦ã„ã¾ã™ã€‚\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s ã¯ã™ã§ã«ä¿ç•™ã•ã‚Œã¦ã„ã¾ã›ã‚“。\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "%s ã‚’å¾…ã¡ã¾ã—ãŸãŒã€ãã“ã«ã¯ã‚ã‚Šã¾ã›ã‚“ã§ã—ãŸ"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s ã¯ä¿ç•™ã«è¨­å®šã•ã‚Œã¾ã—ãŸã€‚\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "%s ã®ä¿ç•™ã‚’解除ã—ã¾ã—ãŸã€‚\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "dpkg ã®å®Ÿè¡Œã«å¤±æ•—ã—ã¾ã—ãŸã€‚root 権é™ã§å®Ÿè¡Œã—ã¦ã„ã¾ã™ã‹?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1289,6 +706,23 @@ msgstr ""
"ã•ã‚‰ãªã‚‹æƒ…å ±ã«ã¤ã„ã¦ã¯ã€ãƒžãƒ‹ãƒ¥ã‚¢ãƒ«ãƒšãƒ¼ã‚¸ apt-mark(8) ãŠã‚ˆã³ apt.conf(5) ã‚’å‚"
"ç…§ã—ã¦ãã ã•ã„。"
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1386,8 +820,8 @@ msgstr "接続タイムアウト"
msgid "Server closed the connection"
msgstr "サーãƒãŒæŽ¥ç¶šã‚’切断ã—ã¾ã—ãŸ"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "読ã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼"
@@ -1400,8 +834,8 @@ msgid "Protocol corruption"
msgstr "プロトコルãŒå£Šã‚Œã¦ã„ã¾ã™"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "書ãè¾¼ã¿ã‚¨ãƒ©ãƒ¼"
@@ -1413,6 +847,10 @@ msgstr "ソケットを作æˆã§ãã¾ã›ã‚“"
msgid "Could not connect data socket, connection timed out"
msgstr "データソケットã¸æŽ¥ç¶šã§ãã¾ã›ã‚“ã§ã—ãŸã€‚接続ãŒã‚¿ã‚¤ãƒ ã‚¢ã‚¦ãƒˆã—ã¾ã—ãŸ"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "失敗"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "パッシブソケットã«æŽ¥ç¶šã§ãã¾ã›ã‚“。"
@@ -1455,7 +893,7 @@ msgstr "データソケット接続タイムアウト"
msgid "Unable to accept connection"
msgstr "接続を accept ã§ãã¾ã›ã‚“"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "ファイルã®ãƒãƒƒã‚·ãƒ¥ã§ã®å•é¡Œ"
@@ -1587,81 +1025,600 @@ msgstr "公開éµã‚’利用ã§ããªã„ãŸã‚ã€ä»¥ä¸‹ã®ç½²åã¯æ¤œè¨¼ã§ãã¾
msgid "Empty files can't be valid archives"
msgstr "空ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯æœ‰åŠ¹ãªã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã¨èªã‚られã¾ã›ã‚“"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "ファイルã¸ã®æ›¸ãè¾¼ã¿ã§ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "リモートå´ã§æŽ¥ç¶šãŒã‚¯ãƒ­ãƒ¼ã‚ºã•ã‚Œã¦ã‚µãƒ¼ãƒã‹ã‚‰ã®èª­ã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "サーãƒã‹ã‚‰ã®èª­ã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "ファイルã¸ã®æ›¸ãè¾¼ã¿ã§ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "select ã«å¤±æ•—ã—ã¾ã—ãŸ"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "接続タイムアウト"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "出力ファイルã¸ã®æ›¸ãè¾¼ã¿ã§ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "ヘッダã®å¾…機中ã§ã™"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "ä¸æ­£ãªãƒ˜ãƒƒãƒ€è¡Œã§ã™"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "HTTP サーãƒãŒä¸æ­£ãªãƒªãƒ—ライヘッダをé€ä¿¡ã—ã¦ãã¾ã—ãŸ"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "HTTP サーãƒãŒä¸æ­£ãª Content-Length ヘッダをé€ä¿¡ã—ã¦ãã¾ã—ãŸ"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "HTTP サーãƒãŒä¸æ­£ãª Content-Range ヘッダをé€ä¿¡ã—ã¦ãã¾ã—ãŸ"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "HTTP サーãƒã®ãƒ¬ãƒ³ã‚¸ã‚µãƒãƒ¼ãƒˆãŒå£Šã‚Œã¦ã„ã¾ã™"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "ä¸æ˜Žãªæ—¥ä»˜ãƒ•ã‚©ãƒ¼ãƒžãƒƒãƒˆã§ã™"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "select ã«å¤±æ•—ã—ã¾ã—ãŸ"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "ä¸æ­£ãªãƒ˜ãƒƒãƒ€ã§ã™"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "接続タイムアウト"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "接続失敗"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "出力ファイルã¸ã®æ›¸ãè¾¼ã¿ã§ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "内部エラー"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "ファイルã¸ã®æ›¸ãè¾¼ã¿ã§ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "ファイルã¸ã®æ›¸ãè¾¼ã¿ã§ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "内部エラーã€InstallPackages ãŒå£Šã‚ŒãŸãƒ‘ッケージã§å‘¼ã³å‡ºã•ã‚Œã¾ã—ãŸ!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "リモートå´ã§æŽ¥ç¶šãŒã‚¯ãƒ­ãƒ¼ã‚ºã•ã‚Œã¦ã‚µãƒ¼ãƒã‹ã‚‰ã®èª­ã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "パッケージを削除ã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“ãŒã€å‰Šé™¤ãŒç„¡åŠ¹ã«ãªã£ã¦ã„ã¾ã™ã€‚"
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "サーãƒã‹ã‚‰ã®èª­ã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "内部エラーã€èª¿æ•´ãŒçµ‚ã‚ã£ã¦ã„ã¾ã›ã‚“"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "ä¸æ­£ãªãƒ˜ãƒƒãƒ€ã§ã™"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"ãŠã£ã¨ã€ã‚µã‚¤ã‚ºãŒãƒžãƒƒãƒã—ã¾ã›ã‚“。apt@packages.debian.org ã«ãƒ¡ãƒ¼ãƒ«ã—ã¦ãã ã•ã„"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "接続失敗"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "%2$sB 中 %1$sB ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "内部エラー"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "%sB ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "ã“ã®æ“作後ã«è¿½åŠ ã§ %sB ã®ãƒ‡ã‚£ã‚¹ã‚¯å®¹é‡ãŒæ¶ˆè²»ã•ã‚Œã¾ã™ã€‚\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "ã“ã®æ“作後㫠%sB ã®ãƒ‡ã‚£ã‚¹ã‚¯å®¹é‡ãŒè§£æ”¾ã•ã‚Œã¾ã™ã€‚\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "%s ã«å……分ãªç©ºãスペースãŒã‚ã‚Šã¾ã›ã‚“。"
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "å•é¡ŒãŒç™ºç”Ÿã—ã€-y オプション㌠--force-yes ãªã—ã§ä½¿ç”¨ã•ã‚Œã¾ã—ãŸ"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Trivial Only ãŒæŒ‡å®šã•ã‚Œã¾ã—ãŸãŒã€ã“ã‚Œã¯ç°¡å˜ãªæ“作ã§ã¯ã‚ã‚Šã¾ã›ã‚“。"
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Yes, do as I say!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"é‡å¤§ãªå•é¡Œã‚’引ãèµ·ã“ã™å¯èƒ½æ€§ã®ã‚ã‚‹ã“ã¨ã‚’ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚\n"
+"続行ã™ã‚‹ã«ã¯ã€'%s' ã¨ã„ã†ãƒ•ãƒ¬ãƒ¼ã‚ºã‚’タイプã—ã¦ãã ã•ã„。\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "中断ã—ã¾ã—ãŸã€‚"
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "続行ã—ã¾ã™ã‹?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "ã„ãã¤ã‹ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—ãŸ"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"ã„ãã¤ã‹ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã§ãã¾ã›ã‚“。apt-get update を実行ã™ã‚‹ã‹ --fix-"
+"missing オプションを付ã‘ã¦è©¦ã—ã¦ã¿ã¦ãã ã•ã„。"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing ã¨ãƒ¡ãƒ‡ã‚£ã‚¢äº¤æ›ã¯ç¾åœ¨åŒæ™‚ã«ã¯ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ã¾ã›ã‚“"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "足りãªã„パッケージを直ã™ã“ã¨ãŒã§ãã¾ã›ã‚“。"
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "インストールを中断ã—ã¾ã™ã€‚"
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"以下ã®ãƒ‘ッケージã¯ã€å…¨ãƒ•ã‚¡ã‚¤ãƒ«ãŒåˆ¥ã®ãƒ‘ッケージã§ä¸Šæ›¸ãã•ã‚ŒãŸãŸã‚ã€\n"
+"システムã‹ã‚‰æ¶ˆãˆã¾ã—ãŸ:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "注æ„: ã“れ㯠dpkg ã«ã‚ˆã‚Šè‡ªå‹•ã§ã‚ã–ã¨è¡Œã‚れれã¾ã™ã€‚"
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+"一連ã®ã‚‚ã®ã‚’削除ã™ã‚‹ã‚ˆã†ã«ãªã£ã¦ã„ãªã„ã®ã§ã€AutoRemover を開始ã§ãã¾ã›ã‚“"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"AutoRemover ãŒã€æœ¬æ¥èµ·ãã‚‹ã¹ãã§ãªã„何ã‹ã‚’壊ã—ãŸã‚ˆã†ã§ã™ã€‚\n"
+"apt ã«ãƒã‚°å ±å‘Šã‚’é€ã£ã¦ãã ã•ã„。"
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "以下ã®æƒ…å ±ãŒã“ã®å•é¡Œã‚’解決ã™ã‚‹ãŸã‚ã«å½¹ç«‹ã¤ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "内部エラーã€AutoRemover ãŒä½•ã‹ã‚’破壊ã—ã¾ã—ãŸ"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"以下ã®ãƒ‘ッケージãŒè‡ªå‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã—ãŸãŒã€ã‚‚ã†å¿…è¦ã¨ã•ã‚Œã¦ã„ã¾ã›ã‚“:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"%lu ã¤ã®ãƒ‘ッケージãŒè‡ªå‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã—ãŸãŒã€ã‚‚ã†å¿…è¦ã¨ã•ã‚Œã¦ã„ã¾ã›"
+"ã‚“:\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "ã“れを削除ã™ã‚‹ã«ã¯ 'apt-get autoremove' を利用ã—ã¦ãã ã•ã„。"
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+"以下ã®å•é¡Œã‚’解決ã™ã‚‹ãŸã‚ã« 'apt-get -f install' を実行ã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚‚ã—ã‚Œ"
+"ã¾ã›ã‚“:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"未解決ã®ä¾å­˜é–¢ä¿‚ã§ã™ã€‚'apt-get -f install' を実行ã—ã¦ã¿ã¦ãã ã•ã„ (ã¾ãŸã¯è§£æ³•"
+"を明示ã—ã¦ãã ã•ã„)。"
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"インストールã™ã‚‹ã“ã¨ãŒã§ããªã„パッケージãŒã‚ã‚Šã¾ã—ãŸã€‚ãŠãらãã€ã‚ã‚Šå¾—\n"
+"ãªã„状æ³ã‚’è¦æ±‚ã—ãŸã‹ã€(ä¸å®‰å®šç‰ˆãƒ‡ã‚£ã‚¹ãƒˆãƒªãƒ“ューションを使用ã—ã¦ã„ã‚‹ã®\n"
+"ã§ã‚ã‚Œã°) å¿…è¦ãªãƒ‘ッケージãŒã¾ã ä½œæˆã•ã‚Œã¦ã„ãªã‹ã£ãŸã‚Š Incoming ã‹ã‚‰ç§»\n"
+"å‹•ã•ã‚Œã¦ã„ãªã„ã“ã¨ãŒè€ƒãˆã‚‰ã‚Œã¾ã™ã€‚"
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "壊れãŸãƒ‘ッケージ"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "以下ã®ç‰¹åˆ¥ãƒ‘ッケージãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã™:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "æ案パッケージ:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "推奨パッケージ:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "警告: 以下ã®ãƒ‘ッケージã¯èªè¨¼ã•ã‚Œã¦ã„ã¾ã›ã‚“!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "èªè¨¼ã®è­¦å‘Šã¯ä¸Šæ›¸ãã•ã‚Œã¾ã—ãŸã€‚\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "ã„ãã¤ã‹ã®ãƒ‘ッケージをèªè¨¼ã§ãã¾ã›ã‚“ã§ã—ãŸ"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "検証ãªã—ã«ã“れらã®ãƒ‘ッケージをインストールã—ã¾ã™ã‹?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "%s ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—㟠%s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [インストール済ã¿]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [インストール済ã¿]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [インストール済ã¿]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "以下ã®ãƒ‘ッケージã«ã¯æº€ãŸã›ãªã„ä¾å­˜é–¢ä¿‚ãŒã‚ã‚Šã¾ã™:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "ã—ã‹ã—ã€%s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã™"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "ã—ã‹ã—ã€%s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã‚ˆã†ã¨ã—ã¦ã„ã¾ã™"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "ã—ã‹ã—ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "ã—ã‹ã—ã€ã“ã‚Œã¯ä»®æƒ³ãƒ‘ッケージã§ã™"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "ã—ã‹ã—ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã›ã‚“"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "ã—ã‹ã—ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã‚ˆã†ã¨ã—ã¦ã„ã¾ã›ã‚“"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " ã¾ãŸã¯"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "以下ã®ãƒ‘ッケージãŒæ–°ãŸã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã™:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "以下ã®ãƒ‘ッケージã¯ã€Œå‰Šé™¤ã€ã•ã‚Œã¾ã™:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "以下ã®ãƒ‘ッケージã¯ä¿ç•™ã•ã‚Œã¾ã™:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "以下ã®ãƒ‘ッケージã¯ã‚¢ãƒƒãƒ—グレードã•ã‚Œã¾ã™:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "以下ã®ãƒ‘ッケージã¯ã€Œãƒ€ã‚¦ãƒ³ã‚°ãƒ¬ãƒ¼ãƒ‰ã€ã•ã‚Œã¾ã™:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "以下ã®å¤‰æ›´ç¦æ­¢ãƒ‘ッケージã¯å¤‰æ›´ã•ã‚Œã¾ã™:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (%s ã®ãŸã‚) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"警告: 以下ã®ä¸å¯æ¬ ãƒ‘ッケージãŒå‰Šé™¤ã•ã‚Œã¾ã™ã€‚\n"
+"何をã—よã†ã¨ã—ã¦ã„ã‚‹ã‹æœ¬å½“ã«ã‚ã‹ã£ã¦ã„ãªã„å ´åˆã¯ã€å®Ÿè¡Œã—ã¦ã¯ã„ã‘ã¾ã›ã‚“!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "アップグレード: %lu 個ã€æ–°è¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«: %lu 個ã€"
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "å†ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«: %lu 個ã€"
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "ダウングレード: %lu 個ã€"
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "削除: %lu 個ã€ä¿ç•™: %lu 個。\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu 個ã®ãƒ‘ッケージãŒå®Œå…¨ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã¾ãŸã¯å‰Šé™¤ã•ã‚Œã¦ã„ã¾ã›ã‚“。\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[Y/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[y/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "Y"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "æ­£è¦è¡¨ç¾ã®å±•é–‹ã‚¨ãƒ©ãƒ¼ - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "ä¾å­˜é–¢ä¿‚を解決ã—ã¦ã„ã¾ã™ ..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " 失敗ã—ã¾ã—ãŸã€‚"
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "ä¾å­˜é–¢ä¿‚を訂正ã§ãã¾ã›ã‚“"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "アップグレードセットを最å°åŒ–ã§ãã¾ã›ã‚“"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " 完了"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr ""
+"ã“れらを直ã™ãŸã‚ã«ã¯ 'apt-get -f install' を実行ã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›"
+"ん。"
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "未解決ã®ä¾å­˜é–¢ä¿‚ãŒã‚ã‚Šã¾ã™ã€‚-f オプションを試ã—ã¦ãã ã•ã„。"
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "update コマンドã¯å¼•æ•°ã‚’ã¨ã‚Šã¾ã›ã‚“"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "アップグレードパッケージを検出ã—ã¦ã„ã¾ã™ ... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "内部エラーã€AllUpgrade ãŒä½•ã‹ã‚’破壊ã—ã¾ã—ãŸ"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "完了"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"注æ„: ã“ã‚Œã¯ã‚·ãƒŸãƒ¥ãƒ¬ãƒ¼ã‚·ãƒ§ãƒ³ã«ã™ãŽã¾ã›ã‚“!\n"
+" apt-get ã¯å®Ÿéš›ã®å®Ÿè¡Œã« root 権é™ã‚’å¿…è¦ã¨ã—ã¾ã™ã€‚\n"
+" ロックãŒéžã‚¢ã‚¯ãƒ†ã‚£ãƒ–ã§ã‚ã‚‹ã“ã¨ã‹ã‚‰ã€ä»Šã“ã®æ™‚点ã®çŠ¶æ…‹ã«å¦¥å½“性ãŒ\n"
+" ã‚ã‚‹ã¨ã¯è¨€ã„切れãªã„ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "%s ã‚’ %s ã«åå‰å¤‰æ›´ã§ãã¾ã›ã‚“ã§ã—ãŸ"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "ヒット "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "å–å¾—:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "無視 "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "エラー "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%sB ã‚’ %s ã§å–å¾—ã—ã¾ã—㟠(%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [処ç†ä¸­]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"メディア変更: \n"
+" '%s'\n"
+"ã¨ãƒ©ãƒ™ãƒ«ã®ä»˜ã„ãŸãƒ‡ã‚£ã‚¹ã‚¯ã‚’ドライブ '%s' ã«å…¥ã‚Œã¦ Enter キーを押ã—ã¦ãã ã•ã„\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "%s を読ã¿è¾¼ã‚€ã“ã¨ãŒã§ãã¾ã›ã‚“"
@@ -1724,32 +1681,32 @@ msgstr "å­ãƒ—ロセスã¸ã® IPC パイプã®ä½œæˆã«å¤±æ•—ã—ã¾ã—ãŸ"
msgid "Connection closed prematurely"
msgstr "途中ã§æŽ¥ç¶šãŒã‚¯ãƒ­ãƒ¼ã‚ºã•ã‚Œã¾ã—ãŸ"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "ä¸æ­£ãªãƒ‡ãƒ•ã‚©ãƒ«ãƒˆè¨­å®šã§ã™!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Enter キーを押ã™ã¨ç¶šè¡Œã—ã¾ã™ã€‚"
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "éŽåŽ»ã«ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã—㟠.deb ファイルを削除ã—ã¾ã™ã‹?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "展開中ã«ä½•ã‚‰ã‹ã®ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚インストールã•ã‚ŒãŸãƒ‘ッケージを"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "設定ã—ã¾ã™ã€‚ã“ã‚Œã«ã‚ˆã‚Šã€ã‚¨ãƒ©ãƒ¼ãŒè¤‡æ•°å‡ºã‚‹ã‹ã€ä¾å­˜é–¢ä¿‚ã®æ¬ å¦‚ã«"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "よるエラーãŒå‡ºã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。ã“ã‚Œã«ã¯å•é¡Œã¯ãªãã€ä¸Šè¨˜ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "ãŒé‡è¦ã§ã™ã€‚ã“れを修正ã—ã¦ã€Œå°Žå…¥ã€ã‚’å†åº¦å®Ÿè¡Œã—ã¦ãã ã•ã„"
@@ -1999,36 +1956,36 @@ msgstr "%s ã®ãƒªãƒ³ã‚¯èª­ã¿å–ã‚Šã«å¤±æ•—ã—ã¾ã—ãŸ"
msgid "Failed to unlink %s"
msgstr "%s ã®ãƒªãƒ³ã‚¯è§£é™¤ã«å¤±æ•—ã—ã¾ã—ãŸ"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** %s ã‚’ %s ã«ãƒªãƒ³ã‚¯ã™ã‚‹ã®ã«å¤±æ•—ã—ã¾ã—ãŸ"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " リンクを外ã™åˆ¶é™ã® %sB ã«åˆ°é”ã—ã¾ã—ãŸã€‚\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "アーカイブã«ãƒ‘ッケージフィールドãŒã‚ã‚Šã¾ã›ã‚“ã§ã—ãŸ"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s ã« override エントリãŒã‚ã‚Šã¾ã›ã‚“\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %1$s メンテナ㯠%3$s ã§ã¯ãªã %2$s ã§ã™\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s ã«ã‚½ãƒ¼ã‚¹ override エントリãŒã‚ã‚Šã¾ã›ã‚“\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s ã«ãƒã‚¤ãƒŠãƒª override エントリãŒã‚ã‚Šã¾ã›ã‚“\n"
@@ -2107,7 +2064,7 @@ msgstr "%s ã®ãƒªãƒ³ã‚¯è§£é™¤ã§å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸ"
msgid "Failed to rename %s to %s"
msgstr "%s ã‚’ %s ã«åå‰å¤‰æ›´ã§ãã¾ã›ã‚“ã§ã—ãŸ"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2175,7 +2132,7 @@ msgstr "壊れãŸã‚¢ãƒ¼ã‚«ã‚¤ãƒ–"
msgid "Tar checksum failed, archive corrupted"
msgstr "tar ãƒã‚§ãƒƒã‚¯ã‚µãƒ æ¤œè¨¼ãŒå¤±æ•—ã—ã¾ã—ãŸã€‚アーカイブãŒå£Šã‚Œã¦ã„ã¾ã™"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "未知㮠TAR ヘッダタイプ %uã€ãƒ¡ãƒ³ãƒãƒ¼ %s"
@@ -2300,24 +2257,17 @@ msgid "Unable to stat %s"
msgstr "%s ã®çŠ¶æ…‹ã‚’å–å¾—ã§ãã¾ã›ã‚“"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "'%s' メンãƒãƒ¼ãŒãªã„ãŸã‚ã€æ­£ã—ã„ DEB アーカイブã§ã¯ã‚ã‚Šã¾ã›ã‚“"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"ã“ã‚Œã¯æ­£ã—ã„ DEB アーカイブã§ã¯ã‚ã‚Šã¾ã›ã‚“。'%s'ã€'%s'ã€'%s' ã®ã„ãšã‚Œã®ãƒ¡ãƒ³"
-"ãƒãƒ¼ã‚‚ã‚ã‚Šã¾ã›ã‚“"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "内部エラーã€ãƒ¡ãƒ³ãƒãƒ¼ %s を特定ã§ãã¾ã›ã‚“"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "解æžã§ããªã„コントロールファイル"
@@ -2375,87 +2325,87 @@ msgstr ""
"自動増加ãŒãƒ¦ãƒ¼ã‚¶ã«ã‚ˆã£ã¦ç„¡åŠ¹ã«ã•ã‚Œã¦ã„ã‚‹ãŸã‚ã€MMap ã®ã‚µã‚¤ã‚ºã‚’増やã›ã¾ã›ã‚“。"
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%li時間 %li分 %li秒"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%li分 %li秒"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%li秒"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "é¸æŠžã•ã‚ŒãŸ %s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "ç†è§£ã§ããªã„çœç•¥å½¢å¼ã§ã™: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "設定ファイル %s をオープンã§ãã¾ã›ã‚“ã§ã—ãŸ"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "文法エラー %s:%u: ブロックãŒåå‰ãªã—ã§å§‹ã¾ã£ã¦ã„ã¾ã™ã€‚"
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "文法エラー %s:%u: ä¸æ­£ãªã‚¿ã‚°ã§ã™"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "文法エラー %s:%u: 値ã®å¾Œã«ä½™åˆ†ãªã‚´ãƒŸãŒå…¥ã£ã¦ã„ã¾ã™"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "文法エラー %s:%u: 命令ã¯ãƒˆãƒƒãƒ—レベルã§ã®ã¿å®Ÿè¡Œã§ãã¾ã™"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "文法エラー %s:%u: インクルードã®ãƒã‚¹ãƒˆãŒå¤šã™ãŽã¾ã™"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "文法エラー %s:%u: ã“ã“ã‹ã‚‰ã‚¤ãƒ³ã‚¯ãƒ«ãƒ¼ãƒ‰ã•ã‚Œã¦ã„ã¾ã™"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "文法エラー %s:%u: 未対応ã®å‘½ä»¤ '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"文法エラー %s:%u: clear ディレクティブã¯ã€å¼•æ•°ã¨ã—ã¦ã‚ªãƒ—ションツリーを必è¦ã¨"
"ã—ã¾ã™"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "文法エラー %s:%u: ファイルã®æœ€å¾Œã«ä½™è¨ˆãªã‚´ãƒŸãŒã‚ã‚Šã¾ã™"
@@ -2480,48 +2430,48 @@ msgstr "..."
msgid "%c%s... %u%%"
msgstr "%c%s... %u%%"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "コマンドラインオプション '%c' [%s ã‹ã‚‰] ã¯ä¸æ˜Žã§ã™ã€‚"
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "コマンドラインオプション %s ã‚’ç†è§£ã§ãã¾ã›ã‚“"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "コマンドラインオプション %s 㯠boolean ã§ã¯ã‚ã‚Šã¾ã›ã‚“"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "オプション %s ã«ã¯å¼•æ•°ãŒå¿…è¦ã§ã™ã€‚"
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "オプション %s: 設定項目ã«ã¯ =<値> を指定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚"
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "オプション %s ã«ã¯ '%s' ã§ã¯ãªãæ•´æ•°ã®å¼•æ•°ãŒå¿…è¦ã§ã™"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "オプション '%s' ã¯é•·ã™ãŽã¾ã™"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "%s を解釈ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。true ã‹ false を試ã—ã¦ãã ã•ã„。"
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "ä¸æ­£ãªæ“作 %s"
@@ -2535,48 +2485,48 @@ msgstr "マウントãƒã‚¤ãƒ³ãƒˆ %s ã®çŠ¶æ…‹ã‚’å–å¾—ã§ãã¾ã›ã‚“"
msgid "Failed to stat the cdrom"
msgstr "CD-ROM ã®çŠ¶æ…‹ã‚’å–å¾—ã™ã‚‹ã®ã«å¤±æ•—ã—ã¾ã—ãŸ"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "gzip ファイル %s ã®ã‚¯ãƒ­ãƒ¼ã‚ºä¸­ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸ"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "読ã¿è¾¼ã¿å°‚用ã®ãƒ­ãƒƒã‚¯ãƒ•ã‚¡ã‚¤ãƒ« %s ã«ãƒ­ãƒƒã‚¯ã¯ä½¿ç”¨ã—ã¾ã›ã‚“"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "ロックファイル %s をオープンã§ãã¾ã›ã‚“"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "nfs マウントã•ã‚ŒãŸãƒ­ãƒƒã‚¯ãƒ•ã‚¡ã‚¤ãƒ« %s ã«ã¯ãƒ­ãƒƒã‚¯ã‚’使用ã—ã¾ã›ã‚“"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "ロック %s ãŒå–å¾—ã§ãã¾ã›ã‚“ã§ã—ãŸ"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "'%s' ãŒãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã§ã¯ãªã„ãŸã‚ã€ãƒ•ã‚¡ã‚¤ãƒ«ã®ä¸€è¦§ã‚’作æˆã§ãã¾ã›ã‚“"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "ディレクトリ '%2$s' ã® '%1$s' ãŒé€šå¸¸ãƒ•ã‚¡ã‚¤ãƒ«ã§ã¯ãªã„ãŸã‚ã€ç„¡è¦–ã—ã¾ã™"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
"ディレクトリ '%2$s' ã® '%1$s' ãŒãƒ•ã‚¡ã‚¤ãƒ«åæ‹¡å¼µå­ã‚’æŒãŸãªã„ãŸã‚ã€ç„¡è¦–ã—ã¾ã™"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
@@ -2584,70 +2534,70 @@ msgstr ""
"ディレクトリ '%2$s' ã® '%1$s' ãŒç„¡åŠ¹ãªãƒ•ã‚¡ã‚¤ãƒ«åæ‹¡å¼µå­ã‚’æŒã£ã¦ã„ã‚‹ãŸã‚ã€ç„¡è¦–"
"ã—ã¾ã™"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "å­ãƒ—ロセス %s ãŒã‚»ã‚°ãƒ¡ãƒ³ãƒ†ãƒ¼ã‚·ãƒ§ãƒ³é•åã‚’å—ã‘å–ã‚Šã¾ã—ãŸã€‚"
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "å­ãƒ—ロセス %s ãŒã‚·ã‚°ãƒŠãƒ« %u ã‚’å—ã‘å–ã‚Šã¾ã—ãŸã€‚"
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "å­ãƒ—ロセス %s ãŒã‚¨ãƒ©ãƒ¼ã‚³ãƒ¼ãƒ‰ (%u) ã‚’è¿”ã—ã¾ã—ãŸ"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "å­ãƒ—ロセス %s ãŒäºˆæœŸã›ãšçµ‚了ã—ã¾ã—ãŸ"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "ファイル %s をオープンã§ãã¾ã›ã‚“ã§ã—ãŸ"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "ファイルデスクリプタ %d ã‚’é–‹ã‘ã¾ã›ã‚“ã§ã—ãŸ"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "å­ãƒ—ロセス IPC ã®ç”Ÿæˆã«å¤±æ•—ã—ã¾ã—ãŸ"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "以下ã®åœ§ç¸®ãƒ„ールã®å®Ÿè¡Œã«å¤±æ•—ã—ã¾ã—ãŸ: "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "読ã¿è¾¼ã¿ãŒ %llu 残ã£ã¦ã„ã‚‹ã¯ãšã§ã™ãŒã€ä½•ã‚‚残ã£ã¦ã„ã¾ã›ã‚“"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "ã‚㨠%llu 書ã込む必è¦ãŒã‚ã‚Šã¾ã™ãŒã€æ›¸ã込むã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸ"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "ファイル %s ã®ã‚¯ãƒ­ãƒ¼ã‚ºä¸­ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸ"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "%s ã‹ã‚‰ %s ã¸ã®ãƒ•ã‚¡ã‚¤ãƒ«å変更中ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸ"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "ファイル %s ã®å‰Šé™¤ä¸­ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸ"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "ファイルã®åŒæœŸä¸­ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸ"
@@ -2764,12 +2714,12 @@ msgstr "状態ファイル %s ã®ã‚ªãƒ¼ãƒ—ンã«å¤±æ•—ã—ã¾ã—ãŸ"
msgid "Failed to write temporary StateFile %s"
msgstr "一時状態ファイル %s ã®æ›¸ãè¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "パッケージファイル %s を解釈ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "パッケージファイル %s を解釈ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ (2)"
@@ -2848,7 +2798,7 @@ msgstr "ソースリスト %2$s ã® %1$u 行目ãŒä¸æ­£ã§ã™ (type)"
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "ソースリスト %3$s ã® %2$u è¡Œã«ã‚るタイプ '%1$s' ã¯ä¸æ˜Žã§ã™"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2857,12 +2807,12 @@ msgstr ""
"'%s' ã®å³æ™‚設定ã¯å‹•ä½œã—ã¾ã›ã‚“。詳細ã«ã¤ã„ã¦ã¯ man 5 apt.conf ã® APT::"
"Immediate-Configure ã®é …ã‚’å‚ç…§ã—ã¦ãã ã•ã„。(%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "'%s' を設定ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2886,7 +2836,7 @@ msgstr ""
"パッケージ %s ã‚’å†ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ãŒã€ãã®ãŸã‚ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–を見"
"ã¤ã‘ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸã€‚"
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2894,18 +2844,10 @@ msgstr ""
"エラーã€pkgProblemResolver::Resolve ã¯åœæ­¢ã—ã¾ã—ãŸã€‚ãŠãらã変更ç¦æ­¢ãƒ‘ッケー"
"ジãŒåŽŸå› ã§ã™ã€‚"
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "å•é¡Œã‚’解決ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。壊れãŸå¤‰æ›´ç¦æ­¢ãƒ‘ッケージãŒã‚ã‚Šã¾ã™ã€‚"
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"ã„ãã¤ã‹ã®ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ãƒ•ã‚¡ã‚¤ãƒ«ã®ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ã“れらã¯ç„¡è¦–ã•ã‚Œ"
-"ã‚‹ã‹ã€å¤ã„ã‚‚ã®ãŒä»£ã‚ã‚Šã«ä½¿ã‚ã‚Œã¾ã™ã€‚"
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2950,12 +2892,12 @@ msgstr ""
"'%s' ã¨ãƒ©ãƒ™ãƒ«ã®ä»˜ã„ãŸãƒ‡ã‚£ã‚¹ã‚¯ã‚’ドライブ '%s' ã«å…¥ã‚Œã¦ Enter キーを押ã—ã¦ãã "
"ã•ã„。"
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "パッケージングシステム '%s' ã¯ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ã¾ã›ã‚“"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "é©åˆ‡ãªãƒ‘ッケージシステムタイプを特定ã§ãã¾ã›ã‚“"
@@ -2993,19 +2935,19 @@ msgstr ""
"APT::Default-Release 㮠値 '%s' ã¯ã€ãã®ã‚ˆã†ãªãƒªãƒªãƒ¼ã‚¹ã‚’ソース中ã‹ã‚‰åˆ©ç”¨ã§ã"
"ãªã„ãŸã‚ã€ç„¡åŠ¹ã§ã™"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr ""
"ä¸æ­£ãªãƒ¬ã‚³ãƒ¼ãƒ‰ãŒãƒ—リファレンスファイル %s ã«å­˜åœ¨ã—ã¾ã™ã€‚パッケージヘッダãŒã‚"
"ã‚Šã¾ã›ã‚“"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "pin タイプ %s ã‚’ç†è§£ã§ãã¾ã›ã‚“ã§ã—ãŸ"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "pin ã§å„ªå…ˆåº¦ (ã¾ãŸã¯ 0) ãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“"
@@ -3072,16 +3014,20 @@ msgstr "ソースキャッシュã®ä¿å­˜ä¸­ã« IO エラーãŒç™ºç”Ÿã—ã¾ã—ã
msgid "rename failed, %s (%s -> %s)."
msgstr "åå‰ã®å¤‰æ›´ã«å¤±æ•—ã—ã¾ã—ãŸã€‚%s (%s -> %s)"
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum ãŒé©åˆã—ã¾ã›ã‚“"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "ãƒãƒƒã‚·ãƒ¥ã‚µãƒ ãŒé©åˆã—ã¾ã›ã‚“"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "サイズãŒé©åˆã—ã¾ã›ã‚“"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "ä¸æ­£ãªæ“作 %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3090,16 +3036,16 @@ msgstr ""
"期待ã•ã‚Œã‚‹ã‚¨ãƒ³ãƒˆãƒª '%s' ㌠Release ファイル内ã«è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ (誤ã£ãŸ "
"sources.list エントリã‹ã€å£Šã‚ŒãŸãƒ•ã‚¡ã‚¤ãƒ«)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Release ファイル中㮠'%s' ã®ãƒãƒƒã‚·ãƒ¥ã‚µãƒ ã‚’見ã¤ã‘られã¾ã›ã‚“"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "以下ã®éµ ID ã«å¯¾ã—ã¦åˆ©ç”¨å¯èƒ½ãªå…¬é–‹éµãŒã‚ã‚Šã¾ã›ã‚“:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3108,14 +3054,14 @@ msgstr ""
"%s ã® Release ファイルã¯æœŸé™åˆ‡ã‚Œ (%s 以æ¥ç„¡åŠ¹) ã§ã™ã€‚ã“ã®ãƒªãƒã‚¸ãƒˆãƒªã‹ã‚‰ã®æ›´æ–°"
"物ã¯é©ç”¨ã•ã‚Œã¾ã›ã‚“。"
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
"ディストリビューションãŒç«¶åˆã—ã¦ã„ã¾ã™: %s (%s を期待ã—ã¦ã„ãŸã®ã« %s ã‚’å–å¾—ã—"
"ã¾ã—ãŸ)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3125,12 +3071,12 @@ msgstr ""
"ファイルãŒä½¿ã‚ã‚Œã¾ã™ã€‚GPG エラー: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "GPG エラー: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3139,16 +3085,12 @@ msgstr ""
"パッケージ %s ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®ä½ç½®ã‚’特定ã§ãã¾ã›ã‚“。ãŠãらãã“ã®ãƒ‘ッケージを手動"
"ã§ä¿®æ­£ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ (存在ã—ãªã„アーキテクãƒãƒ£ã®ãŸã‚)。"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"パッケージ %s ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®ä½ç½®ã‚’特定ã§ãã¾ã›ã‚“。ãŠãらãã“ã®ãƒ‘ッケージを手動"
-"ã§ä¿®æ­£ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚"
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "'%2$s' ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' をダウンロードã™ã‚‹ã‚½ãƒ¼ã‚¹ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3156,16 +3098,12 @@ msgstr ""
"パッケージインデックスファイルãŒå£Šã‚Œã¦ã„ã¾ã™ã€‚パッケージ %s ã« Filename: "
"フィールドãŒã‚ã‚Šã¾ã›ã‚“。"
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "サイズãŒé©åˆã—ã¾ã›ã‚“"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Release ファイル %s を解釈ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Release ファイル %s ã«ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒã‚ã‚Šã¾ã›ã‚“"
@@ -3312,32 +3250,32 @@ msgstr "èªè¨¼ãƒ¬ã‚³ãƒ¼ãƒ‰ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“: %s"
msgid "Hash mismatch for: %s"
msgstr "ãƒãƒƒã‚·ãƒ¥ã‚µãƒ ãŒé©åˆã—ã¾ã›ã‚“: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "'%2$s' ã®ãƒªãƒªãƒ¼ã‚¹ '%1$s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "'%2$s' ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "タスク '%s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "æ­£è¦è¡¨ç¾ '%s' ã§ã¯ãƒ‘ッケージã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "純粋ãªä»®æƒ³ãƒ‘ッケージã®ãŸã‚ã€ãƒ‘ッケージ '%s' ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’é¸ã¹ã¾ã›ã‚“"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3346,18 +3284,18 @@ msgstr ""
"パッケージ '%s' ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«æ¸ˆã¿ã¾ãŸã¯å€™è£œã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¯ã„ãšã‚Œã‚‚存在ã—ãªã„"
"ã®ã§é¸ã¹ã¾ã›ã‚“"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"純粋ãªä»®æƒ³ãƒ‘ッケージã®ãŸã‚ã€ãƒ‘ッケージ '%s' ã®æœ€æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’é¸ã¹ã¾ã›ã‚“"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr "候補ãŒå­˜åœ¨ã—ãªã„ã®ã§ã€ãƒ‘ッケージ %s ã®å€™è£œãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’é¸ã¹ã¾ã›ã‚“"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3384,111 +3322,131 @@ msgstr "外部ソルãƒãŒé©åˆ‡ãªã‚¨ãƒ©ãƒ¼ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãªã—ã«å¤±æ•—ã—ã¾
msgid "Execute external solver"
msgstr "外部ソルãƒã‚’実行"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "dpkg を実行ã—ã¦ã„ã¾ã™"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"ã„ãã¤ã‹ã®ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ãƒ•ã‚¡ã‚¤ãƒ«ã®ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ã“れらã¯ç„¡è¦–ã•ã‚Œ"
+"ã‚‹ã‹ã€å¤ã„ã‚‚ã®ãŒä»£ã‚ã‚Šã«ä½¿ã‚ã‚Œã¾ã™ã€‚"
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "%s をインストールã—ã¦ã„ã¾ã™"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "%s を設定ã—ã¦ã„ã¾ã™"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "%s を削除ã—ã¦ã„ã¾ã™"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "%s を完全ã«å‰Šé™¤ã—ã¦ã„ã¾ã™"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "%s ã®æ¶ˆå¤±ã‚’記録ã—ã¦ã„ã¾ã™"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "インストール後トリガ %s を実行ã—ã¦ã„ã¾ã™"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "ディレクトリ '%s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "ファイル '%s' をオープンã§ãã¾ã›ã‚“ã§ã—ãŸ"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "%s を準備ã—ã¦ã„ã¾ã™"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "%s を展開ã—ã¦ã„ã¾ã™"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "%s ã®è¨­å®šã‚’準備ã—ã¦ã„ã¾ã™"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s をインストールã—ã¾ã—ãŸ"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "%s ã®å‰Šé™¤ã‚’準備ã—ã¦ã„ã¾ã™"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s を削除ã—ã¾ã—ãŸ"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "%s を完全ã«å‰Šé™¤ã™ã‚‹æº–備をã—ã¦ã„ã¾ã™"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s を完全ã«å‰Šé™¤ã—ã¾ã—ãŸ"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "%s ã«æ›¸ãè¾¼ã‚ã¾ã›ã‚“"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"ログã«æ›¸ãè¾¼ã‚ã¾ã›ã‚“。openpty() ã«å¤±æ•—ã—ã¾ã—㟠(/dev/pts ãŒãƒžã‚¦ãƒ³ãƒˆã•ã‚Œã¦ã„ãª"
-"ã„?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "dpkg を実行ã—ã¦ã„ã¾ã™"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "æ“作ã¯ãã‚ŒãŒå®Œäº†ã™ã‚‹å‰ã«ä¸­æ–­ã•ã‚Œã¾ã—ãŸ"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "MaxReports ã«ã™ã§ã«é”ã—ã¦ã„ã‚‹ãŸã‚ã€ãƒ¬ãƒãƒ¼ãƒˆã¯æ›¸ãè¾¼ã¾ã‚Œã¾ã›ã‚“"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "ä¾å­˜é–¢ä¿‚ã®å•é¡Œ - 未設定ã®ã¾ã¾ã«ã—ã¦ã„ã¾ã™"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3496,7 +3454,7 @@ msgstr ""
"エラーメッセージã¯å‰ã®å¤±æ•—ã‹ã‚‰ç¶šãエラーã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆ"
"ã¯æ›¸ãè¾¼ã¾ã‚Œã¾ã›ã‚“。"
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3504,7 +3462,7 @@ msgstr ""
"エラーメッセージã¯ãƒ‡ã‚£ã‚¹ã‚¯ãƒ•ãƒ«ã‚¨ãƒ©ãƒ¼ã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆã¯æ›¸"
"ãè¾¼ã¾ã‚Œã¾ã›ã‚“。"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3512,7 +3470,16 @@ msgstr ""
"エラーメッセージã¯ãƒ¡ãƒ¢ãƒªè¶…éŽã‚¨ãƒ©ãƒ¼ã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆã¯æ›¸ã"
"è¾¼ã¾ã‚Œã¾ã›ã‚“。"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"エラーメッセージã¯ãƒ‡ã‚£ã‚¹ã‚¯ãƒ•ãƒ«ã‚¨ãƒ©ãƒ¼ã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆã¯æ›¸"
+"ãè¾¼ã¾ã‚Œã¾ã›ã‚“。"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3547,3 +3514,95 @@ msgstr ""
#: apt-pkg/deb/debsystem.cc:121
msgid "Not locked"
msgstr "ロックã•ã‚Œã¦ã„ã¾ã›ã‚“"
+
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "注æ„: タスク '%2$s' ã«å¯¾ã—㦠'%1$s' ã‚’é¸æŠžã—ã¦ã„ã¾ã™\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "注æ„: æ­£è¦è¡¨ç¾ '%2$s' ã«å¯¾ã—㦠'%1$s' ã‚’é¸æŠžã—ã¦ã„ã¾ã™\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "%s ã¯ä»¥ä¸‹ã®ãƒ‘ッケージã§æä¾›ã•ã‚Œã¦ã„る仮想パッケージã§ã™:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr "[候補ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãªã—]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "インストールã™ã‚‹ãƒ‘ッケージを明示的ã«é¸æŠžã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚"
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "パッケージ %s ã¯ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã«ã¯å­˜åœ¨ã—ã¾ã™ãŒã€åˆ©ç”¨ã§ãã¾ã›ã‚“。\n"
+#~ "ãŠãらãã€ãã®ãƒ‘ッケージãŒè¦‹ã¤ã‹ã‚‰ãªã„ã‹ã€ã‚‚ã†å¤ããªã£ã¦ã„ã‚‹ã‹ã€\n"
+#~ "ã‚ã‚‹ã„ã¯åˆ¥ã®ã‚½ãƒ¼ã‚¹ã‹ã‚‰ã®ã¿ã—ã‹åˆ©ç”¨ã§ããªã„ã¨ã„ã†çŠ¶æ³ãŒè€ƒãˆã‚‰ã‚Œã¾ã™\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "ã—ã‹ã—ã€ä»¥ä¸‹ã®ãƒ‘ッケージã§ç½®ãæ›ãˆã‚‰ã‚Œã¦ã„ã¾ã™:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "パッケージ '%s' ã«ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«å€™è£œãŒã‚ã‚Šã¾ã›ã‚“"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "'%s' ã®ã‚ˆã†ãªä»®æƒ³ãƒ‘ッケージã¯å‰Šé™¤ã§ãã¾ã›ã‚“\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "パッケージ %s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ãªã„ãŸã‚ã€å‰Šé™¤ã¯ã§ãã¾ã›ã‚“。'%s' ã®ã“"
+#~ "ã¨ã§ã—ょã†ã‹?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "パッケージ '%s' ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ãªã„ãŸã‚ã€å‰Šé™¤ã¯ã§ãã¾ã›ã‚“\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "注æ„ã€'%2$s' ã®ä»£ã‚ã‚Šã« '%1$s' ã‚’é¸æŠžã—ã¦ã„ã¾ã™\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "ã™ã§ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ãŠã‚Šã‚¢ãƒƒãƒ—グレードも設定ã•ã‚Œã¦ã„ãªã„ãŸã‚ã€%s をス"
+#~ "キップã—ã¾ã™ã€‚\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "%s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ãªã„ã®ã«ã‚¢ãƒƒãƒ—グレードã ã‘ãŒè¦æ±‚ã•ã‚Œã¦ã„ã‚‹ã®ã§ã€"
+#~ "スキップã—ã¾ã™ã€‚\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "ダウンロードã§ããªã„ãŸã‚ã€%s ã®å†ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã¯ä¸å¯èƒ½ã§ã™ã€‚\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s ã¯ã™ã§ã«æœ€æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™ã€‚\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "'%3$s' ã«ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' (%2$s) ã‚’é¸æŠžã—ã¾ã—ãŸ\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "'%4$s' ã®ãŸã‚ã€'%3$s' ã«ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' (%2$s) ã‚’é¸æŠžã—ã¾ã—ãŸ\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "パッケージ '%2$s' ã®åˆ©ç”¨ã§ããªã„ターゲットリリース '%1$s' を無視"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "%s %s をダウンロードã—ã¦ã„ã¾ã™"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "ã“ã‚Œã¯æ­£ã—ã„ DEB アーカイブã§ã¯ã‚ã‚Šã¾ã›ã‚“。'%s'ã€'%s'ã€'%s' ã®ã„ãšã‚Œã®ãƒ¡ãƒ³"
+#~ "ãƒãƒ¼ã‚‚ã‚ã‚Šã¾ã›ã‚“"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum ãŒé©åˆã—ã¾ã›ã‚“"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "パッケージ %s ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®ä½ç½®ã‚’特定ã§ãã¾ã›ã‚“。ãŠãらãã“ã®ãƒ‘ッケージを手"
+#~ "å‹•ã§ä¿®æ­£ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚"
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "ログã«æ›¸ãè¾¼ã‚ã¾ã›ã‚“。openpty() ã«å¤±æ•—ã—ã¾ã—㟠(/dev/pts ãŒãƒžã‚¦ãƒ³ãƒˆã•ã‚Œã¦"
+#~ "ã„ãªã„?)\n"
diff --git a/po/km.po b/po/km.po
index 47812dac2..d9826aaac 100644
--- a/po/km.po
+++ b/po/km.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt_po_km\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2006-10-10 09:48+0700\n"
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -20,154 +20,156 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.2\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "កញ្ចប់ %s កំណែ %s មាន​ភាព​អាស្រáŸáž™â€‹áž˜áž·áž“​ážáŸ’រូវ​គ្នា ៖\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " កញ្ចប់​ធម្មážáž¶Â áŸ– "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " កញ្ចប់​និម្មិážâ€‹ážŸáž»áž‘្ធ ៖ "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " កញ្ចប់​និម្មិážâ€‹ážáŸ‚​មួយ ៖ "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " កញ្ចប់​និម្មិážâ€‹áž›áž¶áž™Â áŸ– "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " បាážáŸ‹áž”ង់ ៖ "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "កំណែ​ផ្សáŸáž„ៗ​សរុប ៖ "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
#, fuzzy
msgid "Total distinct descriptions: "
msgstr "កំណែ​ផ្សáŸáž„ៗ​សរុប ៖ "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "ភាព​អាស្រáŸáž™â€‹ážŸážšáž»áž” ៖ "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "ទំនាក់ទំនង កំណែ/ឯកសារ​សរុប ៖ "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
#, fuzzy
msgid "Total Desc/File relations: "
msgstr "ទំនាក់ទំនង កំណែ/ឯកសារ​សរុប ៖ "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "ការផ្គូរផ្គង​ការផ្ដល់​សរុប ៖ "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "ážáŸ’សែ​អក្សរ​សរុប​ ៖ "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "ទំហំ​កំណែ​ភាព​អាស្រáŸáž™â€‹ážŸážšáž»áž” ៖ "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "ទំហំ slack សរុប ៖"
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "ទំហំ​សរុប​ដែល​ទុក​សម្រាប់ ៖ "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "ឯកសារ​កញ្ចប់ %s នៅ​ážáž¶áž„ក្រៅ​ការ​ធ្វើសមកាលកម្ម ។"
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "រក​កញ្ចប់​មិន​ឃើញ"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "អ្នក​ážáŸ’រូវ​ážáŸ‚​ផ្ដល់​លំនាំ​មួយ​ដែល​ពិážâ€‹áž”្រាកដ"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "មិន​អាច​កំណážáŸ‹â€‹áž‘ីážáž¶áŸ†áž„​កញ្ចប់ %s បានឡើយ"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "ឯកសារ​កញ្ចប់ ៖"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "ឃ្លាំង​សម្ងាážáŸ‹â€‹áž‹áž·ážáž“ៅ​ក្រៅ​ការ​ធ្វើ​សមកាល​កម្ម ដែលមិន​អាច x-ref ឯកសារ​កញ្ចប់​បាន​ទáŸ"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "កញ្ចប់​ដែល​បាន​ážáŸ’ទាស់ ៖"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(រក​មិន​ឃើញ)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " បាន​ដំឡើង ៖ "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " សាកល្បង ៖ "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(គ្មាន)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " ážáŸ’ទាស់​កញ្ចប់ ៖ "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " ážáž¶ážšáž¶áž„​កំណែ ៖"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, fuzzy, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s សម្រាប់ %s %s បាន​ចងក្រងនៅលើ​%s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -241,36 +243,36 @@ msgstr ""
"មើល​ apt-cache(8) និង​ apt.conf(5) សម្រាប់​ពáŸážáŸŒáž˜áž¶áž“​បន្ážáŸ‚ម​​មាន​ក្នុង​ទំពáŸážšâ€‹ážŸáŸ€ážœáž—ៅដៃ​ ។\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
#, fuzzy
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "សូម​ផ្ដល់​ឈ្មោះ​ឲ្យ​ážáž¶ážŸâ€‹áž“áŸáŸ‡ ឧទាហរណáŸâ€‹ážŠáž¼áž…ជា 'ដáŸáž”ៀន 2.1r1 ážáž¶ážŸâ€‹áž‘ី ១' ជាដើម"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "សូម​បញ្ចូល​ážáž¶ážŸâ€‹áž€áŸ’នុង​ដ្រាយ​ហើយ​ចុច​បញ្ចូល​"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ប្ážáž¼ážšâ€‹ážˆáŸ’មោះ %s ទៅ %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "ធ្វើដំណើរការ​នáŸáŸ‡â€‹áž˜áŸ’ážáž„​ទៀážâ€‹ សម្រាប់​ស៊ីឌី​ទាំងអស់​​ក្នុង​សំណុំ​របស់​អ្នក ។"
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "​អាគុយម៉ង់​មិន​មាន​គូ​ទáŸ"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -298,597 +300,62 @@ msgstr ""
" -c=? អាន​ឯកសារ​ការកំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​នáŸáŸ‡ \n"
" -o=? កំណážáŸ‹â€‹áž‡áž˜áŸ’រើស​ការ​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ​ážáž¶áž˜â€‹áž…áž·ážáŸ’ហឧ. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "Y"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Regex កំហុស​ការចងក្រង​ - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​មាន​ភាពអាស្រáŸáž™â€‹ážŠáŸ‚ល​ážáž»ážŸâ€‹áž‚្នា ៖"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "ប៉ុន្ážáŸ‚​ %s ážáŸ’រូវ​បាន​ដំឡើង​"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "ប៉ុន្ážáŸ‚​​វា​មិន​អាច​ដំឡើង​បាន​ទáŸâ€‹"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "ប៉ុន្ážáŸ‚​​វា​ជា​កញ្ចប់​និម្មិážâ€‹"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "ប៉ុន្ážáŸ‚​វា​មិន​បាន​ដំឡើង​ទáŸâ€‹"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "ប៉ុន្ážáŸ‚ វា​នឹង​មិន​ážáŸ’រូវ​បាន​ដំឡើង​ទáŸ"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " ឬ"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​នឹងážáŸ’រូវ​បាន​យកចáŸáž‰Â áŸ–"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "​កញ្ចប់​ážáž¶áž„​ក្រោម​ážáŸ’រូវ​បាន​យក​ážáŸ’រឡប់​មក​វិញ ៖"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​នឹង​​ážáŸ’រូវ​បាន​​ធ្វើ​ឲ្យប្រសើ​ឡើង ៖"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​នឹង​​ážáŸ’រូវ​បាន​បន្ទាប ៖"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "កញ្ចប់​រង់ចាំ​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​​បានផ្លាស់​​ប្ážáž¼ážšâ€‹Â áŸ–"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (ដោយ​សារážáŸ‚​ %s) "
-
-#: cmdline/apt-get.cc:600
-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"
-"ការយកចáŸáž‰â€‹áž“áŸáŸ‡â€‹áž˜áž·áž“​ážáŸ’រូវ​បានធ្វើ​ទáŸâ€‹áž›áž»áŸ‡ážáŸ’រា​ážáŸ‚​អ្នកដឹង​ážáž¶â€‹â€‹áž¢áŸ’នក​កំពុង​ធ្វើ​អ្វីឲ្យប្រាកដ !"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu ážáŸ’រូវ​បាន​ធ្វើ​ឲ្យ​ប្រសើរ %lu ážáŸ’រូវ​បានដំឡើង​ážáŸ’មី "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu ážáŸ’រូវ​បាន​ដំឡើង​ឡើង​វិញ "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu ​ážáŸ’រូវបានបន្ទាប់ "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu ដែលážáŸ’រូវ​យក​ចáŸáž‰â€‹ ហើយ​ %lu មិន​​បាន​ធ្វើ​ឲ្យ​ប្រសើរឡើយ ។\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu មិន​បាន​ដំឡើង​ ឬ យក​ចáŸáž‰áž”ានគ្រប់ជ្រុងជ្រោយ​ឡើយ​ ។\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "ចំណាំ កំពុង​ជ្រើស​ %s សម្រាប់ regex '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "ចំណាំ កំពុង​ជ្រើស​ %s សម្រាប់ regex '%s'\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "កញ្ចប់​ %s ជា​កញ្ចប់​និម្មិážâ€‹ážŠáŸ‚ល​បាន​ផ្ážáž›áŸ‹â€‹ážŠáŸ„យ​ ៖\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [បានដំឡើង​]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "កំណែ​សាកល្បង​"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "អ្នក​គួរážáŸ‚​ជ្រើស​យក​មួយ​​ឲ្យ​ច្បាស់​ដើម្បី​ដំឡើង​ ។"
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"មិន​មាន​កញ្ចប់​ %s ទ០ប៉ុន្ážáŸ‚​វា​ážáŸ’រូវ​បាន​យោង​ទៅ​ដោយ​កញ្ចប់​ផ្សáŸáž„​ទៀážâ€‹Â áŸ”\n"
-"វា​មាននáŸáž™â€‹ážáž¶â€‹áž”ាážáŸ‹áž€áž‰áŸ’ចប់ ​គáŸâ€‹áž›áŸ‚ង​ប្រើ ឬ\n"
-"អាច​រក​បាន​ពី​ប្រភព​ផ្សáŸáž„​ទៀáž\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "ទោះ​យ៉ាងណា​កáŸážŠáŸ„áž™ កញ្ចប់​ážáž¶áž„ក្រោម​ជំនួស​វា ៖"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "កញ្ចប់​ %s មិនមាន​ការដំឡើងសាកល្បងឡើយ"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s áž‘áŸâ€‹ ដូច្នáŸáŸ‡ មិន​បាន​យកចáŸáž‰áž¡áž¾áž™ \n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s áž‘áŸâ€‹ ដូច្នáŸáŸ‡ មិន​បាន​យកចáŸáž‰áž¡áž¾áž™ \n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណážáŸ‹â€‹â€‹Â áŸ”\n"
-
-#: cmdline/apt-get.cc:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណážáŸ‹â€‹â€‹Â áŸ”\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវិញបានទ០វា​មិនអាចážáŸ’រូវបាន​ទាញយកបានឡើយ ។\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ជាកំណែ​ដែលážáŸ’មីបំផុážážšáž½áž…ទៅហើយ ។\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, fuzzy, c-format
-msgid "%s set to manually installed.\n"
-msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "កំពុង​កែ​ភាពអាស្រáŸáž™â€‹..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " បាន​បរាជáŸáž™Â áŸ”"
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "មិន​អាច​កែ​ភាព​អាស្រáŸáž™â€‹áž”ានឡើយ​"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "មិនអាច​បង្រួម​ការ​កំណážáŸ‹â€‹áž—ាព​ប្រសើរ​​បាន​ឡើយ​"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " ធ្វើ​រួច"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "អ្នក​ប្រហែល​ជា​ចង់រážáŸ‹ 'apt-get -f install' ដើម្បី​កែ​វា​​ទាំងនáŸáŸ‡â€‹áž áž¾áž™Â áŸ”"
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "ភាព​អាស្រáŸáž™â€‹ážŠáŸ‚ល​ážáž»ážŸâ€‹áž‚្នា ។ ព្យាយាម​ការ​ប្រើ -f ។"
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ព្រមាន​ ៖ មិនអាច​ធ្វើការផ្ទៀងផ្ទាážáŸ‹áž—ាពážáŸ’រឹមážáŸ’រូវកញ្ចប់ážáž¶áž„ក្រោមបានឡើយ !"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "បានបដិសáŸáž’​ការព្រមាន​ការផ្ទៀងផ្ទាážáŸ‹áž—ាព​ážáŸ’រឹមážáŸ’រូវ ។\n"
-
-#: cmdline/apt-get.cc:1108
-#, fuzzy
-msgid "Install these packages without verification?"
-msgstr "ដំឡើង​កញ្ចប់​ទាំងនáŸáŸ‡ ​ដោយគ្មានការពិនិážáŸ’យ​បញ្ជាក់ [y/N] ? "
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "មិនអាច​ផ្ទៀងផ្ទាážáŸ‹áž—ាពážáŸ’រឹមážáŸ’រូវកញ្ចប់​មួយចំនួន​បានឡើយ​"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "មាន​បញ្ហា​ ហើយ -y ážáŸ’រូវ​បាន​ប្រើ​ដោយគ្មាន​​ --force​-yes"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "កំហុស​ážáž¶áž„ក្នុង កញ្ចប់​ដំឡើង​ážáŸ’រូវ​បាន​ហៅ​​ជាមួយ​កញ្ចប់​ដែល​ážáž¼áž… !"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "កញ្ចប់ ​ážáŸ’រូវការឲ្យ​យក​ចáŸáž‰â€‹â€‹ ប៉ុន្ážáŸ‚មិនអនុញ្ញាážâ€‹áž²áŸ’យយកចáŸáž‰áž¡áž¾áž™Â áŸ”"
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "កំហុស​ážáž¶áž„ក្នុង​ ការ​រៀប​ážáž¶áž˜â€‹áž›áŸ†ážŠáž¶áž”់​មិន​បាន​បញ្ចប់ឡើយ"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "យី អី​កáŸâ€‹áž…ម្លែង​ម្លáŸáŸ‡.. ទំហំ​មិន​ដូច​គ្នា​ឡើយ ។ សូម​ផ្ញើ​អ៊ីមែល​ទៅ apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "ážáŸ’រូវការ​​យក​ %sB/%sB នៃ​បáŸážŽáŸ’ណសារ ។​\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "ážáŸ’រូវ​ការយក​ %sB នៃ​បáŸážŽáŸ’ណសារ ។\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, fuzzy, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "បន្ទាប់​ពី​ពន្លា​ %sB នៃ​ការ​បន្ážáŸ‚ម​​ទំហំ​ážáž¶ážŸâ€‹ážáŸ’រូវ​បាន​ប្រើ ។\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, fuzzy, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "បន្ទាប់​ពី​ពន្លា​ %sB ទំហំ​ážáž¶ážŸáž“ឹង​​ទំនáŸážšÂ áŸ” \n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "មិន​អាច​កំណážáŸ‹â€‹áž‘ំហំ​ទំនáŸážšâ€‹áž€áŸ’នុង​ %s បានឡើយ"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "អ្នក​គ្មាន​ទំហំ​​ទំនáŸážšâ€‹áž‚្រប់គ្រាន់​ក្នុង​​ %s ឡើយ ។"
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "បានបញ្ជាក់​ážáŸ‚ប្រážáž·áž”ážáŸ’ážáž·áž€áž¶ážšážŠáŸ‚លមិនសំážáž¶áž“់ប៉ុណ្ណោះ ប៉ុន្ážáŸ‚​នáŸáŸ‡áž˜áž·áž“មែនជាប្រážáž·áž”ážáŸ’ážáž·áž€áž¶ážšáž˜áž·áž“សំážáž¶áž“់នោះទáŸÂ áŸ”"
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "បាទ/ចាស ធ្វើ​ដូច​ដែល​ážáŸ’ញុំ​និយាយ !"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"អ្នកប្រហែល​ជា​ធ្វើ​អ្វីមួយ​ដែល​អាច​បង្ករ​ឲ្យ​មាន​មហន្ដរាយ ។\n"
-"ដើម្បី​បន្ហ​​វាយ​ក្នុង​ឃ្លា​ '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "បោះបង់ ។"
-
-#: cmdline/apt-get.cc:1313
-#, fuzzy
-msgid "Do you want to continue?"
-msgstr "ážáž¾â€‹áž¢áŸ’នក​ចង់​បន្ážáž¬â€‹ [បាទ ចាស/áž‘áŸâ€‹] ? "
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ទាញ​យក​"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​ážáŸ‚​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"អនុញ្ញាážâ€‹áž²áŸ’យ​ទៅ​ប្រមូល​យក​បáŸážŽáŸ’ណសារ​មួយ​ចំនួន​ ប្រហែល​ជា​រážáŸ‹â€‹áž—ាព​ទាន់​សមáŸáž™ apt-get ឬ ព្យាយាមប្រើ​ជាមួយ --"
-"fix- ដែលបាážáŸ‹áž¬áŸ‹Â ?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix- ដែលបាážáŸ‹â€‹ áž“áž·áž„ ​ស្វប​មáŸážŒáŸ€â€‹ážŠáŸ‚ល​មិនបាន​​គាំទ្រនៅពáŸáž›â€‹áž”ច្ចុប្បន្ន​"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាážáŸ‹áž”ង់​បានឡើយ ។"
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។"
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, fuzzy, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "មិនអាចážáŸ’លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "ពាក្យ​បញ្ជា​ដែលធ្វើ​ឲ្យ​ទាន់​សមáŸáž™â€‹áž‚្មាន​អាគុយម៉ង់​ទáŸ"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "áž–áŸážáŸŒáž˜áž¶áž“​ដូចážáž‘ៅនáŸáŸ‡ អាចជួយ​ដោះស្រាយ​ស្ážáž¶áž“ភាព​បាន ៖"
-
-#: cmdline/apt-get.cc:1853
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "កំហុស​ážáž¶áž„ក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យážáž¼áž…​ឧបករណáŸ"
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖"
-msgstr[1] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖"
-msgstr[1] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "កំហុស​ážáž¶áž„ក្នុង ការធ្វើឲ្យប្រសើរ​ទាំងអស់បានធ្វើឲ្យ​ឧបករណáŸâ€‹ážáž¼áž…"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "អ្នក​ប្រហែល​ជា​ចង់​រážáŸ‹ 'apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នáŸáŸ‡Â áŸ–"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"ភាពអស្រáŸáž™â€‹ážŠáŸ‚ល​ážáž»ážŸâ€‹áž‚្នា ។ ព្យាយាម​ 'apt-get -f install' ដោយ​គ្មាន​កញ្ចប់ (ឬ បញ្ជាក់​ដំណោះស្រាយ) ។"
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"មិនអាច​ដំឡើងកញ្ចប់​មួយចំនួន​បានឡើយ ។ áž“áŸáŸ‡â€‹áž˜áž¶áž“​នáŸáž™â€‹ážáž¶â€‹áž¢áŸ’នក​\n"
-"​បានស្នើរ​ស្ážáž¶áž“ភាព​ដែល​មិន​អាច​ធ្វើបានមួយ ឬ ​ប្រសិន​បើ​​អ្នក​កំពុង​ប្រើការចែកចាយ​ពុំ​មាន​លំនឹង​នោះ កញ្ចប់​"
-"ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើážâ€‹áž¡áž¾áž™â€‹\n"
-" ឬ ​បានយក​ចáŸáž‰â€‹áž–ីការមកដល់ ។"
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "កញ្ចប់​ដែល​បាន​ážáž¼áž…​"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "កញ្ចប់​បន្ážáŸ‚ម​ដូចážáž‘ៅនáŸáŸ‡ នឹងážáŸ’រូវបាន​ដំឡើង ៖"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសនáŸÂ áŸ–"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទáŸ"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "បាន​បរាជáŸáž™"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "ធ្វើរួច​"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "កំហុស​ážáž¶áž„ក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យážáž¼áž…​ឧបករណáŸ"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "មិន​អាច​ចាក់​សោ​ážážâ€‹áž‘ាញ​យក​បាន​ឡើយ"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "យ៉ាងហោចណាស់​ážáŸ’រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "មិន​អាច​រក​កញ្ចប់ប្រភព​​សម្រាប់ %s បានឡើយ"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -896,104 +363,114 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "កំពុង​រំលង​ឯកសារ​ដែល​បាន​ទាញយក​រួច​ '%s'\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "មិន​អាច​កំណážáŸ‹â€‹áž‘ំហំ​ទំនáŸážšâ€‹áž€áŸ’នុង​ %s បានឡើយ"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "អ្នក​ពុំ​មាន​ទំហំ​ទំនáŸážšâ€‹áž‚្រប់គ្រាន់​ទáŸâ€‹áž“ៅក្នុង​ %s ឡើយ"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "ážáŸ’រូវការ​យក​ %sB/%sB នៃ​បáŸážŽáŸ’ណសារ​ប្រភព ។\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "ážáŸ’រូវការ​យក​ %sB នៃ​បáŸážŽáŸ’ណសារ​ប្រភព​ ។\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "ទៅប្រមូល​ប្រភព​ %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការទៅប្រមូលយក​បáŸážŽáŸ’ណសារ​មួយចំនួន ។"
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​ážáŸ‚​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "កំពុង​រំលង​ការស្រាយ​នៃប្រភព​ដែលបានស្រាយរួច​នៅក្នុង %s\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "ពាក្យ​បញ្ជា​ស្រាយ '%s' បាន​បរាជáŸáž™â€‹Â áŸ”\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "áž–áž·áž“áž·ážáŸ’យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "សាងសង​ពាក្យ​បញ្ជា​ '%s' បានបរាជáŸáž™â€‹Â áŸ”\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "ដំណើរ​ការ​កូន​បាន​បរាជáŸáž™â€‹"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr "ážáŸ’រូវážáŸ‚​បញ្ជាក់​យ៉ាងហោចណាស់​មួយកញ្ចប់ដើម្បីពិនិážáŸ’áž™ builddeps សម្រាប់"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "មិន​អាច​សាងសង់​​ពáŸážáŸŒáž˜áž¶áž“​ភាពអស្រáŸáž™â€‹ážŸáž˜áŸ’រាប់ %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s មិនមានភាពអាស្រáŸáž™â€‹ážŸáŸ’ážáž¶áž”នាឡើយ​ ។\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
"packages"
msgstr "%s ភាពអស្រáŸáž™â€‹ážŸáž˜áŸ’រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពáŸáž‰áž…áž·ážáŸ’ážâ€‹ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ "
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, 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:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​ážáž˜áŸ’រូវចិážáŸ’ážáž—ាពអាស្រáŸáž™ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺážáŸ’មីពáŸáž€"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1002,37 +479,37 @@ msgstr ""
"ភាពអាស្រáŸáž™ %s សម្រាប់ %s មិនអាច​ážáž˜áŸ’រូវចិážáŸ’ážáž”ានទ០ព្រោះ មិនមាន​កំណែ​នៃកញ្ចប់ %s ដែលអាច​ážáž˜áŸ’រូវចិážáŸ’ážâ€‹"
"ážáž˜áŸ’រូវការ​កំណែបានឡើយ"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
"version"
msgstr "%s ភាពអស្រáŸáž™â€‹ážŸáž˜áŸ’រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពáŸáž‰áž…áž·ážáŸ’ážâ€‹ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ "
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​ážáž˜áŸ’រូវចិážáŸ’ážáž—ាពអាស្រáŸáž™ %s សម្រាប់ %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "ភាពអាស្រáŸáž™â€‹ážŠáŸ‚ល​បង្កើážâ€‹ %s មិន​អាច​បំពáŸáž‰â€‹ážŸáŸáž…ក្ដី​ážáŸ’រូវការ​បាន​ទáŸÂ áŸ”"
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ដំណើរ​​ការ​បង្កើážâ€‹áž—ាព​អាស្រáŸáž™"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "កំពុង​ážáž—្ជាប់​ទៅ​កាន់​ %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "ម៉ូឌុល​ដែល​គាំទ្រ ៖ "
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1117,98 +594,53 @@ msgstr ""
"pages for more information and options.\n"
" This APT has Super Cow Powers.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "វាយ​"
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "យក​ ៖"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "បាន​ទៅ​ប្រមូល​ %sB ក្នុង​ %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [កំពុង​ធ្វើការ​]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"ផ្លាស់ប្ážáž¼ážšâ€‹áž˜áŸážŒáŸ€Â áŸ– សូម​បញ្ចូល​ážáž¶ážŸâ€‹ážŠáŸ‚ល​មាន​ស្លាក\n"
-" '%s'\n"
-"ក្នុង​ដ្រាយ​ '%s' ហើយ​ចុច​បញ្ចូល\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "ប៉ុន្ážáŸ‚​វា​មិន​បាន​ដំឡើង​ទáŸâ€‹"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s ជាកំណែ​ដែលážáŸ’មីបំផុážážšáž½áž…ទៅហើយ ។\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s ជាកំណែ​ដែលážáŸ’មីបំផុážážšáž½áž…ទៅហើយ ។\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "រង់ចាំប់​ %s ប៉ុន្ážáŸ‚ ​វា​មិន​នៅទីនោះ"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​បើក %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1230,6 +662,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1326,8 +775,8 @@ msgstr "អស់ពáŸáž›â€‹áž€áŸ’នុងការážáž—្ជាប់​"
msgid "Server closed the connection"
msgstr "ម៉ាស៊ីន​បម្រើ​បាន​បិទ​ការážáž—្ជាប់​"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "ការអាន​មានកំហុស"
@@ -1340,8 +789,8 @@ msgid "Protocol corruption"
msgstr "ការបង្ážáž¼áž…​ពិធីការ​"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "ការសរសáŸážšâ€‹áž˜áž¶áž“កំហុស"
@@ -1353,6 +802,10 @@ msgstr "មិន​អាច​បង្កើážâ€‹ážšáž“្ធបានឡើ
msgid "Could not connect data socket, connection timed out"
msgstr "មិន​អាច​ážáž—្ជាប់​​រន្ធទិន្ននáŸáž™â€‹áž”ានឡើយ អស់​ពáŸáž›â€‹áž€áŸ’នុងការážáž—្ជាប់​"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "បាន​បរាជáŸáž™"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "មិនអាចážáž—្ជាប់​​រន្ធអកម្ម​​បានឡើយ ។"
@@ -1395,7 +848,7 @@ msgstr "ការážáž—្ជាប់​រន្ធ​​ទិន្ននáŸ
msgid "Unable to accept connection"
msgstr "មិនអាច​ទទួលយក​ការážáž—្ជាប់​បានឡើយ"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "បញ្ហា​ធ្វើឲ្យážáž¼áž…​ឯកសារ"
@@ -1524,81 +977,590 @@ msgstr "áž ážáŸ’ážáž›áŸážáž¶â€‹ážáž¶áž„ក្រោម​មិន​អា
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "កំហុសក្នុងការ​សរសáŸážšâ€‹áž‘ៅកាន់​ឯកសារ"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "កំហុស​ក្នុងការ​អាន​ពី​ម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់​ពីចម្ងាយ​បានបិទការážáž—្ជាប់"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "កំហុស​ក្នុងការអាន​ពី​ម៉ាស៊ីន​បម្រើ"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "កំហុស​ក្នុងការ​សរសáŸážšáž‘ៅកាន់​ឯកសារ"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "ជ្រើស​បាន​បរាជáŸáž™â€‹"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "ការážáž—្ជាប់​បាន​អស់ពáŸáž›â€‹"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "កំហុស​ក្នុងការ​សរសáŸážšáž‘ៅកាន់​ឯកសារលទ្ធផល"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "កំពុង​រង់ចាំ​បឋមកážáž¶"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "ជួរ​បឋមកážáž¶â€‹ážáž¼áž…​"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើបឋមកážáž¶áž…ម្លើយážáž”មិនážáŸ’រឹមážáŸ’រូវ"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​​បឋមកážáž¶áž”្រវែង​​​មាážáž·áž€áž¶â€‹áž˜áž·áž“ážáŸ’រឹមážáŸ’រូវ​"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​បឋមកážáž¶â€‹áž‡áž½ážšâ€‹áž˜áž¶ážáž·áž€áž¶â€‹áž˜áž·áž“​ážáŸ’រឹមážáŸ’រូវ​"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "ម៉ាស៊ីន​បម្រើ HTTP áž“áŸáŸ‡áž”ាន​ážáž¼áž…​​​ជួរ​គាំទ្រ​"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "មិនស្គាល់​ទ្រង់ទ្រាយ​កាលបរិច្ឆáŸáž‘"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "ជ្រើស​បាន​បរាជáŸáž™â€‹"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "ទិន្ននáŸáž™â€‹áž”ឋមកážáž¶â€‹ážáž¼áž…"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "ការážáž—្ជាប់​បាន​អស់ពáŸáž›â€‹"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "ការážáž—្ជាប់​បាន​បរាជáŸáž™â€‹"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "កំហុស​ក្នុងការ​សរសáŸážšáž‘ៅកាន់​ឯកសារលទ្ធផល"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "កំហុស​ážáž¶áž„​ក្នុង​"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "កំហុស​ក្នុងការ​សរសáŸážšáž‘ៅកាន់​ឯកសារ"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "កំហុសក្នុងការ​សរសáŸážšâ€‹áž‘ៅកាន់​ឯកសារ"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "កំហុស​ážáž¶áž„ក្នុង កញ្ចប់​ដំឡើង​ážáŸ’រូវ​បាន​ហៅ​​ជាមួយ​កញ្ចប់​ដែល​ážáž¼áž… !"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "កំហុស​ក្នុងការ​អាន​ពី​ម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់​ពីចម្ងាយ​បានបិទការážáž—្ជាប់"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "កញ្ចប់ ​ážáŸ’រូវការឲ្យ​យក​ចáŸáž‰â€‹â€‹ ប៉ុន្ážáŸ‚មិនអនុញ្ញាážâ€‹áž²áŸ’យយកចáŸáž‰áž¡áž¾áž™Â áŸ”"
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "កំហុស​ក្នុងការអាន​ពី​ម៉ាស៊ីន​បម្រើ"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "កំហុស​ážáž¶áž„ក្នុង​ ការ​រៀប​ážáž¶áž˜â€‹áž›áŸ†ážŠáž¶áž”់​មិន​បាន​បញ្ចប់ឡើយ"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "ទិន្ននáŸáž™â€‹áž”ឋមកážáž¶â€‹ážáž¼áž…"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "យី អី​កáŸâ€‹áž…ម្លែង​ម្លáŸáŸ‡.. ទំហំ​មិន​ដូច​គ្នា​ឡើយ ។ សូម​ផ្ញើ​អ៊ីមែល​ទៅ apt@packages.debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "ការážáž—្ជាប់​បាន​បរាជáŸáž™â€‹"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "ážáŸ’រូវការ​​យក​ %sB/%sB នៃ​បáŸážŽáŸ’ណសារ ។​\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "កំហុស​ážáž¶áž„​ក្នុង​"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "ážáŸ’រូវ​ការយក​ %sB នៃ​បáŸážŽáŸ’ណសារ ។\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "បន្ទាប់​ពី​ពន្លា​ %sB នៃ​ការ​បន្ážáŸ‚ម​​ទំហំ​ážáž¶ážŸâ€‹ážáŸ’រូវ​បាន​ប្រើ ។\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "បន្ទាប់​ពី​ពន្លា​ %sB ទំហំ​ážáž¶ážŸáž“ឹង​​ទំនáŸážšÂ áŸ” \n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "អ្នក​គ្មាន​ទំហំ​​ទំនáŸážšâ€‹áž‚្រប់គ្រាន់​ក្នុង​​ %s ឡើយ ។"
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "មាន​បញ្ហា​ ហើយ -y ážáŸ’រូវ​បាន​ប្រើ​ដោយគ្មាន​​ --force​-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "បានបញ្ជាក់​ážáŸ‚ប្រážáž·áž”ážáŸ’ážáž·áž€áž¶ážšážŠáŸ‚លមិនសំážáž¶áž“់ប៉ុណ្ណោះ ប៉ុន្ážáŸ‚​នáŸáŸ‡áž˜áž·áž“មែនជាប្រážáž·áž”ážáŸ’ážáž·áž€áž¶ážšáž˜áž·áž“សំážáž¶áž“់នោះទáŸÂ áŸ”"
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "បាទ/ចាស ធ្វើ​ដូច​ដែល​ážáŸ’ញុំ​និយាយ !"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"អ្នកប្រហែល​ជា​ធ្វើ​អ្វីមួយ​ដែល​អាច​បង្ករ​ឲ្យ​មាន​មហន្ដរាយ ។\n"
+"ដើម្បី​បន្ហ​​វាយ​ក្នុង​ឃ្លា​ '%s'\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "បោះបង់ ។"
+
+#: apt-private/private-install.cc:254
+#, fuzzy
+msgid "Do you want to continue?"
+msgstr "ážáž¾â€‹áž¢áŸ’នក​ចង់​បន្ážáž¬â€‹ [បាទ ចាស/áž‘áŸâ€‹] ? "
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ទាញ​យក​"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"អនុញ្ញាážâ€‹áž²áŸ’យ​ទៅ​ប្រមូល​យក​បáŸážŽáŸ’ណសារ​មួយ​ចំនួន​ ប្រហែល​ជា​រážáŸ‹â€‹áž—ាព​ទាន់​សមáŸáž™ apt-get ឬ ព្យាយាមប្រើ​ជាមួយ --"
+"fix- ដែលបាážáŸ‹áž¬áŸ‹Â ?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix- ដែលបាážáŸ‹â€‹ áž“áž·áž„ ​ស្វប​មáŸážŒáŸ€â€‹ážŠáŸ‚ល​មិនបាន​​គាំទ្រនៅពáŸáž›â€‹áž”ច្ចុប្បន្ន​"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាážáŸ‹áž”ង់​បានឡើយ ។"
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។"
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "áž–áŸážáŸŒáž˜áž¶áž“​ដូចážáž‘ៅនáŸáŸ‡ អាចជួយ​ដោះស្រាយ​ស្ážáž¶áž“ភាព​បាន ៖"
+
+#: apt-private/private-install.cc:517
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "កំហុស​ážáž¶áž„ក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យážáž¼áž…​ឧបករណáŸ"
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖"
+msgstr[1] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖"
+msgstr[1] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "អ្នក​ប្រហែល​ជា​ចង់​រážáŸ‹ 'apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នáŸáŸ‡Â áŸ–"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"ភាពអស្រáŸáž™â€‹ážŠáŸ‚ល​ážáž»ážŸâ€‹áž‚្នា ។ ព្យាយាម​ 'apt-get -f install' ដោយ​គ្មាន​កញ្ចប់ (ឬ បញ្ជាក់​ដំណោះស្រាយ) ។"
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"មិនអាច​ដំឡើងកញ្ចប់​មួយចំនួន​បានឡើយ ។ áž“áŸáŸ‡â€‹áž˜áž¶áž“​នáŸáž™â€‹ážáž¶â€‹áž¢áŸ’នក​\n"
+"​បានស្នើរ​ស្ážáž¶áž“ភាព​ដែល​មិន​អាច​ធ្វើបានមួយ ឬ ​ប្រសិន​បើ​​អ្នក​កំពុង​ប្រើការចែកចាយ​ពុំ​មាន​លំនឹង​នោះ កញ្ចប់​"
+"ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើážâ€‹áž¡áž¾áž™â€‹\n"
+" ឬ ​បានយក​ចáŸáž‰â€‹áž–ីការមកដល់ ។"
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "កញ្ចប់​ដែល​បាន​ážáž¼áž…​"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "កញ្ចប់​បន្ážáŸ‚ម​ដូចážáž‘ៅនáŸáŸ‡ នឹងážáŸ’រូវបាន​ដំឡើង ៖"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសនáŸÂ áŸ–"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ព្រមាន​ ៖ មិនអាច​ធ្វើការផ្ទៀងផ្ទាážáŸ‹áž—ាពážáŸ’រឹមážáŸ’រូវកញ្ចប់ážáž¶áž„ក្រោមបានឡើយ !"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "បានបដិសáŸáž’​ការព្រមាន​ការផ្ទៀងផ្ទាážáŸ‹áž—ាព​ážáŸ’រឹមážáŸ’រូវ ។\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "មិនអាច​ផ្ទៀងផ្ទាážáŸ‹áž—ាពážáŸ’រឹមážáŸ’រូវកញ្ចប់​មួយចំនួន​បានឡើយ​"
+
+#: apt-private/private-download.cc:46
+#, fuzzy
+msgid "Install these packages without verification?"
+msgstr "ដំឡើង​កញ្ចប់​ទាំងនáŸáŸ‡ ​ដោយគ្មានការពិនិážáŸ’យ​បញ្ជាក់ [y/N] ? "
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [បានដំឡើង​]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [បានដំឡើង​]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [បានដំឡើង​]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​មាន​ភាពអាស្រáŸáž™â€‹ážŠáŸ‚ល​ážáž»ážŸâ€‹áž‚្នា ៖"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "ប៉ុន្ážáŸ‚​ %s ážáŸ’រូវ​បាន​ដំឡើង​"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "ប៉ុន្ážáŸ‚​​វា​មិន​អាច​ដំឡើង​បាន​ទáŸâ€‹"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "ប៉ុន្ážáŸ‚​​វា​ជា​កញ្ចប់​និម្មិážâ€‹"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "ប៉ុន្ážáŸ‚​វា​មិន​បាន​ដំឡើង​ទáŸâ€‹"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "ប៉ុន្ážáŸ‚ វា​នឹង​មិន​ážáŸ’រូវ​បាន​ដំឡើង​ទáŸ"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " ឬ"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​នឹងážáŸ’រូវ​បាន​យកចáŸáž‰Â áŸ–"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "​កញ្ចប់​ážáž¶áž„​ក្រោម​ážáŸ’រូវ​បាន​យក​ážáŸ’រឡប់​មក​វិញ ៖"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​នឹង​​ážáŸ’រូវ​បាន​​ធ្វើ​ឲ្យប្រសើ​ឡើង ៖"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​នឹង​​ážáŸ’រូវ​បាន​បន្ទាប ៖"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "កញ្ចប់​រង់ចាំ​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​​បានផ្លាស់​​ប្ážáž¼ážšâ€‹Â áŸ–"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (ដោយ​សារážáŸ‚​ %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ព្រមាន​ ៖ កញ្ចប់ដែល​ចាំបាច់​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​យកចáŸáž‰Â áŸ”\n"
+"ការយកចáŸáž‰â€‹áž“áŸáŸ‡â€‹áž˜áž·áž“​ážáŸ’រូវ​បានធ្វើ​ទáŸâ€‹áž›áž»áŸ‡ážáŸ’រា​ážáŸ‚​អ្នកដឹង​ážáž¶â€‹â€‹áž¢áŸ’នក​កំពុង​ធ្វើ​អ្វីឲ្យប្រាកដ !"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu ážáŸ’រូវ​បាន​ធ្វើ​ឲ្យ​ប្រសើរ %lu ážáŸ’រូវ​បានដំឡើង​ážáŸ’មី "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu ážáŸ’រូវ​បាន​ដំឡើង​ឡើង​វិញ "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu ​ážáŸ’រូវបានបន្ទាប់ "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu ដែលážáŸ’រូវ​យក​ចáŸáž‰â€‹ ហើយ​ %lu មិន​​បាន​ធ្វើ​ឲ្យ​ប្រសើរឡើយ ។\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu មិន​បាន​ដំឡើង​ ឬ យក​ចáŸáž‰áž”ានគ្រប់ជ្រុងជ្រោយ​ឡើយ​ ។\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "Y"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Regex កំហុស​ការចងក្រង​ - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "កំពុង​កែ​ភាពអាស្រáŸáž™â€‹..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " បាន​បរាជáŸáž™Â áŸ”"
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "មិន​អាច​កែ​ភាព​អាស្រáŸáž™â€‹áž”ានឡើយ​"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "មិនអាច​បង្រួម​ការ​កំណážáŸ‹â€‹áž—ាព​ប្រសើរ​​បាន​ឡើយ​"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " ធ្វើ​រួច"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "អ្នក​ប្រហែល​ជា​ចង់រážáŸ‹ 'apt-get -f install' ដើម្បី​កែ​វា​​ទាំងនáŸáŸ‡â€‹áž áž¾áž™Â áŸ”"
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "ភាព​អាស្រáŸáž™â€‹ážŠáŸ‚ល​ážáž»ážŸâ€‹áž‚្នា ។ ព្យាយាម​ការ​ប្រើ -f ។"
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "ពាក្យ​បញ្ជា​ដែលធ្វើ​ឲ្យ​ទាន់​សមáŸáž™â€‹áž‚្មាន​អាគុយម៉ង់​ទáŸ"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "កំហុស​ážáž¶áž„ក្នុង ការធ្វើឲ្យប្រសើរ​ទាំងអស់បានធ្វើឲ្យ​ឧបករណáŸâ€‹ážáž¼áž…"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "ធ្វើរួច​"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ប្ážáž¼ážšâ€‹ážˆáŸ’មោះ %s ទៅ %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "វាយ​"
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "យក​ ៖"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "បាន​ទៅ​ប្រមូល​ %sB ក្នុង​ %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [កំពុង​ធ្វើការ​]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"ផ្លាស់ប្ážáž¼ážšâ€‹áž˜áŸážŒáŸ€Â áŸ– សូម​បញ្ចូល​ážáž¶ážŸâ€‹ážŠáŸ‚ល​មាន​ស្លាក\n"
+" '%s'\n"
+"ក្នុង​ដ្រាយ​ '%s' ហើយ​ចុច​បញ្ចូល\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "មិន​អាច​អាន​ %s បានឡើយ"
@@ -1657,34 +1619,34 @@ msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​បង្កើážâ€‹
msgid "Connection closed prematurely"
msgstr "បាន​បិទ​ការ​ážáž—្ជាប់​មុន​ពáŸáž›"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "ការ​កំណážáŸ‹â€‹áž›áŸ†áž“ាំ​ដើម​មិន​ល្អ !"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "សង្កážáŸ‹â€‹ បញ្ចូល ​ដើម្បី​បន្ážÂ áŸ”"
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr ""
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "កំហុ​ស​មួយ​ចំនួន​បាន​កើážâ€‹áž¡áž¾áž„​ážážŽáŸˆáž–áŸáž›â€‹áž–ន្លា​កញ្ចប់ ។ ážáŸ’ញុំ​នឹង​កំណážáŸ‹ážšáž…នាសម្បáŸáž“្ធ"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "កញ្ចប់​ដែល​បាន​ដំឡើង​ ។ áž“áŸáŸ‡â€‹áž”្រហែល​ជា​លទ្ធផល​កំហុស​ស្ទួន​"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "ឬ​ កំហុសដែលបង្ក​ដោយ​ការ​បាážáŸ‹áž”ង់​ភាពអាស្រáŸáž™â€‹Â áŸ” ​មិន​អី​ទáŸâ€‹ គ្រាន់​ážáŸ‚​ជា​កំហុស "
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "នៅážáž¶áž„លើ​សារ​នáŸáŸ‡â€‹áž‚ឺ​សំážáž¶áž“់​ណាស់​ ។ សូម​ជួសជុល​ពួកវា​ ហើយ​រážáŸ‹â€‹áž€áž¶ážšážŠáŸ†áž¡áž¾áž„​ម្ážáž„ទៀážâ€‹"
@@ -1934,36 +1896,36 @@ msgstr "បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​អាន
msgid "Failed to unlink %s"
msgstr "បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ផ្ដាច់ %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ážâ€‹ %s ទៅ %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " DeLink កំណážáŸ‹â€‹áž“ៃ​ការ​វាយ %sB ។\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "áž”áŸážŽáŸ’ណសារ​គ្មាន​វាល​កញ្ចប់​"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s គ្មាន​ធាážáž»áž’ាážáž»áž”ញ្ចូល​​បដិសáŸáž’ឡើយ\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " អ្នក​ážáŸ‚ទាំ %s គឺ %s មិនមែន​ %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s គ្មាន​ធាážáž»â€‹áž”ដិសáŸáž’​ប្រភព\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s គ្មាន​ធាážáž»áž”​ដិសáŸáž’គោល​ពីរ​ដែរ\n"
@@ -2042,7 +2004,7 @@ msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់
msgid "Failed to rename %s to %s"
msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ប្ážáž¼ážšâ€‹ážˆáŸ’មោះ %s ទៅ %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2111,7 +2073,7 @@ msgstr "áž”áŸážŽáŸ’ណសារ​បាន​ážáž¼áž…​"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar ឆáŸáž€ážŸáž¶áŸ†â€‹áž”ាន​បរាជáŸáž™ áž”áŸážŽáŸ’ណសារ​បាន​ážáž¼áž…"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "មិន​ស្គាល់​ប្រភáŸáž‘​បឋមកážáž¶â€‹ TAR %u ដែលជា​សមាជិក​ %s"
@@ -2235,22 +2197,17 @@ msgid "Unable to stat %s"
msgstr "មិន​អាច​ážáŸ’លែង %s បានឡើយ"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "áž“áŸáŸ‡â€‹áž‡áž¶áž˜áž·áž“មែនជា​បáŸážŽáŸ’ណសារ​ DEB ​ážáŸ’រឹមážáŸ’រូវទ០បាážáŸ‹áž”ង់សមាជិក​ '%s'​"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, fuzzy, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "áž“áŸáŸ‡áž‡áž¶â€‹áž”áŸážŽáŸ’ណសារ DEB មិន​ážáŸ’រឹមážáŸ’រូវ វាគ្មានសមាជិក '%s' ឬ '%s'"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "កំហុស​ážáž¶áž„ក្នុង ​មិន​អាច​កំណážáŸ‹â€‹áž‘ីážáž¶áŸ†áž„​សមាជិក​ %s បានឡើយ"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "ឯកសារážáŸ’ážšáž½ážáž–áž·áž“áž·ážáŸ’យ​ដែលមិនអាច​ញែកបាន"
@@ -2308,85 +2265,85 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "ជម្រើស​ %s រក​មិន​ឃើញ​ឡើយ"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "មិន​បាន​​ទទួល​ស្គាល់​ប្រភáŸáž‘​អក្សរ​សង្ážáŸáž” ៖ '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "កំពុង​បើ​ឯកសារ​កំណážáŸ‹ážšáž…នាសម្ពáŸáž“្ធ​ %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ ប្លុក​ចាប់​ផ្ážáž¾áž˜â€‹â€‹ážŠáŸ„យ​គ្មាន​ឈ្មោះ​ ។"
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ ស្លាក​ដែលបាន Malformed"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ ážáž˜áŸ’លៃ​ឥážáž”ានការ​នៅ​ក្រៅ​"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ សáŸáž…ក្ដីបង្គាប់​អាចážáŸ’រូវបានធ្វើ​ážáŸ‚នៅលើ​កម្រិážâ€‹áž€áŸ†áž–ូល​ážáŸ‚ប៉ុណ្ណោះ"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ មាន​ការរួមបញ្ចូល​ដែលដាក់​រួមគ្នា​យ៉ាងច្រើន"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ បានរួម​បញ្ចូល​ពី​ទីនáŸáŸ‡â€‹"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ សáŸáž…ក្ដី​បង្គាប់​ដែល​មិនបានគាំទ្រ '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ សáŸáž…ក្ដីបង្គាប់​អាចážáŸ’រូវបានធ្វើ​ážáŸ‚នៅលើ​កម្រិážâ€‹áž€áŸ†áž–ូល​ážáŸ‚ប៉ុណ្ណោះ"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ សារឥážáž”ានការ​បន្ážáŸ‚ម ដែលនៅážáž¶áž„ចុង​ឯកសារ"
@@ -2411,48 +2368,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... ធ្វើរួច​"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "ជម្រើស​បន្ទាážáŸ‹â€‹áž–ាក្យបញ្ជា '%c' [from %s] មិនស្គាល់ឡើយ ។"
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "មិនយល់​ពី​ជម្រើស​បន្ទាážáŸ‹â€‹áž–ាក្យ​បញ្ជា %s ឡើយ"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "ជម្រើស​បន្ទាážáŸ‹áž–ាក្យ​បញ្ជា​ %s មិនមែនជាប៊ូលីនទáŸ"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "ជម្រើស​ %s ážáŸ’រូវការ​អាគុយម៉ង់មួយ ។"
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "ជម្រើស %s ៖ ការបញ្ជាក់​ធាážáž»â€‹áž€áŸ†ážŽážáŸ‹ážšáž…នាសម្ពáŸáž“្ធážáŸ’រូវážáŸ‚មាន =<val> មួយ ។"
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "ជម្រើស​ %s ážáŸ’រូវ​ការ​អាគុយម៉ង់​ចំនួន​គážáŸ‹â€‹ មិន​មែន​ '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "ជម្រើស​ '%s' វែងពáŸáž€"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "មិនបានយល់អំពី​ការស្គាល់​ %s ឡើយ សូមព្យាយមយក​ áž–áž·ážâ€‹ ​​​ឫ មិន​ពិážÂ áŸ”"
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "ប្រážáž·áž”ážáŸ’ážáž·áž€áž¶ážšâ€‹áž˜áž·áž“​ážáŸ’រឹមážáŸ’រូវ​ %s"
@@ -2466,116 +2423,116 @@ msgstr "មិនអាច​ážáŸ’លែង ចំណុចម៉ោន %s áž”á
msgid "Failed to stat the cdrom"
msgstr "បរាជáŸáž™áž€áŸ’នុងការ​ážáŸ’លែង ស៊ីឌីរ៉ូម"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "មិន​ប្រើប្រាស់​ការចាក់សោ សម្រាប់ážáŸ‚ឯកសារចាក់សោ​ដែលបានážáŸ‚អានប៉ុណ្ណោះ %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "មិន​អាច​បើក​ឯកសារ​ចាក់សោ​ %s បានឡើយ"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "មិនប្រើ​ការចាក់សោ សម្រាប់ nfs ឯកសារ​ចាក់សោដែលបានម៉ោន%s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "មិន​អាច​ចាក់សោ %s បានឡើយ"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។"
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។"
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "ដំណើរការ​រង​ %s បានážáŸ’រឡប់​ទៅកាន់​កូដ​មាន​កំហុស​ (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "ដំណើរការ​រង​ %s បានចáŸáž‰ ដោយ​មិន​រំពឹង​ទុក​ "
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​បង្កើážâ€‹ážŠáŸ†ážŽáž¾ážšáž€áž¶ážšâ€‹ážšáž„​ IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ប្រážáž·áž”ážáŸ’ážáž·â€‹áž€áž˜áŸ’មវិធី​បង្ហាប់ "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "អាន​, នៅážáŸ‚​មាន %lu ដើម្បី​អាន​ ប៉ុន្ážáŸ‚​គ្មាន​អ្វី​នៅសល់"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "សរសáŸážšâ€‹, នៅážáŸ‚មាន​ %lu ដើម្បី​សរសáŸážšâ€‹ ប៉ុន្ážáŸ‚​មិន​អាច​"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់ážáŸ†ážŽâ€‹áž¯áž€ážŸáž¶ážš"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​"
@@ -2694,12 +2651,12 @@ msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​បើក %s"
msgid "Failed to write temporary StateFile %s"
msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​សរសáŸážšâ€‹áž¯áž€ážŸáž¶ážš %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់​ %s (2) បានឡើយ"
@@ -2774,19 +2731,19 @@ msgstr "បន្ទាážáŸ‹â€‹ Malformed %u ក្នុង​បញ្ជី
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "ប្រភáŸáž‘​ '%s' មិន​ស្គាល់នៅលើបន្ទាážáŸ‹â€‹ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2808,7 +2765,7 @@ msgid ""
"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr "កញ្ចប់ %s ážáŸ’រូវការឲ្យដំឡើង ប៉ុន្ážáŸ‚​ ážáŸ’ញុំ​មិន​អាច​រក​បáŸážŽáŸ’ណសារ​សម្រាប់​វា​បាន​ទáŸâ€‹Â áŸ”"
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2816,18 +2773,10 @@ msgstr ""
"កំហុស pkgProblemResolver::ដោះស្រាយ​សញ្ញាបញ្ឈប់​ដែលបានបង្កើហនáŸáŸ‡â€‹áž”្រហែលជា បង្កដោយកញ្ចប់​"
"ដែលបាន​ទុក ។"
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "មិន​អាច​កែ​បញ្ហាបានទáŸáŸ អ្កបានទុក​កញ្ចប់​ដែល​ážáž¼áž… ។។"
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"ឯកសារ​លិបិក្រម​មួយ​ចំនួន​បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​​ទាញ​យក ​ពួកវាážáŸ’រូវបាន​មិន​អើពើ​ ឬ ប្រើ​​ឯកសារ​ចាស់​ជំនួសវិញ ​​។"
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2870,12 +2819,12 @@ msgstr "វិធីសាស្ážáŸ’រ​ %s មិន​អាច​ចាáž
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "សូម​បញ្ចូល​ស្លាក​ឌីស​ ៖ '%s' ក្នុង​ដ្រាយ​ '%s' ហើយ​សង្កážáŸ‹â€‹áž…ូល ។"
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "មិន​គាំទ្រ​ប្រពáŸáž“្ធ​កញ្ចប់'%s' ឡើយ"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "មិនអាច​កំណážáŸ‹â€‹áž”្រភáŸáž‘​ប្រពáŸáž“្ធ​កញ្ចប់​ដែល​សមរម្យ​បានឡើយ"
@@ -2907,17 +2856,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "កំណážáŸ‹ážáŸ’រា​មិនážáŸ’រឹមážáŸ’រូវ​នៅក្នុង​ឯកសារចំណង់ចំណូលចិážáŸ’ហមិនមាន​បឋមកážáž¶â€‹áž€áž‰áŸ’ចប់ទáŸ"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "មិន​បាន​យល់​ពី​ប្រភáŸáž‘​ម្ជុល %s ឡើយ"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "គ្មាន​អទិភាព (ឬ សូន្យ​) បានបញ្ជាក់​សម្រាប់​ម្ជុល​ទáŸ"
@@ -2985,45 +2934,49 @@ msgstr "IO កំហុសក្នុងការររក្សាទុក​
msgid "rename failed, %s (%s -> %s)."
msgstr "ប្ážáž¼ážšâ€‹ážˆáŸ’មោះ​បានបរាជáŸáž™â€‹, %s (%s -> %s) ។"
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum មិន​ផ្គួផ្គង​"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
#, fuzzy
msgid "Hash Sum mismatch"
msgstr "MD5Sum មិន​ផ្គួផ្គង​"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "ទំហំ​មិនបាន​ផ្គួផ្គង​"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "ប្រážáž·áž”ážáŸ’ážáž·áž€áž¶ážšâ€‹áž˜áž·áž“​ážáŸ’រឹមážáŸ’រូវ​ %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "គ្មាន​កូនសោ​សាធារណៈ​អាច​រក​បាន​ក្នុងកូនសោ IDs ážáž¶áž„ក្រោម​នáŸáŸ‡áž‘áŸÂ áŸ–\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3031,12 +2984,12 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3045,30 +2998,23 @@ msgstr ""
"ážáŸ’ញុំ​មិន​អាច​រកទីážáž¶áŸ†áž„​ឯកសារ​សម្រាប់​កញ្ចប់ %s បាន​ទáŸÂ áŸ” ​មាន​នáŸáž™â€‹ážáž¶â€‹áž¢áŸ’នក​ážáŸ’រូវការ​ជួសជុល​កញ្ចប់​នáŸáŸ‡â€‹ážŠáŸ„យ​ដៃ ។ "
"(ដោយសារ​​បាážáŸ‹â€‹ážŸáŸ’ážáž¶áž”ážáŸ’យកម្ម)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"ážáŸ’ញុំ​មិន​អាច​រកទីážáž¶áŸ†áž„​ឯកសារ​សម្រាប់​កញ្ចប់ %s បានទáŸÂ áŸ” ​មាន​នáŸáž™â€‹ážáž¶â€‹áž¢áŸ’នក​ážáŸ’រូវការ​ជួសជុល​កញ្ចប់​នáŸáŸ‡â€‹ážŠáŸ„យ​ដៃ ។"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr "កញ្ចប់​ឯកសារ​លិបិក្រម​ážáŸ’រូវ​បាន​ážáž¼áž… ។ គ្មាន​ឈ្មោះ​ឯកសារ ៖ វាល​សម្រាប់​កញ្ចប់នáŸáŸ‡â€‹áž‘áŸâ€‹ %s ។"
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "ទំហំ​មិនបាន​ផ្គួផ្គង​"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n"
@@ -3210,49 +3156,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "MD5Sum មិន​ផ្គួផ្គង​"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "រក​មិន​ឃើញ​ការ​ចáŸáž‰â€‹áž•áŸ’សាយ​ '%s' សម្រាប់​ '%s' ឡើយ"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "រក​មិន​ឃើញ​កំណែ​ '%s' សម្រាប់ '%s'"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទáŸ"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទáŸ"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3277,127 +3223,155 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"ឯកសារ​លិបិក្រម​មួយ​ចំនួន​បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​​ទាញ​យក ​ពួកវាážáŸ’រូវបាន​មិន​អើពើ​ ឬ ប្រើ​​ឯកសារ​ចាស់​ជំនួសវិញ ​​។"
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, fuzzy, c-format
msgid "Installing %s"
msgstr "បាន​ដំឡើង %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "កំពុង​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "កំពុង​យក %s áž…áŸáž‰"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "បាន​យក %s áž…áŸáž‰â€‹áž‘ាំង​ស្រុង"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr ""
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, fuzzy, c-format
msgid "Directory '%s' missing"
msgstr "រាយបញ្ជី​ážážâ€‹ %spartial គឺ​បាážáŸ‹áž”ង់​ ។"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "កំពុងរៀបចំ​ %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "កំពុង​ស្រាយ %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "កំពុងរៀបចំ​កំណážáŸ‹ážšáž…នាសម្ពáŸáž“្ធ %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "បាន​ដំឡើង %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "កំពុងរៀបចំដើម្បី​ការយក​ចáŸáž‰â€‹áž“ៃ %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "បាន​យក %s áž…áŸáž‰"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "កំពុង​រៀបចំ​យក %s áž…áŸáž‰â€‹áž‘ាំង​ស្រុង"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "បាន​យក %s áž…áŸáž‰â€‹áž‘ាំង​ស្រុង"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "មិន​អាច​សរសáŸážšâ€‹áž‘ៅ %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3427,6 +3401,86 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "ចំណាំ កំពុង​ជ្រើស​ %s សម្រាប់ regex '%s'\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "ចំណាំ កំពុង​ជ្រើស​ %s សម្រាប់ regex '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "កញ្ចប់​ %s ជា​កញ្ចប់​និម្មិážâ€‹ážŠáŸ‚ល​បាន​ផ្ážáž›áŸ‹â€‹ážŠáŸ„យ​ ៖\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "កំណែ​សាកល្បង​"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "អ្នក​គួរážáŸ‚​ជ្រើស​យក​មួយ​​ឲ្យ​ច្បាស់​ដើម្បី​ដំឡើង​ ។"
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "មិន​មាន​កញ្ចប់​ %s ទ០ប៉ុន្ážáŸ‚​វា​ážáŸ’រូវ​បាន​យោង​ទៅ​ដោយ​កញ្ចប់​ផ្សáŸáž„​ទៀážâ€‹Â áŸ”\n"
+#~ "វា​មាននáŸáž™â€‹ážáž¶â€‹áž”ាážáŸ‹áž€áž‰áŸ’ចប់ ​គáŸâ€‹áž›áŸ‚ង​ប្រើ ឬ\n"
+#~ "អាច​រក​បាន​ពី​ប្រភព​ផ្សáŸáž„​ទៀáž\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "ទោះ​យ៉ាងណា​កáŸážŠáŸ„áž™ កញ្ចប់​ážáž¶áž„ក្រោម​ជំនួស​វា ៖"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "កញ្ចប់​ %s មិនមាន​ការដំឡើងសាកល្បងឡើយ"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s áž‘áŸâ€‹ ដូច្នáŸáŸ‡ មិន​បាន​យកចáŸáž‰áž¡áž¾áž™ \n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s áž‘áŸâ€‹ ដូច្នáŸáŸ‡ មិន​បាន​យកចáŸáž‰áž¡áž¾áž™ \n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណážáŸ‹â€‹â€‹Â áŸ”\n"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណážáŸ‹â€‹â€‹Â áŸ”\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវិញបានទ០វា​មិនអាចážáŸ’រូវបាន​ទាញយកបានឡើយ ។\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s ជាកំណែ​ដែលážáŸ’មីបំផុážážšáž½áž…ទៅហើយ ។\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n"
+
+#, fuzzy
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "áž“áŸáŸ‡áž‡áž¶â€‹áž”áŸážŽáŸ’ណសារ DEB មិន​ážáŸ’រឹមážáŸ’រូវ វាគ្មានសមាជិក '%s' ឬ '%s'"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum មិន​ផ្គួផ្គង​"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "ážáŸ’ញុំ​មិន​អាច​រកទីážáž¶áŸ†áž„​ឯកសារ​សម្រាប់​កញ្ចប់ %s បានទáŸÂ áŸ” ​មាន​នáŸáž™â€‹ážáž¶â€‹áž¢áŸ’នក​ážáŸ’រូវការ​ជួសជុល​កញ្ចប់​នáŸáŸ‡â€‹ážŠáŸ„យ​ដៃ ។"
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "កំពុង​បើ​ឯកសារ​កំណážáŸ‹ážšáž…នាសម្ពáŸáž“្ធ​ %s"
diff --git a/po/ko.po b/po/ko.po
index 638c741d7..5524160d5 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2010-08-30 02:31+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
"Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n"
@@ -15,150 +15,152 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "%s íŒ¨í‚¤ì§€ì˜ %s ë²„ì „ì˜ ì˜ì¡´ì„±ì´ 맞지 않습니다:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "ì „ì²´ 패키지 ì´ë¦„ : "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "전체 패키지 구조: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " ì¼ë°˜ 패키지: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " 순수 ê°€ìƒ íŒ¨í‚¤ì§€: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " ë‹¨ì¼ ê°€ìƒ íŒ¨í‚¤ì§€: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " 혼합 ê°€ìƒ íŒ¨í‚¤ì§€: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " ë¹ ì§: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "개별 버전 전체: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "개별 설명 전체: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "ì „ì²´ ì˜ì¡´ì„±: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "ì „ì²´ 버전/íŒŒì¼ ê´€ê³„: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "ì „ì²´ 설명/íŒŒì¼ ê´€ê³„: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "전체 제공 매핑: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "ì „ì²´ 패턴 문ìžì—´: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "ì „ì²´ ì˜ì¡´ì„± 버전 용량: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "전체 빈 용량: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "차지하는 전체 용량: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "패키지 íŒŒì¼ %s 파ì¼ì´ ë™ê¸°í™”ë˜ì§€ 않았습니다."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "패키지가 없습니다"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "최소 í•œ ê°œì˜ ê²€ìƒ‰ì–´ë¥¼ 지정해야 합니다"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "%s 패키지를 ì°¾ì„ ìˆ˜ 없습니다"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "패키지 파ì¼:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "ìºì‹œê°€ ë™ê¸°í™”ë˜ì§€ 않았습니다. 패키지 파ì¼ì„ ìƒí˜¸ 참조할 수 없습니다"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "핀 패키지:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(ì—†ìŒ)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " 설치: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " 후보: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ì—†ìŒ)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " 패키지 핀: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " 버전 í…Œì´ë¸”:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s(%s), ì»´íŒŒì¼ ì‹œê° %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -233,35 +235,35 @@ msgstr ""
"좀 ë” ìžì„¸í•œ 정보는 apt-cache(8) ë° apt.conf(5) 매뉴얼 페ì´ì§€ë¥¼ 보십시오.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "ì´ ë””ìŠ¤í¬ì˜ ì´ë¦„ì„ ì •í•˜ì‹­ì‹œì˜¤ (예: 'Debian 5.0.3 Disk 1')"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "ë“œë¼ì´ë¸Œì— 디스í¬ë¥¼ 넣고 Enter를 누르십시오"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "%s 파ì¼ì˜ ì´ë¦„ì„ %s(으)ë¡œ ë°”ê¾¸ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "현재 ê°–ê³  있는 다른 CDì—ë„ ì´ ê³¼ì •ì„ ë°˜ë³µí•˜ì‹­ì‹œì˜¤."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "ì¸ìˆ˜ê°€ ë‘ ê°œê°€ 아닙니다"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -289,594 +291,55 @@ msgstr ""
" -c=? 해당 설정 파ì¼ì„ ì½ìŠµë‹ˆë‹¤\n"
" -o=? ìž„ì˜ì˜ ì˜µì…˜ì„ ì„¤ì •í•©ë‹ˆë‹¤. 예를 들어 -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[Y/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[y/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "Y"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "ì •ê·œì‹ ì»´íŒŒì¼ ì˜¤ë¥˜ - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ì˜ ì˜ì¡´ì„±ì´ 맞지 않습니다:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "하지만 %s 패키지를 설치했습니다"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "하지만 %s 패키지를 설치할 것입니다"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "하지만 설치할 수 없습니다"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "하지만 ê°€ìƒ íŒ¨í‚¤ì§€ìž…ë‹ˆë‹¤"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "하지만 설치하지 않았습니다"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "하지만 %s 패키지를 설치하지 ì•Šì„ ê²ƒìž…ë‹ˆë‹¤"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " 혹ì€"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "ë‹¤ìŒ ìƒˆ 패키지를 설치할 것입니다:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 지울 것입니다:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 과거 버전으로 유지합니다:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 업그레ì´ë“œí•  것입니다:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 다운그레ì´ë“œí•  것입니다:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "ê³ ì •ë˜ì—ˆë˜ ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 바꿀 것입니다:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (%s때문ì—) "
-
-#: cmdline/apt-get.cc:600
-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"
-"무슨 ì¼ì„ 하고 있는 지 정확히 알지 못한다면 지우지 마십시오!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%luê°œ 업그레ì´ë“œ, %luê°œ 새로 설치, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu개 다시 설치, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%luê°œ 업그레ì´ë“œ, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%luê°œ 제거 ë° %luê°œ 업그레ì´ë“œ 안 함.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu개를 완전히 설치하지 못했거나 지움.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "주ì˜, ìž‘ì—… '%2$s'ì— ëŒ€í•´ '%1$s'ì„(를) ì„ íƒí•©ë‹ˆë‹¤\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "주ì˜, ì •ê·œì‹ '%2$s'ì— ëŒ€í•´ '%1$s'ì„(를) ì„ íƒí•©ë‹ˆë‹¤\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "%s 패키지는 다ìŒì´ 제공하는 ê°€ìƒ íŒ¨í‚¤ì§€ìž…ë‹ˆë‹¤:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [설치함]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr "[후보 버전 아님]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "설치할 패키지를 하나 분명히 지정해야 합니다."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"%s 패키지를 사용할 수 없습니다. 하지만 다른 패키지가 참조하고 있습니다.\n"
-"해당 패키지가 누ë½ë˜ì—ˆê±°ë‚˜ 지워졌다는 뜻입니다. 아니면 ë˜ ë‹¤ë¥¸ ê³³ì—ì„œ\n"
-"패키지를 받아와야 하는 ê²½ìš°ì¼ ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤.\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "하지만 ë‹¤ìŒ íŒ¨í‚¤ì§€ê°€ 대체합니다:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "'%s' 패키지는 설치할 수 있는 후보가 없습니다"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "'%s' 패키지와 ê°™ì€ ê°€ìƒ íŒ¨í‚¤ì§€ëŠ” 제거할 수 없습니다\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "주ì˜, '%2$s' ëŒ€ì‹ ì— '%1$s' 패키지를 ì„ íƒí•©ë‹ˆë‹¤\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"%s 패키지를 건너 ëœë‹ˆë‹¤. ì´ë¯¸ 설치ë˜ì–´ 있고 업그레ì´ë“œë¥¼ 하지 않습니다.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "%s 패키지를 건너 ëœë‹ˆë‹¤. 설치ë˜ì§€ 않았고 업그레ì´ë“œë§Œ 요청합니다.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "%s 패키지를 다시 설치하는 건 불가능합니다. 다운로드할 수 없습니다.\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s 패키지는 ì´ë¯¸ 최신 버전입니다.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s 패키지 수ë™ì„¤ì¹˜ë¡œ 지정합니다.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "'%3$s' íŒ¨í‚¤ì§€ì˜ '%1$s' (%2$s) ë²„ì „ì„ ì„ íƒí•©ë‹ˆë‹¤\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "'%3$s' íŒ¨í‚¤ì§€ì˜ '%1$s' (%2$s) ë²„ì „ì„ ì„ íƒí•©ë‹ˆë‹¤\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "ì˜ì¡´ì„±ì„ 바로잡는 중입니다..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " 실패."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "ì˜ì¡´ì„±ì„ ë°”ë¡œìž¡ì„ ìˆ˜ 없습니다"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "업그레ì´ë“œ ì§‘í•©ì„ ìµœì†Œí™”í•  수 없습니다"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " 완료"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr ""
-"ì´ ìƒí™©ì„ 바로잡으려면 'apt-get -f install'ì„ ì‹¤í–‰í•´ì•¼ í•  ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "ì˜ì¡´ì„±ì´ 맞지 않습니다. -f ì˜µì…˜ì„ ì‚¬ìš©í•´ 보십시오."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "경고: ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ ì¸ì¦í•  수 없습니다!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "ì¸ì¦ 경고를 무시합니다.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "확ì¸í•˜ì§€ ì•Šê³  패키지를 설치하시겠습니까?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "ì¸ì¦í•  수 없는 패키지가 있습니다"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "문제가 ë°œìƒí–ˆê³  -y ì˜µì…˜ì´ --force-yes 옵션 ì—†ì´ ì‚¬ìš©ë˜ì—ˆìŠµë‹ˆë‹¤"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "내부 오류. ë§ê°€ì§„ 패키지ì—ì„œ InstallPackages를 호출했습니다!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "패키지를 제거해야 하지만 제거가 금지ë˜ì–´ 있습니다."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "내부 오류. ìˆœì„œë³€ê²½ìž‘ì—…ì´ ë나지 않았습니다"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"ì´ìƒí•˜ê²Œë„ í¬ê¸°ê°€ 서로 다릅니다. apt@packages.debian.orgë¡œ ì´ë©”ì¼ì„ 보내주십"
-"시오."
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "%së°”ì´íŠ¸/%së°”ì´íŠ¸ ì•„ì¹´ì´ë¸Œë¥¼ 받아야 합니다.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "%së°”ì´íŠ¸ ì•„ì¹´ì´ë¸Œë¥¼ 받아야 합니다.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "ì´ ìž‘ì—… 후 %së°”ì´íŠ¸ì˜ ë””ìŠ¤í¬ ê³µê°„ì„ ë” ì‚¬ìš©í•˜ê²Œ ë©ë‹ˆë‹¤.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "ì´ ìž‘ì—… 후 %së°”ì´íŠ¸ì˜ ë””ìŠ¤í¬ ê³µê°„ì´ ë¹„ì›Œì§‘ë‹ˆë‹¤.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "%sì˜ ì—¬ìœ  ê³µê°„ì˜ í¬ê¸°ë¥¼ 파악할 수 없습니다"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "%s ì•ˆì— ì¶©ë¶„í•œ 여유 ê³µê°„ì´ ì—†ìŠµë‹ˆë‹¤."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"사소한 작업만 가능하ë„ë¡(Trivial Only) 지정ë˜ì—ˆì§€ë§Œ ì´ ìž‘ì—…ì€ ì‚¬ì†Œí•œ ìž‘ì—…ì´ "
-"아닙니다."
-
-# ìž…ë ¥ì„ ë°›ì•„ì•¼ 한다. 한글 ìž…ë ¥ì„ ëª» í•  수 있으므로 ì›ë¬¸ 그대로 사용.
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Yes, do as I say!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"ì‹œìŠ¤í…œì— ë¬´ì–¸ê°€ í•´ê°€ ë˜ëŠ” ìž‘ì—…ì„ í•˜ë ¤ê³  합니다.\n"
-"계ì†í•˜ì‹œë ¤ë©´ ë‹¤ìŒ ë¬¸êµ¬ë¥¼ 입력하십시오: '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "중단."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "ê³„ì† í•˜ì‹œê² ìŠµë‹ˆê¹Œ?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "%s 파ì¼ì„ ë°›ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤ %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "ì¼ë¶€ 파ì¼ì„ ë°›ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "다운로드를 마쳤고 다운로드 전용 모드입니다"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"ì•„ì¹´ì´ë¸Œë¥¼ ë°›ì„ ìˆ˜ 없습니다. ì•„ë§ˆë„ apt-get update를 실행해야 하거나 --fix-"
-"missing ì˜µì…˜ì„ ì¤˜ì„œ 실행해야 í•  것입니다."
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing 옵션과 ë™ì‹œì— 미디어 바꾸기는 현재 지ì›í•˜ì§€ 않습니다"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "빠진 패키지를 ë°”ë¡œìž¡ì„ ìˆ˜ 없습니다."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "설치를 중단합니다."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"ë‹¤ìŒ íŒ¨í‚¤ì§€ëŠ” íŒ¨í‚¤ì§€ì˜ íŒŒì¼ì„ ëª¨ë‘ ë‹¤ë¥¸ 패키지가\n"
-"ë®ì–´ì¼ê¸° ë•Œë¬¸ì— ì‚¬ë¼ì¡ŒìŠµë‹ˆë‹¤:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "주ì˜: dpkgì—ì„œ ìžë™ìœ¼ë¡œ ì˜ë„ì ìœ¼ë¡œ 수행했습니다."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "'%2$s' íŒ¨í‚¤ì§€ì˜ '%1$s' ëŒ€ìƒ ë¦´ë¦¬ìŠ¤ëŠ” 없으므로 무시합니다."
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "소스 패키지로 '%s'ì„(를) '%s' 대신 ì„ íƒí•©ë‹ˆë‹¤\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "'%2$s' íŒ¨í‚¤ì§€ì˜ '%1$s' ë²„ì „ì€ ì—†ìœ¼ë¯€ë¡œ 무시합니다."
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "update ëª…ë ¹ì€ ì¸ìˆ˜ë¥¼ 받지 않습니다"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr "삭제를 할 수 없으므로 AutoRemover를 실행하지 못합니다"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"AutoRemoverê°€ 뭔가를 ë§ê°€ëœ¨ë¦° 것으로 보입니다. ì´ ë¬¸ì œëŠ” 실제 ì¼ì–´ë‚˜ì„œëŠ”\n"
-"안 ë©ë‹ˆë‹¤. aptì— ëŒ€í•´ 버그 보고를 하십시오."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "ì´ ìƒí™©ì„ í•´ê²°í•˜ëŠ”ë° ë‹¤ìŒ ì •ë³´ê°€ ë„ì›€ì´ ë  ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "내부 오류, 문제 í•´ê²° í”„ë¡œê·¸ëž¨ì´ ë¬´ì–¸ê°€ë¥¼ ë§ê°€ëœ¨ë ¸ìŠµë‹ˆë‹¤"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "ë‹¤ìŒ íŒ¨í‚¤ì§€ê°€ ìžë™ìœ¼ë¡œ 설치ë˜ì—ˆì§€ë§Œ ë” ì´ìƒ 필요하지 않습니다:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "패키지 %lu개가 ìžë™ìœ¼ë¡œ 설치ë˜ì—ˆì§€ë§Œ ë” ì´ìƒ 필요하지 않습니다.\n"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "ì´ë“¤ì„ 지우려면 'apt-get autoremove'를 사용하십시오."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "내부 오류, AllUpgrade í”„ë¡œê·¸ëž¨ì´ ë¬´ì–¸ê°€ë¥¼ ë§ê°€ëœ¨ë ¸ìŠµë‹ˆë‹¤"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"ì˜ì¡´ì„±ì´ 맞지 않습니다. 패키지 ì—†ì´ 'apt-get -f install'ì„ ì‹œë„í•´ 보십시오 "
-"(아니면 í•´ê²° ë°©ë²•ì„ ì§€ì •í•˜ì‹­ì‹œì˜¤)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"몇몇 패키지를 설치할 수 없습니다. 요청한 ìƒí™©ì´ 불가능할 ìˆ˜ë„ ìžˆê³ ,\n"
-"불안정 ë°°í¬íŒì„ 사용해서 ì¼ë¶€ 필요한 패키지를 ì•„ì§ ë§Œë“¤ì§€ 않았거나,\n"
-"ì•„ì§ Incomingì—ì„œ 나오지 ì•Šì€ ê²½ìš°ì¼ ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "ë§ê°€ì§„ 패키지"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ ë” ì„¤ì¹˜í•  것입니다:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "제안하는 패키지:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "추천하는 패키지:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "%s 패키지를 ì°¾ì„ ìˆ˜ 없습니다"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s 패키지 수ë™ì„¤ì¹˜ë¡œ 지정합니다.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s 패키지는 수ë™ì„¤ì¹˜ë¡œ 지정합니다.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "업그레ì´ë“œë¥¼ 계산하는 중입니다... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "실패"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "완료"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "내부 오류, 문제 í•´ê²° í”„ë¡œê·¸ëž¨ì´ ë¬´ì–¸ê°€ë¥¼ ë§ê°€ëœ¨ë ¸ìŠµë‹ˆë‹¤"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "다운로드 디렉터리를 잠글 수 없습니다"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "해당ë˜ëŠ” 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "%sì˜ ì†ŒìŠ¤ 패키지를 ì°¾ì„ ìˆ˜ 없습니다"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -885,7 +348,7 @@ msgstr ""
"알림: '%s' íŒ¨í‚¤ì§•ì€ ë‹¤ìŒ '%s' 버전 컨트롤 시스템ì—ì„œ 관리합니다:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, fuzzy, c-format
msgid ""
"Please use:\n"
@@ -896,85 +359,95 @@ msgstr ""
"다ìŒê³¼ ê°™ì´ í•˜ì‹­ì‹œì˜¤:\n"
"bzr get %s\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "ì´ë¯¸ 다운로드 ë°›ì€ íŒŒì¼ '%s'ì€(는) 다시 받지 ì•Šê³  건너 ëœë‹ˆë‹¤.\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "%sì˜ ì—¬ìœ  ê³µê°„ì˜ í¬ê¸°ë¥¼ 파악할 수 없습니다"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "%sì— ì¶©ë¶„í•œ ê³µê°„ì´ ì—†ìŠµë‹ˆë‹¤"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "소스 ì•„ì¹´ì´ë¸Œë¥¼ %së°”ì´íŠ¸/%së°”ì´íŠ¸ 받아야 합니다.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "소스 ì•„ì¹´ì´ë¸Œë¥¼ %së°”ì´íŠ¸ 받아야 합니다.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "%s 소스를 가져옵니다\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "ì¼ë¶€ ì•„ì¹´ì´ë¸Œë¥¼ ê°€ì ¸ì˜¤ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "다운로드를 마쳤고 다운로드 전용 모드입니다"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "%sì— ì´ë¯¸ 풀려 있는 ì†ŒìŠ¤ì˜ ì••ì¶•ì„ í’€ì§€ ì•Šê³  건너 ëœë‹ˆë‹¤.\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "압축 풀기 명령 '%s' 실패.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "'dpkg-dev' 패키지가 설치ë˜ì—ˆëŠ”지를 확ì¸í•˜ì‹­ì‹œì˜¤.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "빌드 명령 '%s' 실패.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "하위 프로세스가 실패했습니다"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr "해당ë˜ëŠ” 빌드 ì˜ì¡´ì„±ì„ 검사할 패키지를 최소한 하나 지정해야 합니다"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "%sì˜ ë¹Œë“œ ì˜ì¡´ì„± 정보를 가져올 수 없습니다"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s íŒ¨í‚¤ì§€ì— ë¹Œë“œ ì˜ì¡´ì„±ì´ 없습니다.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -983,7 +456,7 @@ msgstr ""
"%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ 만족시킬 수 없습니다. %3$s 패키지를 ì°¾ì„ ìˆ˜ 없습니"
"다"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -992,14 +465,14 @@ msgstr ""
"%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ 만족시킬 수 없습니다. %3$s 패키지를 ì°¾ì„ ìˆ˜ 없습니"
"다"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1008,7 +481,7 @@ msgstr ""
"%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ 만족시킬 수 없습니다. %3$s íŒ¨í‚¤ì§€ì˜ ì‚¬ìš© 가능한 버"
"ì „ 중ì—서는 ì´ ë²„ì „ ìš”êµ¬ì‚¬í•­ì„ ë§Œì¡±ì‹œí‚¬ 수 없습니다"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1017,30 +490,30 @@ msgstr ""
"%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ 만족시킬 수 없습니다. %3$s 패키지를 ì°¾ì„ ìˆ˜ 없습니"
"다"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ ë§Œì¡±ì‹œí‚¤ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤: %3$s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "%sì˜ ë¹Œë“œ ì˜ì¡´ì„±ì„ 만족시키지 못했습니다."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "빌드 ì˜ì¡´ì„±ì„ ì²˜ë¦¬í•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "%s(%s)ì— ì—°ê²°í•˜ëŠ” 중입니다"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "지ì›í•˜ëŠ” 모듈:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1128,102 +601,53 @@ msgstr ""
"apt.conf(5) 매뉴얼 페ì´ì§€ë¥¼ 보십시오.\n"
" ì´ APT는 Super Cow Powersë¡œ 무장했습니다.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"알림: 시험 ë™ìž‘입니다!\n"
-" 실행하려면 apt-getì„ ì‹¤í–‰í•  ë•Œ 루트 ê¶Œí•œì´ í•„ìš”í•©ë‹ˆë‹¤.\n"
-" ë˜ ìž ê¸ˆ ê¸°ëŠ¥ì„ ì‚¬ìš©í•˜ì§€ 않는 ìƒíƒœì´ë¯€ë¡œ, 현재 ìƒí™©ì— ì˜ì¡´í•˜ì§€\n"
-" ì•Šë„ë¡ í•˜ì‹­ì‹œì˜¤!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "기존 "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "받기:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "무시"
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "오류 "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "내려받기 %së°”ì´íŠ¸, 소요시간 %s (%së°”ì´íŠ¸/ì´ˆ)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [작업중]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"미디어 바꾸기: '%2$s' ë“œë¼ì´ë¸Œì— ë‹¤ìŒ ë ˆì´ë¸”ì´ ë‹¬ë¦°\n"
-"디스í¬ë¥¼ 넣고 enter를 누르십시오\n"
-" '%1$s'\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "하지만 설치하지 않았습니다"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s 패키지 수ë™ì„¤ì¹˜ë¡œ 지정합니다.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s 패키지는 수ë™ì„¤ì¹˜ë¡œ 지정합니다.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s 패키지는 ì´ë¯¸ 최신 버전입니다.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s 패키지는 ì´ë¯¸ 최신 버전입니다.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "%s 프로세스를 기다렸지만 해당 프로세스가 없습니다"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s 패키지 수ë™ì„¤ì¹˜ë¡œ 지정합니다.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "%s 파ì¼ì„ ì—¬ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1245,6 +669,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1342,8 +783,8 @@ msgstr "연결 시간 초과"
msgid "Server closed the connection"
msgstr "서버ì—ì„œ ì—°ê²°ì„ ë‹«ì•˜ìŠµë‹ˆë‹¤"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "ì½ê¸° 오류"
@@ -1356,8 +797,8 @@ msgid "Protocol corruption"
msgstr "í”„ë¡œí† ì½œì´ í‹€ë ¸ìŠµë‹ˆë‹¤"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "쓰기 오류"
@@ -1369,6 +810,10 @@ msgstr "ì†Œì¼“ì„ ë§Œë“¤ 수 없습니다"
msgid "Could not connect data socket, connection timed out"
msgstr "ë°ì´í„° ì†Œì¼“ì„ ì—°ê²°í•  수 없습니다. ì—°ê²° ì‹œê°„ì´ ì´ˆê³¼ë˜ì—ˆìŠµë‹ˆë‹¤"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "실패"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "수ë™(passive) ì†Œì¼“ì„ ì—°ê²°í•  수 없습니다."
@@ -1411,7 +856,7 @@ msgstr "ë°ì´í„° 소켓 ì—°ê²° 시간 초과"
msgid "Unable to accept connection"
msgstr "ì—°ê²°ì„ ë°›ì„ ìˆ˜ 없습니다"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "íŒŒì¼ í•´ì‹±ì— ë¬¸ì œê°€ 있습니다"
@@ -1540,81 +985,598 @@ msgstr "ë‹¤ìŒ ì„œëª…ë“¤ì€ ê³µê°œí‚¤ê°€ 없기 ë•Œë¬¸ì— ì¸ì¦í•  수 없습ë‹
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "해당 파ì¼ì— ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "서버ì—ì„œ ì½ê³  ì—°ê²°ì„ ë‹«ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "서버ì—ì„œ ì½ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "파ì¼ì— ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "select가 실패했습니다"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "ì—°ê²° ì‹œê°„ì´ ì´ˆê³¼í–ˆìŠµë‹ˆë‹¤"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "출력 파ì¼ì— ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "í—¤ë”를 기다리는 중입니다"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "í—¤ë” ì¤„ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "HTTP 서버ì—ì„œ ìž˜ëª»ëœ ì‘답 í—¤ë”를 보냈습니다"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "HTTP 서버ì—ì„œ ìž˜ëª»ëœ Content-Length í—¤ë”를 보냈습니다"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "HTTP 서버ì—ì„œ ìž˜ëª»ëœ Content-Range í—¤ë”를 보냈습니다"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "HTTP ì„œë²„ì— ë²”ìœ„ ì§€ì› ê¸°ëŠ¥ì´ ìž˜ëª»ë˜ì–´ 있습니다"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "ë°ì´í„° 형ì‹ì„ ì•Œ 수 없습니다"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "select가 실패했습니다"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "í—¤ë” ë°ì´í„°ê°€ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "ì—°ê²° ì‹œê°„ì´ ì´ˆê³¼í–ˆìŠµë‹ˆë‹¤"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "ì—°ê²°ì´ ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "출력 파ì¼ì— ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "내부 오류"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "파ì¼ì— ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "해당 파ì¼ì— ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "내부 오류. ë§ê°€ì§„ 패키지ì—ì„œ InstallPackages를 호출했습니다!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "서버ì—ì„œ ì½ê³  ì—°ê²°ì„ ë‹«ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "패키지를 제거해야 하지만 제거가 금지ë˜ì–´ 있습니다."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "서버ì—ì„œ ì½ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "내부 오류. ìˆœì„œë³€ê²½ìž‘ì—…ì´ ë나지 않았습니다"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "í—¤ë” ë°ì´í„°ê°€ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"ì´ìƒí•˜ê²Œë„ í¬ê¸°ê°€ 서로 다릅니다. apt@packages.debian.orgë¡œ ì´ë©”ì¼ì„ 보내주십"
+"시오."
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "ì—°ê²°ì´ ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "%së°”ì´íŠ¸/%së°”ì´íŠ¸ ì•„ì¹´ì´ë¸Œë¥¼ 받아야 합니다.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "내부 오류"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "%së°”ì´íŠ¸ ì•„ì¹´ì´ë¸Œë¥¼ 받아야 합니다.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "ì´ ìž‘ì—… 후 %së°”ì´íŠ¸ì˜ ë””ìŠ¤í¬ ê³µê°„ì„ ë” ì‚¬ìš©í•˜ê²Œ ë©ë‹ˆë‹¤.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "ì´ ìž‘ì—… 후 %së°”ì´íŠ¸ì˜ ë””ìŠ¤í¬ ê³µê°„ì´ ë¹„ì›Œì§‘ë‹ˆë‹¤.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "%s ì•ˆì— ì¶©ë¶„í•œ 여유 ê³µê°„ì´ ì—†ìŠµë‹ˆë‹¤."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "문제가 ë°œìƒí–ˆê³  -y ì˜µì…˜ì´ --force-yes 옵션 ì—†ì´ ì‚¬ìš©ë˜ì—ˆìŠµë‹ˆë‹¤"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"사소한 작업만 가능하ë„ë¡(Trivial Only) 지정ë˜ì—ˆì§€ë§Œ ì´ ìž‘ì—…ì€ ì‚¬ì†Œí•œ ìž‘ì—…ì´ "
+"아닙니다."
+
+# ìž…ë ¥ì„ ë°›ì•„ì•¼ 한다. 한글 ìž…ë ¥ì„ ëª» í•  수 있으므로 ì›ë¬¸ 그대로 사용.
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Yes, do as I say!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"ì‹œìŠ¤í…œì— ë¬´ì–¸ê°€ í•´ê°€ ë˜ëŠ” ìž‘ì—…ì„ í•˜ë ¤ê³  합니다.\n"
+"계ì†í•˜ì‹œë ¤ë©´ ë‹¤ìŒ ë¬¸êµ¬ë¥¼ 입력하십시오: '%s'\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "중단."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "ê³„ì† í•˜ì‹œê² ìŠµë‹ˆê¹Œ?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "ì¼ë¶€ 파ì¼ì„ ë°›ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"ì•„ì¹´ì´ë¸Œë¥¼ ë°›ì„ ìˆ˜ 없습니다. ì•„ë§ˆë„ apt-get update를 실행해야 하거나 --fix-"
+"missing ì˜µì…˜ì„ ì¤˜ì„œ 실행해야 í•  것입니다."
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing 옵션과 ë™ì‹œì— 미디어 바꾸기는 현재 지ì›í•˜ì§€ 않습니다"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "빠진 패키지를 ë°”ë¡œìž¡ì„ ìˆ˜ 없습니다."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "설치를 중단합니다."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"ë‹¤ìŒ íŒ¨í‚¤ì§€ëŠ” íŒ¨í‚¤ì§€ì˜ íŒŒì¼ì„ ëª¨ë‘ ë‹¤ë¥¸ 패키지가\n"
+"ë®ì–´ì¼ê¸° ë•Œë¬¸ì— ì‚¬ë¼ì¡ŒìŠµë‹ˆë‹¤:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "주ì˜: dpkgì—ì„œ ìžë™ìœ¼ë¡œ ì˜ë„ì ìœ¼ë¡œ 수행했습니다."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "삭제를 할 수 없으므로 AutoRemover를 실행하지 못합니다"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"AutoRemoverê°€ 뭔가를 ë§ê°€ëœ¨ë¦° 것으로 보입니다. ì´ ë¬¸ì œëŠ” 실제 ì¼ì–´ë‚˜ì„œëŠ”\n"
+"안 ë©ë‹ˆë‹¤. aptì— ëŒ€í•´ 버그 보고를 하십시오."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "ì´ ìƒí™©ì„ í•´ê²°í•˜ëŠ”ë° ë‹¤ìŒ ì •ë³´ê°€ ë„ì›€ì´ ë  ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "내부 오류, 문제 í•´ê²° í”„ë¡œê·¸ëž¨ì´ ë¬´ì–¸ê°€ë¥¼ ë§ê°€ëœ¨ë ¸ìŠµë‹ˆë‹¤"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "ë‹¤ìŒ íŒ¨í‚¤ì§€ê°€ ìžë™ìœ¼ë¡œ 설치ë˜ì—ˆì§€ë§Œ ë” ì´ìƒ 필요하지 않습니다:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "패키지 %lu개가 ìžë™ìœ¼ë¡œ 설치ë˜ì—ˆì§€ë§Œ ë” ì´ìƒ 필요하지 않습니다.\n"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "ì´ë“¤ì„ 지우려면 'apt-get autoremove'를 사용하십시오."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "다ìŒì„ 바로잡으려면 'apt-get -f install'ì„ ì‹¤í–‰í•´ 보십시오:"
+
+# FIXME: specify a solution? 무슨 솔루션?
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"ì˜ì¡´ì„±ì´ 맞지 않습니다. 패키지 ì—†ì´ 'apt-get -f install'ì„ ì‹œë„í•´ 보십시오 "
+"(아니면 í•´ê²° ë°©ë²•ì„ ì§€ì •í•˜ì‹­ì‹œì˜¤)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"몇몇 패키지를 설치할 수 없습니다. 요청한 ìƒí™©ì´ 불가능할 ìˆ˜ë„ ìžˆê³ ,\n"
+"불안정 ë°°í¬íŒì„ 사용해서 ì¼ë¶€ 필요한 패키지를 ì•„ì§ ë§Œë“¤ì§€ 않았거나,\n"
+"ì•„ì§ Incomingì—ì„œ 나오지 ì•Šì€ ê²½ìš°ì¼ ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "ë§ê°€ì§„ 패키지"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ ë” ì„¤ì¹˜í•  것입니다:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "제안하는 패키지:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "추천하는 패키지:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "경고: ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ ì¸ì¦í•  수 없습니다!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "ì¸ì¦ 경고를 무시합니다.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "ì¸ì¦í•  수 없는 패키지가 있습니다"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "확ì¸í•˜ì§€ ì•Šê³  패키지를 설치하시겠습니까?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "%s 파ì¼ì„ ë°›ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤ %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [설치함]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [설치함]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [설치함]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ì˜ ì˜ì¡´ì„±ì´ 맞지 않습니다:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "하지만 %s 패키지를 설치했습니다"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "하지만 %s 패키지를 설치할 것입니다"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "하지만 설치할 수 없습니다"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "하지만 ê°€ìƒ íŒ¨í‚¤ì§€ìž…ë‹ˆë‹¤"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "하지만 설치하지 않았습니다"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "하지만 %s 패키지를 설치하지 ì•Šì„ ê²ƒìž…ë‹ˆë‹¤"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " 혹ì€"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "ë‹¤ìŒ ìƒˆ 패키지를 설치할 것입니다:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 지울 것입니다:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 과거 버전으로 유지합니다:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 업그레ì´ë“œí•  것입니다:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 다운그레ì´ë“œí•  것입니다:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "ê³ ì •ë˜ì—ˆë˜ ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 바꿀 것입니다:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (%s때문ì—) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"경고: ê¼­ 필요한 ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 지우게 ë©ë‹ˆë‹¤.\n"
+"무슨 ì¼ì„ 하고 있는 지 정확히 알지 못한다면 지우지 마십시오!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%luê°œ 업그레ì´ë“œ, %luê°œ 새로 설치, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu개 다시 설치, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%luê°œ 업그레ì´ë“œ, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%luê°œ 제거 ë° %luê°œ 업그레ì´ë“œ 안 함.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu개를 완전히 설치하지 못했거나 지움.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[Y/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[y/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "Y"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "ì •ê·œì‹ ì»´íŒŒì¼ ì˜¤ë¥˜ - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "ì˜ì¡´ì„±ì„ 바로잡는 중입니다..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " 실패."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "ì˜ì¡´ì„±ì„ ë°”ë¡œìž¡ì„ ìˆ˜ 없습니다"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "업그레ì´ë“œ ì§‘í•©ì„ ìµœì†Œí™”í•  수 없습니다"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " 완료"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr ""
+"ì´ ìƒí™©ì„ 바로잡으려면 'apt-get -f install'ì„ ì‹¤í–‰í•´ì•¼ í•  ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "ì˜ì¡´ì„±ì´ 맞지 않습니다. -f ì˜µì…˜ì„ ì‚¬ìš©í•´ 보십시오."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "update ëª…ë ¹ì€ ì¸ìˆ˜ë¥¼ 받지 않습니다"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "업그레ì´ë“œë¥¼ 계산하는 중입니다... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "내부 오류, AllUpgrade í”„ë¡œê·¸ëž¨ì´ ë¬´ì–¸ê°€ë¥¼ ë§ê°€ëœ¨ë ¸ìŠµë‹ˆë‹¤"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "완료"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"알림: 시험 ë™ìž‘입니다!\n"
+" 실행하려면 apt-getì„ ì‹¤í–‰í•  ë•Œ 루트 ê¶Œí•œì´ í•„ìš”í•©ë‹ˆë‹¤.\n"
+" ë˜ ìž ê¸ˆ ê¸°ëŠ¥ì„ ì‚¬ìš©í•˜ì§€ 않는 ìƒíƒœì´ë¯€ë¡œ, 현재 ìƒí™©ì— ì˜ì¡´í•˜ì§€\n"
+" ì•Šë„ë¡ í•˜ì‹­ì‹œì˜¤!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "%s 파ì¼ì˜ ì´ë¦„ì„ %s(으)ë¡œ ë°”ê¾¸ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "기존 "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "받기:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "무시"
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "오류 "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "내려받기 %së°”ì´íŠ¸, 소요시간 %s (%së°”ì´íŠ¸/ì´ˆ)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [작업중]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"미디어 바꾸기: '%2$s' ë“œë¼ì´ë¸Œì— ë‹¤ìŒ ë ˆì´ë¸”ì´ ë‹¬ë¦°\n"
+"디스í¬ë¥¼ 넣고 enter를 누르십시오\n"
+" '%1$s'\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "%sì„(를) ì½ì„ 수 없습니다"
@@ -1677,33 +1639,33 @@ msgstr "하위 í”„ë¡œì„¸ìŠ¤ì— ëŒ€í•œ IPC 파ì´í”„를 ë§Œë“œëŠ”ë° ì‹¤íŒ¨í–ˆìŠµ
msgid "Connection closed prematurely"
msgstr "ì—°ê²°ì´ ë„ˆë¬´ 빨리 ëŠì–´ì¡ŒìŠµë‹ˆë‹¤"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "기본 ì„¤ì •ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "ê³„ì† í•˜ì‹œë ¤ë©´ enter를 누르십시오."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "ì´ì „ì— ë‹¤ìš´ë¡œë“œ ë°›ì•˜ë˜ .deb 파ì¼ì„ 지우시겠습니까?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "ì••ì¶•ì„ í‘¸ëŠ”ë° ëª‡ëª‡ 오류가 ë°œìƒí–ˆìŠµë‹ˆë‹¤. ì„¤ì¹˜ëœ íŒ¨í‚¤ì§€ë¥¼"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "설정합니다. ì˜¤ë¥˜ë•Œë¬¸ì— ì˜ì¡´ì„±ì„ 만족하지 못해 설정하는 과정ì—ì„œ"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"오류가 중복ë˜ì–´ 나타날 수 있습니다. 하지만 ìƒê´€ì—†ê³ , ì´ ë©”ì„¸ì§€ ìœ„ì— ë‚˜ì˜¨"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "오류만 중요합니다. ì´ ì˜¤ë¥˜ë¥¼ 고친 다ìŒì— 설치(I)를 다시 ì‹œë„하십시오"
@@ -1954,36 +1916,36 @@ msgstr "%s 파ì¼ì— readlinkí•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
msgid "Failed to unlink %s"
msgstr "%s 파ì¼ì„ ì§€ìš°ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** %s 파ì¼ì„ %sì— ë§í¬í•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " DeLink 한계값 %së°”ì´íŠ¸ì— ë„달했습니다.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "ì•„ì¹´ì´ë¸Œì— 패키지 필드가 없습니다"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %sì—는 override í•­ëª©ì´ ì—†ìŠµë‹ˆë‹¤\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s 관리ìžê°€ %s입니다 (%s 아님)\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %sì—는 source override í•­ëª©ì´ ì—†ìŠµë‹ˆë‹¤\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %sì—는 binary override í•­ëª©ì´ ì—†ìŠµë‹ˆë‹¤\n"
@@ -2062,7 +2024,7 @@ msgstr "%sì˜ ë§í¬ë¥¼ í•´ì œí•˜ëŠ”ë° ë¬¸ì œê°€ 있습니다"
msgid "Failed to rename %s to %s"
msgstr "%s 파ì¼ì˜ ì´ë¦„ì„ %s(으)ë¡œ ë°”ê¾¸ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2132,7 +2094,7 @@ msgstr "ì•„ì¹´ì´ë¸Œê°€ ì†ìƒë˜ì—ˆìŠµë‹ˆë‹¤"
msgid "Tar checksum failed, archive corrupted"
msgstr "tar ì²´í¬ì„¬ 실패, ì•„ì¹´ì´ë¸Œê°€ ì†ìƒë˜ì—ˆìŠµë‹ˆë‹¤"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "ì•Œ 수 없는 TAR í—¤ë” íƒ€ìž… %u, 멤버 %s"
@@ -2256,22 +2218,17 @@ msgid "Unable to stat %s"
msgstr "%sì˜ ì •ë³´ë¥¼ ì½ì„ 수 없습니다"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "올바른 DEB ì•„ì¹´ì´ë¸Œê°€ 아닙니다. '%s' 멤버가 없습니다"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "올바른 DEB ì•„ì¹´ì´ë¸Œê°€ 아닙니다. '%s'나 '%s' í˜¹ì€ '%s' 멤버가 없습니다"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "내부 오류, %s 멤버를 ì°¾ì„ ìˆ˜ 없습니다"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "control 파ì¼ì„ 파싱할 수 없습니다"
@@ -2329,85 +2286,85 @@ msgstr ""
"mmap í¬ê¸°ë¥¼ 늘릴 수 없습니다. ìžë™ìœ¼ë¡œ 늘리는 ê¸°ëŠ¥ì„ ì‚¬ìš©ìžê°€ 금지했습니다."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%li시간 %li분 %li초"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%li분 %li초"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%liì´ˆ"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "ì„ íƒí•œ %sì´(ê°€) 없습니다"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "ì´ íƒ€ìž… 줄임ë§ì„ ì•Œ 수 없습니다: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "설정 íŒŒì¼ %s 파ì¼ì„ 여는 중입니다"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "문법 오류 %s:%u: ë¸”ëŸ­ì´ ì´ë¦„으로 시작하지 않습니다."
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "문법 오류 %s:%u: íƒœê·¸ì˜ í˜•ì‹ì´ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "문법 오류 %s:%u: ê°’ ë’¤ì— ì“°ë ˆê¸° ë°ì´í„°ê°€ ë” ìžˆìŠµë‹ˆë‹¤"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "문법 오류 %s:%u: 지시어는 맨 위 단계ì—서만 쓸 수 있습니다"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "문법 오류 %s:%u: includeê°€ 너무 ë§Žì´ ê²¹ì³ ìžˆìŠµë‹ˆë‹¤"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "문법 오류 %s:%u: 여기서 includeë©ë‹ˆë‹¤"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "문법 오류 %s:%u: 지ì›í•˜ì§€ 않는 지시어 '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "문법 오류 %s:%u: clear 지시어는 ì¸ìˆ˜ë¡œ option 트리를 지정해야 합니다"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "문법 오류 %s:%u: 파ì¼ì˜ ëì— ì“°ë ˆê¸° ë°ì´í„°ê°€ ë” ìžˆìŠµë‹ˆë‹¤"
@@ -2432,48 +2389,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... 완료"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "명령행 옵션 '%c' ì˜µì…˜ì„ [%sì—ì„œ] ì•Œ 수 없습니다."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "명령행 옵션 '%s' ì˜µì…˜ì„ ì•Œ 수 없습니다"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "명령행 옵션 '%s' ì˜µì…˜ì€ ë¶ˆë¦¬ì–¸ì´ ì•„ë‹™ë‹ˆë‹¤"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "%s 옵션ì—는 ì¸ìˆ˜ê°€ 필요합니다."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "%s 옵션: 설정 항목 ì§€ì •ì€ =<ê°’> 형태여야 합니다."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "%s 옵션ì—는 정수 ì¸ìˆ˜ê°€ 필요합니다. '%s'ì´(ê°€) 아닙니다"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "'%s' ì˜µì…˜ì´ ë„ˆë¬´ ê¹ë‹ˆë‹¤"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "%s 센스를 ì´í•´í•  수 없습니다. ì°¸ 아니면 거짓으로 í•´ 보십시오."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "ìž˜ëª»ëœ ìž‘ì—… %s"
@@ -2487,116 +2444,116 @@ msgstr "마운트 위치 %sì˜ ì •ë³´ë¥¼ ì½ì„ 수 없습니다"
msgid "Failed to stat the cdrom"
msgstr "CD-ROMì˜ ì •ë³´ë¥¼ ì½ì„ 수 없습니다"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "%s gzip 파ì¼ì„ ë‹«ëŠ”ë° ë¬¸ì œê°€ 있습니다"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "ì½ê¸° ì „ìš© 잠금 íŒŒì¼ %sì— ëŒ€í•´ ìž ê¸ˆì„ ì‚¬ìš©í•˜ì§€ 않습니다"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "잠금 íŒŒì¼ %s 파ì¼ì„ ì—´ 수 없습니다"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "NFSë¡œ ë§ˆìš´íŠ¸ëœ ìž ê¸ˆ íŒŒì¼ %sì— ëŒ€í•´ ìž ê¸ˆì„ ì‚¬ìš©í•˜ì§€ 않습니다"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "%s 잠금 파ì¼ì„ ì–»ì„ ìˆ˜ 없습니다"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "하위 프로세스 %s 프로세스가 세그멘테ì´ì…˜ 오류를 받았습니다."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "하위 프로세스 %s 프로세스가 %u번 시그ë„ì„ ë°›ì•˜ìŠµë‹ˆë‹¤."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "하위 프로세스 %s 프로세스가 오류 코드(%u)를 리턴했습니다"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "하위 프로세스 %s 프로세스가 예ìƒì¹˜ 못하게 ë났습니다"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "%s 파ì¼ì„ ì—´ 수 없습니다"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "%d íŒŒì¼ ë””ìŠ¤í¬ë¦½í„°ë¥¼ ì—´ 수 없습니다"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "하위 프로세스 IPC를 ë§Œë“œëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "ë‹¤ìŒ ì••ì¶• í”„ë¡œê·¸ëž¨ì„ ì‹¤í–‰í•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤: "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "%luë§Œí¼ ë” ì½ì–´ì•¼ 하지만 ë” ì´ìƒ ì½ì„ ë°ì´í„°ê°€ 없습니다"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "%luë§Œí¼ ë” ì¨ì•¼ 하지만 ë” ì´ìƒ 쓸 수 없습니다"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "%s 파ì¼ì„ ë‹«ëŠ”ë° ë¬¸ì œê°€ 있습니다"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "%s 파ì¼ì„ %s(으)ë¡œ ì´ë¦„ì„ ë°”ê¾¸ëŠ”ë° ë¬¸ì œê°€ 있습니다"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "%s 파ì¼ì„ ì‚­ì œí•˜ëŠ”ë° ë¬¸ì œê°€ 있습니다"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "파ì¼ì„ ë™ê¸°í™”í•˜ëŠ”ë° ë¬¸ì œê°€ 있습니다"
@@ -2714,12 +2671,12 @@ msgstr "ìƒíƒœíŒŒì¼ %s ì—¬ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
msgid "Failed to write temporary StateFile %s"
msgstr "ìž„ì‹œ ìƒíƒœíŒŒì¼ %s ì“°ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "패키지 íŒŒì¼ %s 파ì¼ì„ 파싱할 수 없습니다 (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "패키지 íŒŒì¼ %s 파ì¼ì„ 파싱할 수 없습니다 (2)"
@@ -2795,7 +2752,7 @@ msgstr "소스 리스트 %2$sì˜ %1$u번 ì¤„ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤ (타입)"
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "소스 ëª©ë¡ %3$sì˜ %2$u번 ì¤„ì˜ '%1$s' íƒ€ìž…ì„ ì•Œ 수 없습니다"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2804,12 +2761,12 @@ msgstr ""
"'%s'ì— ëŒ€í•´ 즉시 ì„¤ì •ì„ í•  수 없습니다. ìžì„¸í•œ ì„¤ëª…ì€ man 5 apt.conf 페ì´ì§€ì—"
"ì„œ APT::Immediate-Configure í•­ëª©ì„ ë³´ì‹­ì‹œì˜¤. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "'%s' 파ì¼ì„ ì—´ 수 없습니다"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2832,7 +2789,7 @@ msgid ""
msgstr ""
"%s 패키지를 다시 설치해야 하지만, ì´ íŒ¨í‚¤ì§€ì˜ ì•„ì¹´ì´ë¸Œë¥¼ ì°¾ì„ ìˆ˜ 없습니다."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2840,19 +2797,10 @@ msgstr ""
"오류, pkgProblemResolver::Resolveê°€ ë§ê°€ì¡ŒìŠµë‹ˆë‹¤. ê³ ì • íŒ¨í‚¤ì§€ë•Œë¬¸ì— ë°œìƒí•  수"
"ë„ ìžˆìŠµë‹ˆë‹¤."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "문제를 ë°”ë¡œìž¡ì„ ìˆ˜ 없습니다. ë§ê°€ì§„ ê³ ì • 패키지가 있습니다."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"ì¼ë¶€ ì¸ë±ìŠ¤ 파ì¼ì„ ë‹¤ìš´ë¡œë“œí•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤. 해당 파ì¼ì„ 무시하거나 과거"
-"ì˜ ë²„ì „ì„ ëŒ€ì‹  사용합니다."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2896,12 +2844,12 @@ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
"'%2$s' ë“œë¼ì´ë¸Œì— '%1$s'(으)ë¡œ í‘œê¸°ëœ ë””ìŠ¤í¬ë¥¼ 넣고 Enter를 누르십시오."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "'%s' 패키지 ì‹œìŠ¤í…œì„ ì§€ì›í•˜ì§€ 않습니다"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "올바른 패키지 시스템 íƒ€ìž…ì„ ì•Œì•„ë‚¼ 수 없습니다"
@@ -2933,17 +2881,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "기본 설정 íŒŒì¼ %sì— ìž˜ëª»ëœ ë°ì´í„°ê°€ 있습니다. Package í—¤ë”ê°€ 없습니다"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "í•€ 타입 %sì´(ê°€) 무엇ì¸ì§€ ì´í•´í•  수 없습니다"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "í•€ì— ìš°ì„ ìˆœìœ„(í˜¹ì€ 0)를 지정하지 않았습니다"
@@ -3010,44 +2958,48 @@ msgstr "소스 ìºì‹œë¥¼ ì €ìž¥í•˜ëŠ”ë° ìž…ì¶œë ¥ 오류가 ë°œìƒí–ˆìŠµë‹ˆë‹¤"
msgid "rename failed, %s (%s -> %s)."
msgstr "ì´ë¦„ 바꾸기가 실패했습니다. %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sumì´ ë§žì§€ 않습니다"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "í•´ì‹œ í•©ì´ ë§žì§€ 않습니다"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "í¬ê¸°ê°€ 맞지 않습니다"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "ìž˜ëª»ëœ ìž‘ì—… %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Release íŒŒì¼ %s 파ì¼ì„ 파싱할 수 없습니다"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "ë‹¤ìŒ í‚¤ IDì˜ ê³µê°œí‚¤ê°€ 없습니다:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "ë°°í¬íŒ 충ëŒ: %s (예ìƒê°’ %s, 실제값 %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3057,12 +3009,12 @@ msgstr ""
"ì˜ˆì „ì˜ ì¸ë±ìŠ¤ 파ì¼ì„ 사용합니다. GPG 오류: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "GPG 오류: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3071,32 +3023,24 @@ msgstr ""
"%s íŒ¨í‚¤ì§€ì˜ íŒŒì¼ì„ ì°¾ì„ ìˆ˜ 없습니다. 수ë™ìœ¼ë¡œ ì´ íŒ¨í‚¤ì§€ë¥¼ ê³ ì³ì•¼ í•  ìˆ˜ë„ ìžˆìŠµ"
"니다. (아키í…ì³ê°€ 빠졌기 때문입니다)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"%s íŒ¨í‚¤ì§€ì˜ íŒŒì¼ì„ ì°¾ì„ ìˆ˜ 없습니다. 수ë™ìœ¼ë¡œ ì´ íŒ¨í‚¤ì§€ë¥¼ ê³ ì³ì•¼ í•  ìˆ˜ë„ ìžˆìŠµ"
-"니다."
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
"패키지 ì¸ë±ìŠ¤ 파ì¼ì´ ì†ìƒë˜ì—ˆìŠµë‹ˆë‹¤. %s íŒ¨í‚¤ì§€ì— Filename: 필드가 없습니다."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "í¬ê¸°ê°€ 맞지 않습니다"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Release íŒŒì¼ %s 파ì¼ì„ 파싱할 수 없습니다"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Release íŒŒì¼ %sì— ì„¹ì…˜ì´ ì—†ìŠµë‹ˆë‹¤"
@@ -3239,32 +3183,32 @@ msgstr "다ìŒì˜ ì¸ì¦ 기ë¡ì„ ì°¾ì„ ìˆ˜ 없습니다: %s"
msgid "Hash mismatch for: %s"
msgstr "다ìŒì˜ 해시가 다릅니다: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "%2$s íŒ¨í‚¤ì§€ì˜ '%1$s' 릴리즈를 ì°¾ì„ ìˆ˜ 없습니다"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "%2$s íŒ¨í‚¤ì§€ì˜ '%1$s' ë²„ì „ì„ ì°¾ì„ ìˆ˜ 없습니다"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "'%s' ìž‘ì—…ì„ ì°¾ì„ ìˆ˜ 없습니다"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "'%s' ì •ê·œì‹ì— 해당하는 패키지가 없습니다"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "'%s' 패키지는 ê°€ìƒ íŒ¨í‚¤ì§€ì´ë¯€ë¡œ ë²„ì „ì„ ì„ íƒí•  수 없습니다"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3273,17 +3217,17 @@ msgstr ""
"'%s' 패키지ì—ì„œ 설치한 버전ì´ë‚˜ 후보 ë²„ì „ì„ ì„ íƒí•  수 없습니다. 둘 다 아닙니"
"다."
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr "'%s' 패키지ì—ì„œ 최신 ë²„ì „ì„ ì„ íƒí•  수 없습니다. ê°€ìƒ íŒ¨í‚¤ì§€ìž…ë‹ˆë‹¤."
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr "'%s' 패키지ì—ì„œ 후보 ë²„ì „ì„ ì„ íƒí•  수 없습니다. 후보가 없습니다."
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr "'%s' 패키지ì—ì„œ 설치한 ë²„ì „ì„ ì„ íƒí•  수 없습니다. 설치하지 않았습니다."
@@ -3308,110 +3252,132 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "dpkg 실행하는 중입니다"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"ì¼ë¶€ ì¸ë±ìŠ¤ 파ì¼ì„ ë‹¤ìš´ë¡œë“œí•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤. 해당 파ì¼ì„ 무시하거나 과거"
+"ì˜ ë²„ì „ì„ ëŒ€ì‹  사용합니다."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "%s 설치하는 중입니다"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "%s 설정 중입니다"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "%s 패키지를 지우는 중입니다"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "%s 패키지를 완전히 지우는 중입니다"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "%s 사ë¼ì§ 발견했습니다"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "설치 후 트리거 %s 실행하는 중입니다"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "디렉터리 '%s' 없습니다."
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "'%s' 파ì¼ì„ ì—´ 수 없습니다"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "%s 준비 중입니다"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "%s 푸는 중입니다"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "%s 패키지를 설정할 준비하는 중입니다"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s 설치"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "%s 패키지를 지울 준비하는 중입니다"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s 지움"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "%s 패키지를 완전히 지울 준비를 하는 중입니다"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s 패키지를 완전히 지웠습니다"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "%sì— ì“¸ 수 없습니다"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"ë¡œê·¸ì— ì“°ëŠ”ë° ì‹¤íŒ¨. openpty() 실패(/dev/ptsê°€ 마운트ë˜ì–´ìžˆì§€ 않습니까?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "dpkg 실행하는 중입니다"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "보고서를 작성하지 않습니다. ì´ë¯¸ MaxReports ê°’ì— ë„달했습니다."
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "ì˜ì¡´ì„± 문제 - 설정하지 ì•Šì€ ìƒíƒœë¡œ 남겨둡니다"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3419,20 +3385,28 @@ msgstr ""
"보고서를 작성하지 않습니다. 오류 ë©”ì‹œì§€ì— ë”°ë¥´ë©´ ì˜ˆì „ì˜ ì‹¤íŒ¨ ë•Œë¬¸ì— ìƒê¸´ 부수"
"ì ì¸ 오류입니다."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
"보고서를 작성하지 않습니다. 오류 ë©”ì‹œì§€ì— ë”°ë¥´ë©´ 디스í¬ê°€ ê°€ë“ ì°¼ìŠµë‹ˆë‹¤."
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr "보고서를 작성하지 않습니다. 오류 ë©”ì‹œì§€ì— ë”°ë¥´ë©´ 메모리가 부족합니다."
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"보고서를 작성하지 않습니다. 오류 ë©”ì‹œì§€ì— ë”°ë¥´ë©´ 디스í¬ê°€ ê°€ë“ ì°¼ìŠµë‹ˆë‹¤."
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3465,6 +3439,92 @@ msgstr ""
msgid "Not locked"
msgstr "잠기지 ì•ŠìŒ"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "주ì˜, ìž‘ì—… '%2$s'ì— ëŒ€í•´ '%1$s'ì„(를) ì„ íƒí•©ë‹ˆë‹¤\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "주ì˜, ì •ê·œì‹ '%2$s'ì— ëŒ€í•´ '%1$s'ì„(를) ì„ íƒí•©ë‹ˆë‹¤\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "%s 패키지는 다ìŒì´ 제공하는 ê°€ìƒ íŒ¨í‚¤ì§€ìž…ë‹ˆë‹¤:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr "[후보 버전 아님]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "설치할 패키지를 하나 분명히 지정해야 합니다."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "%s 패키지를 사용할 수 없습니다. 하지만 다른 패키지가 참조하고 있습니다.\n"
+#~ "해당 패키지가 누ë½ë˜ì—ˆê±°ë‚˜ 지워졌다는 뜻입니다. 아니면 ë˜ ë‹¤ë¥¸ ê³³ì—ì„œ\n"
+#~ "패키지를 받아와야 하는 ê²½ìš°ì¼ ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤.\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "하지만 ë‹¤ìŒ íŒ¨í‚¤ì§€ê°€ 대체합니다:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "'%s' 패키지는 설치할 수 있는 후보가 없습니다"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "'%s' 패키지와 ê°™ì€ ê°€ìƒ íŒ¨í‚¤ì§€ëŠ” 제거할 수 없습니다\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "주ì˜, '%2$s' ëŒ€ì‹ ì— '%1$s' 패키지를 ì„ íƒí•©ë‹ˆë‹¤\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "%s 패키지를 건너 ëœë‹ˆë‹¤. ì´ë¯¸ 설치ë˜ì–´ 있고 업그레ì´ë“œë¥¼ 하지 않습니다.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "%s 패키지를 건너 ëœë‹ˆë‹¤. 설치ë˜ì§€ 않았고 업그레ì´ë“œë§Œ 요청합니다.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr ""
+#~ "%s 패키지를 다시 설치하는 건 불가능합니다. 다운로드할 수 없습니다.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s 패키지는 ì´ë¯¸ 최신 버전입니다.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "'%3$s' íŒ¨í‚¤ì§€ì˜ '%1$s' (%2$s) ë²„ì „ì„ ì„ íƒí•©ë‹ˆë‹¤\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "'%3$s' íŒ¨í‚¤ì§€ì˜ '%1$s' (%2$s) ë²„ì „ì„ ì„ íƒí•©ë‹ˆë‹¤\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "'%2$s' íŒ¨í‚¤ì§€ì˜ '%1$s' ëŒ€ìƒ ë¦´ë¦¬ìŠ¤ëŠ” 없으므로 무시합니다."
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "올바른 DEB ì•„ì¹´ì´ë¸Œê°€ 아닙니다. '%s'나 '%s' í˜¹ì€ '%s' 멤버가 없습니다"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sumì´ ë§žì§€ 않습니다"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "%s íŒ¨í‚¤ì§€ì˜ íŒŒì¼ì„ ì°¾ì„ ìˆ˜ 없습니다. 수ë™ìœ¼ë¡œ ì´ íŒ¨í‚¤ì§€ë¥¼ ê³ ì³ì•¼ í•  ìˆ˜ë„ "
+#~ "있습니다."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "ë¡œê·¸ì— ì“°ëŠ”ë° ì‹¤íŒ¨. openpty() 실패(/dev/ptsê°€ 마운트ë˜ì–´ìžˆì§€ 않습니까?)\n"
+
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "%s 파ì¼ì€ 없으므로 무시합니다"
diff --git a/po/ku.po b/po/ku.po
index 521c291fc..90f88c2d8 100644
--- a/po/ku.po
+++ b/po/ku.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt-ku\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2008-05-08 12:48+0200\n"
"Last-Translator: Erdal Ronahi <erdal dot ronahi at gmail dot com>\n"
"Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n"
@@ -19,154 +19,156 @@ msgstr ""
"X-Generator: KAider 0.1\n"
"Plural-Forms: nplurals=2; plural= n != 1;\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr ""
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Navên paketan bi giştî :"
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "Navên paketan bi giştî :"
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Pakêtên normal:"
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Pakêtên farazî yên safî:"
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Pakêta tenê ya farazî:"
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Pakêtên hevbeş yên farazî:"
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Winda: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Guhertoyên vekirî yên giştî:"
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
#, fuzzy
msgid "Total distinct descriptions: "
msgstr "Guhertoyên vekirî yên giştî:"
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Bindestên giştî:"
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr ""
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
#, fuzzy
msgid "Total Desc/File relations: "
msgstr "Guhertoyên vekirî yên giştî:"
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr ""
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr ""
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr ""
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Cihê giştî yê sist:"
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Cihê giştî yê veqetandî: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Pakêta dosya %s li derveyî demê ye."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Pakêt nayên dîtin"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "Pêwist e tu mînakekê bidî"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Pakêt nehate dîtin %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Pelgehên Pakêt:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr ""
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(nehate dîtin)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Sazkirî: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Berendam: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ne tiÅŸtek)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Destika pakêtê:"
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Tabloya guhertoyan:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, fuzzy, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s ji bo %s %s komkirî di %s %s de\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -204,36 +206,36 @@ msgid ""
msgstr ""
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
#, 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:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Anîna %s %s biserneket\n"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr ""
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr ""
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -261,580 +263,62 @@ msgstr ""
" -o=? Rê li ber vedike ku tu karibe li gorî dilê xwe vebijarkan diyar bike. "
"mînak -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-#, fuzzy
-msgid "[Y/n]"
-msgstr "[E/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "E"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr ""
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "lê %s sazkirî ye"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "lê %s dê were sazkirin"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "lê sazkirina wê ne gengaz e"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "lê paketeke farazî ye"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "lê ne sazkirî ye"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "lê dê neyê sazkirin"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " û"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Ev pakêtên NÛ dê werine sazkirin:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Ev pakêt dê werine RAKIRIN:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr ""
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Ev paket dê werine bilindkirin:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr ""
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr ""
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (ji ber %s)"
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu hatine bilindkirin, %lu nû hatine sazkirin."
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu ji nû ve sazkirî,"
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu hatine nizmkirin."
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu werin rakirin û %lu neyên bilindkirin. \n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [Sazkirî]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "Guhartoyên berendam"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr ""
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr ""
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr ""
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s jixwe guhertoya nûtirîn e.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, fuzzy, c-format
-msgid "%s set to manually installed.\n"
-msgstr "lê %s dê were sazkirin"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Bindestî tên serrastkirin..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " neserketî."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Nikare bindestiyan rast kirin"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr ""
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Temam"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr ""
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr ""
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr ""
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr ""
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr ""
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr ""
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr ""
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr ""
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Anîna %sB/%sB ji arşîvan pêwist e.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Anîna %sB ji arşîvan pêwist e.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr ""
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Nikarî cihê vala li %s tesbît bike"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Cihê vala li %s têre nake."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Erê, wusa bike!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Betal."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Dixwazî bidomînî?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Anîna %s %s biserneket\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Daxistina çend pelan biserneket"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr ""
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr ""
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr ""
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Sazkirin tê betalkirin."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr ""
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr ""
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr ""
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr ""
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:"
-msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:"
-msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr ""
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr ""
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Paketên şikestî"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr ""
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Paketên tên pêşniyaz kirin:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Paketên tên tawsiyê kirin:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Nikarî pakêta %s bibîne"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "lê %s dê were sazkirin"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "lê %s dê were sazkirin"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Bilindkirin tê hesibandin..."
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Serneket"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Temam"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr ""
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Pelrêça daxistinê nayê quflekirin"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr ""
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr ""
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -842,141 +326,151 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr ""
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Nikarî cihê vala li %s tesbît bike"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Cihê vala li %s têre nake"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr ""
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr ""
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Çavkanîna %s bîne\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Anîna çend arşîvan biserneket."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr ""
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr ""
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr ""
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr ""
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr ""
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr ""
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr ""
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
"packages"
msgstr ""
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
"found"
msgstr ""
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
"package %s can't satisfy version requirements"
msgstr ""
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
"version"
msgstr ""
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr ""
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr ""
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr ""
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Girêdan bi %s (%s) re pêk tê"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr ""
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1022,95 +516,53 @@ msgid ""
" This APT has Super Cow Powers.\n"
msgstr ""
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr ""
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Anîn:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr ""
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Çewt"
-
-#: cmdline/acqprogress.cc:140
-#, fuzzy, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%s hatine anîn..."
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Dixebite]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "lê ne sazkirî ye"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "lê %s dê were sazkirin"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "lê %s dê were sazkirin"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s jixwe guhertoya nûtirîn e.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s jixwe guhertoya nûtirîn e.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr ""
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "lê %s dê were sazkirin"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "%s venebû"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1132,6 +584,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, fuzzy, c-format
msgid "Unable to read the cdrom database %s"
@@ -1226,8 +695,8 @@ msgstr ""
msgid "Server closed the connection"
msgstr ""
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Çewiya xwendinê"
@@ -1240,8 +709,8 @@ msgid "Protocol corruption"
msgstr ""
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Çewtiya nivîsînê"
@@ -1253,6 +722,10 @@ msgstr ""
msgid "Could not connect data socket, connection timed out"
msgstr ""
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Serneket"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr ""
@@ -1295,7 +768,7 @@ msgstr ""
msgid "Unable to accept connection"
msgstr ""
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr ""
@@ -1425,82 +898,573 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Dema li pelî dihate nivîsîn çewtî"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr ""
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Dema li pelî dihate nivîsîn çewtî"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Hilbijartin neserketî"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr ""
+
+#: methods/http.cc:659
+#, fuzzy
+msgid "Error writing to output file"
+msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr ""
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr ""
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr ""
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr ""
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr ""
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr ""
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr ""
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Hilbijartin neserketî"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr ""
-#: methods/http.cc:831
-msgid "Connection timed out"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Girêdan pêk nehatiye"
+
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Çewtiya hundirîn"
+
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
+
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr ""
+
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr ""
+
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Anîna %sB/%sB ji arşîvan pêwist e.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Anîna %sB ji arşîvan pêwist e.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr ""
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr ""
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Cihê vala li %s têre nake."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr ""
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Erê, wusa bike!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Betal."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Dixwazî bidomînî?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Daxistina çend pelan biserneket"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr ""
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr ""
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Sazkirin tê betalkirin."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr ""
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
msgstr ""
-#: methods/http.cc:854
+#: apt-private/private-install.cc:524
#, fuzzy
-msgid "Error writing to output file"
-msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:"
+msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Dema li pelî dihate nivîsîn çewtî"
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:"
+msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:"
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Dema li pelî dihate nivîsîn çewtî"
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] ""
+msgstr[1] ""
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
msgstr ""
-#: methods/http.cc:929
-msgid "Error reading from server"
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-#: methods/http.cc:1197
-msgid "Bad header data"
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Girêdan pêk nehatiye"
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Paketên şikestî"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Çewtiya hundirîn"
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr ""
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Paketên tên pêşniyaz kirin:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Paketên tên tawsiyê kirin:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr ""
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr ""
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr ""
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr ""
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Anîna %s %s biserneket\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Sazkirî]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Sazkirî]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Sazkirî]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr ""
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "lê %s sazkirî ye"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "lê %s dê were sazkirin"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "lê sazkirina wê ne gengaz e"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "lê paketeke farazî ye"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "lê ne sazkirî ye"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "lê dê neyê sazkirin"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " û"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Ev pakêtên NÛ dê werine sazkirin:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Ev pakêt dê werine RAKIRIN:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr ""
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Ev paket dê werine bilindkirin:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr ""
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr ""
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (ji ber %s)"
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu hatine bilindkirin, %lu nû hatine sazkirin."
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu ji nû ve sazkirî,"
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu hatine nizmkirin."
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu werin rakirin û %lu neyên bilindkirin. \n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+#, fuzzy
+msgid "[Y/n]"
+msgstr "[E/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "E"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr ""
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Bindestî tên serrastkirin..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " neserketî."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Nikare bindestiyan rast kirin"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr ""
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Temam"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr ""
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr ""
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr ""
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Bilindkirin tê hesibandin..."
+
+#: apt-private/private-upgrade.cc:23
+msgid "Internal error, Upgrade broke stuff"
+msgstr ""
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Temam"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "%s ji hev nehate veçirandin"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr ""
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Anîn:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr ""
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Çewt"
+
+#: apt-private/acqprogress.cc:140
+#, fuzzy, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%s hatine anîn..."
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Dixebite]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Nikare %s bixwîne"
@@ -1559,32 +1523,32 @@ msgstr ""
msgid "Connection closed prematurely"
msgstr "Girêdan zû hatiye girtin"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr ""
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr ""
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr ""
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr ""
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1782,36 +1746,36 @@ msgstr ""
msgid "Failed to unlink %s"
msgstr ""
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr ""
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr ""
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Di arşîvê de qada pakêtê tuneye"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr ""
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr ""
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr ""
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr ""
@@ -1890,7 +1854,7 @@ msgstr ""
msgid "Failed to rename %s to %s"
msgstr ""
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -1952,7 +1916,7 @@ msgstr ""
msgid "Tar checksum failed, archive corrupted"
msgstr ""
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr ""
@@ -2078,22 +2042,17 @@ msgid "Unable to stat %s"
msgstr "Nivîsandin ji bo %s ne pêkane"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr ""
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr ""
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr ""
@@ -2151,85 +2110,85 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Hilbijartina %s nehatiye dîtin"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr ""
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr ""
@@ -2254,48 +2213,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Çêbû"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Opsiyona '%s' zêde dirêj e"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr ""
@@ -2309,116 +2268,116 @@ msgstr "Nivîsandin ji bo %s ne pêkane"
msgid "Failed to stat the cdrom"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "Di girtina pelî de pirsgirêkek derket"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Nikarî qufila pelê %s veke"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Nikarî pelê %s veke"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "Nikarî pelê %s veke"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "Di girtina pelî de pirsgirêkek derket"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Di girtina pelî de pirsgirêkek derket"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "Di girtina pelî de pirsgirêkek derket"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr ""
@@ -2535,12 +2494,12 @@ msgstr "Vekirina StateFile %s biserneket"
msgid "Failed to write temporary StateFile %s"
msgstr "%s ji hev nehate veçirandin"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, fuzzy, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Pakêt nehate dîtin %s"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, fuzzy, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Pakêt nehate dîtin %s"
@@ -2615,19 +2574,19 @@ msgstr ""
msgid "Type '%s' is not known on line %u in source list %s"
msgstr ""
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Nikarî pelê %s veke"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2646,22 +2605,16 @@ msgid ""
"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
msgstr ""
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr ""
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2704,12 +2657,12 @@ msgstr ""
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne"
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr ""
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr ""
@@ -2741,17 +2694,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr ""
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr ""
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr ""
@@ -2818,44 +2771,47 @@ msgstr ""
msgid "rename failed, %s (%s -> %s)."
msgstr "nav guherandin biserneket, %s (%s -> %s)"
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum li hev nayên"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Hash Sum li hev nayên"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Mezinahî li hev nayên"
+
+#: apt-pkg/acquire-item.cc:164
+msgid "Invalid file format"
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Pakêt nehate dîtin %s"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -2863,41 +2819,35 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, 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:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Mezinahî li hev nayên"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "Pakêt nehate dîtin %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr ""
@@ -3036,49 +2986,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "Hash Sum li hev nayên"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr ""
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr ""
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "Peywira %s nehate dîtin"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Nikarî pakêta %s bibîne"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3103,127 +3053,153 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, fuzzy, c-format
msgid "Installing %s"
msgstr "%s hatine sazkirin"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "%s tê mîhengkirin"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "%s tê rakirin"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "%s bi tevahî hatine rakirin"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr ""
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Peldanka '%s' kêm e"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "Nikarî pelê %s veke"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "%s tê amadekirin"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "%s tê derxistin"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Mîhengkirina %s tê amadekirin"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s hatine sazkirin"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Rakirina %s tê amadekirin"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s hatine rakirin"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Bi tevahî rakirina %s tê amadekirin"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s bi tevahî hatine rakirin"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Nivîsandin ji bo %s ne pêkane"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3252,6 +3228,16 @@ msgstr ""
msgid "Not locked"
msgstr ""
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "Guhartoyên berendam"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s jixwe guhertoya nûtirîn e.\n"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum li hev nayên"
+
#~ msgid "Failed to remove %s"
#~ msgstr "Rakirina %s biserneket"
diff --git a/po/lt.po b/po/lt.po
index ee86c0c97..6e4fcfa35 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2008-08-02 01:47-0400\n"
"Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -18,153 +18,155 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2008-08-02 05:04+0000\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Paketas %s versijos numeriu %s turi netenkinamÄ… priklausomybÄ™:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
#, fuzzy
msgid "Total package names: "
msgstr "Visi paketų pavadinimai: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "Visi paketų pavadinimai: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Normalūs paketai: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Virtualūs paketai: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Pavieniai virtualūs paketai: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Mišrūs virtualūs paketai: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Trūksta: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Viso skirtingų versijų: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
#, fuzzy
msgid "Total distinct descriptions: "
msgstr "Viso skirtingų aprašymų: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Viso priklausomybių: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Viso versijų/failų santykių yra: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Viso aprašymų/failų santykių yra: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr ""
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr ""
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr ""
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr ""
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr ""
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr ""
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Paketų nerasta"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr ""
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Nepavyko rasti paketo %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Paketų failai:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Surišti paketai:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(nerasta)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Įdiegta: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Kandidatas: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(nÄ—ra)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Paketo susiejimai: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Versijų lentelė:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr ""
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -202,35 +204,35 @@ msgid ""
msgstr ""
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Nepavyko pervadinti %s į %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Pakartokite Å¡itÄ… procesÄ… su kitais CD savo rinkinyje."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Parametrai nurodyti ne poromis"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -258,599 +260,62 @@ msgstr ""
" -c=? Nuskaityti pateiktą konfigūracijos failą\n"
" -o=? Nurodyti tam tikrą konfigūracijos parametrą, pvz -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[T/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[t/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "T"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Šie paketai turi neįdiegtų priklausomybių:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "bet %s yra įdiegtas"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "bet %s bus įdiegtas"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "taÄiau jis negali bÅ«ti įdiegtas"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "bet tai yra virtualus paketas"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "bet jis nėra įdiegtas"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "bet jis nebus įdiegtas"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " arba"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Bus įdiegti šie NAUJI paketai:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Bus PAÅ ALINTI Å¡ie paketai:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Šių paketų atnaujinimas sulaikomas:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Bus atnaujinti Å¡ie paketai:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Bus PAKEISTI SENESNIAIS Å¡ie paketai:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Bus pakeisti Å¡ie sulaikyti paketai:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (dÄ—l %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"Įspėjimas: Šie būtini paketai bus pašalinti.\n"
-"Tai NETURĖTŲ būti daroma, kol tiksliai nežinote ką darote!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu atnaujinti, %lu naujai įdiegti, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu įdiegti iš naujo, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu pasendinti, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu bus pašalinta ir %lu neatnaujinta.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu nepilnai įdiegti ar pašalinti.\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Pastaba, žymima %s regex atitikimų formoje '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Pastaba, žymima %s regex atitikimų formoje '%s'\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Paketas %s yra virtualus, pateiktas:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [Įdiegtas]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "Galimos versijos"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Reikia pažymėti įdiegimui bent vieną."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Paketo %s nÄ—ra, bet jis nurodytas prie kito paketo.\n"
-"Tai gali reikšti, kad paketas dingęs, nebenaudojamas \n"
-"arba prieinamas tik iš kitų šaltinių.\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "TaÄiau Å¡ie paketai jį pakeiÄia:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Paketas %s neturi diegimo kandidatų"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "Paketas %s nėra įdiegtas, todėl nebuvo pašalintas\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Paketas %s nėra įdiegtas, todėl nebuvo pašalintas\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Pastaba: pažymimas %s vietoje %s\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nėra nurodytas.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ir taip jau yra naujausias.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Pažymėta versija %s (%s) paketui %s\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Pažymėta versija %s (%s) paketui %s\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Taisomos priklausomybÄ—s..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " nepavyko."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Nepavyko patenkinti priklausomybių"
-
-#: cmdline/apt-get.cc:1063
-#, fuzzy
-msgid "Unable to minimize the upgrade set"
-msgstr "Nepavyko minimizuoti atnaujinimo rinkinio"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Įvykdyta"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Nepatenkintos priklausomybÄ—s. Bandykit naudoti -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "DĖMESIO: Šie paketai negali būti autentifikuoti!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Įdiegti šiuos paketus be patvirtinimo?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Nepavyko autentikuoti kai kurių paketų"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Reikia paÅ¡alinti paketus, taÄiau Å¡alinimas iÅ¡jungtas."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr ""
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "Keista.. Dydis neatitinka, Parašykite laišką apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Reikia parsiųsti %sB/%sB archyvų.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Reikia parsiųsti %sB archyvų.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Po Å¡ios operacijos bus naudojama %sB papildomos disko vietos.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Nepavyko nustatyti %s laisvos vietos"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "%s nÄ—ra pakankamai laisvos vietos."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Taip, daryk kaip liepiu!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Bandote atlikti tikÄ—tinai pavojingÄ… veiksmÄ….\n"
-"Jei norite tęsti, įveskite frazę „%s“\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Nutraukti."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Ar norite tęsti?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Nepavyko parsiųsti %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Nepavyko parsiųsti kai kurių failų"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Pavyko parsiųsti tik parsiuntimo režime"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Nepavyko parsiųsti kai kurių archyvų, pabandykite paleisti „apt-get update“ "
-"arba pabandykite su parametru --fix-missing?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing bei laikmenų apkeitimas nepalaikomas"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Nepavyko pataisyti dingusių paketų."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Diegimas nutraukiamas."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr ""
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Atnaujinimo komandai argumentų nereikia"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-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:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr ""
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
-msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
-msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Norėdami juos pašalinti, paleiskite „apt-get autoremove“"
-msgstr[1] "Norėdami juos pašalinti, paleiskite „apt-get autoremove“"
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr ""
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Nepatenkintos priklausomybės. Pabandykite įvykdyti 'apt-get -f install' be "
-"nurodytų paketų (arba nurodykite išeitį)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Nepavyko įdiegti kai kurių paketų. Tai gali reikšti, kad jūs\n"
-"paprašėte neįmanomo dalyko, arba, jei jūs naudojate nestabilų\n"
-"leidimÄ…, kuomet kai kurie paketai dar nebuvo sukurti arba buvo\n"
-"pašalinti iš \"Incoming\" aplanko."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Sugadinti paketai"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Bus įdiegti šie papildomi paketai:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Siūlomi paketai:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Rekomenduojami paketai:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Nepavyko rasti paketo %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "SkaiÄiuojami atnaujinimai... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Nepavyko"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Įvykdyta"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Vidinė klaida, problemos sprendimas kažką sugadino"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Nepavyko užrakinti parsiuntimų aplanko"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Nepavyko surasti išeities teksto paketo, skirto %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -858,85 +323,95 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Praleidžiama jau parsiųsta byla „%s“\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Nepavyko nustatyti %s laisvos vietos"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Neturite pakankamai laisvos vietos %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Reikia parsiųsti %sB/%sB išeities archyvų.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Reikia parsiųsti %sB išeities archyvų.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "ParsiunÄiamas archyvas %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Nepavyko gauti kai kurių arhcyvų."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Pavyko parsiųsti tik parsiuntimo režime"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Nepavyko įvykdyti išpakavimo komandos „%s“\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Nepavyko įvykdyti paketo kompiliavimo komandos „%s“\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Klaida procese-palikuonyje"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Nepavyko gauti kūrimo-priklausomybių informacijos paketui %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr ""
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -944,7 +419,7 @@ msgid ""
msgstr ""
"%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -952,14 +427,14 @@ msgid ""
msgstr ""
"%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -968,7 +443,7 @@ msgstr ""
"%s priklausomybė %s paketui negali būti patenkinama, nes nėra tinkamos "
"versijos %s paketo"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -976,30 +451,30 @@ msgid ""
msgstr ""
"%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Nepavyko patenkinti %s priklausomybÄ—s %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr ""
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr ""
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Jungiamasi prie %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Palaikomi moduliai:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1045,98 +520,53 @@ msgid ""
" This APT has Super Cow Powers.\n"
msgstr ""
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Imamas "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Gauti:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ignoruotas "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Klaida "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Parsiųsta %sB iš %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Vykdoma]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Laikmenos keitimas: įdėkite diską, pažymėtą\n"
-" „%s“,\n"
-"į įrenginį „%s“ ir paspauskite enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "bet jis nėra įdiegtas"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s ir taip jau yra naujausias.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s ir taip jau yra naujausias.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr ""
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Nepavyko atverti %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1158,6 +588,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1251,8 +698,8 @@ msgstr "Jungiamasi per ilgai"
msgid "Server closed the connection"
msgstr ""
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Skaitymo klaida"
@@ -1265,8 +712,8 @@ msgid "Protocol corruption"
msgstr ""
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Rašymo klaida"
@@ -1278,6 +725,10 @@ msgstr ""
msgid "Could not connect data socket, connection timed out"
msgstr ""
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Nepavyko"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr ""
@@ -1320,7 +771,7 @@ msgstr ""
msgid "Unable to accept connection"
msgstr ""
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr ""
@@ -1448,81 +899,590 @@ msgstr "Šių parašų nebuvo galima patikrinti, nes nėra viešojo rakto:\n"
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr ""
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr ""
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Klaida bandant rašyti į failą"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr ""
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Prisijungimo laiko limitas baigÄ—si"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr ""
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Laukiama antraÅ¡Äių"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr ""
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr ""
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr ""
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr ""
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr ""
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr ""
-#: methods/http.cc:826
-msgid "Select failed"
+#: methods/server.cc:490
+msgid "Bad header data"
msgstr ""
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Prisijungimo laiko limitas baigÄ—si"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Prisijungti nepavyko"
-#: methods/http.cc:854
-msgid "Error writing to output file"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "VidinÄ— klaida"
+
+#: apt-private/private-list.cc:143
+msgid "Listing"
msgstr ""
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Klaida bandant rašyti į failą"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Reikia paÅ¡alinti paketus, taÄiau Å¡alinimas iÅ¡jungtas."
+
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
msgstr ""
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "Keista.. Dydis neatitinka, Parašykite laišką apt@packages.debian.org"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Reikia parsiųsti %sB/%sB archyvų.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Reikia parsiųsti %sB archyvų.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Po Å¡ios operacijos bus naudojama %sB papildomos disko vietos.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Po Å¡ios operacijos bus atlaisvinta %sB disko vietos.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "%s nÄ—ra pakankamai laisvos vietos."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Atsirado problemų ir -y buvo panaudotas be --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
msgstr ""
-#: methods/http.cc:929
-msgid "Error reading from server"
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Taip, daryk kaip liepiu!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
+"Bandote atlikti tikÄ—tinai pavojingÄ… veiksmÄ….\n"
+"Jei norite tęsti, įveskite frazę „%s“\n"
+" ?] "
-#: methods/http.cc:1197
-msgid "Bad header data"
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Nutraukti."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Ar norite tęsti?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Nepavyko parsiųsti kai kurių failų"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
+"Nepavyko parsiųsti kai kurių archyvų, pabandykite paleisti „apt-get update“ "
+"arba pabandykite su parametru --fix-missing?"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Prisijungti nepavyko"
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing bei laikmenų apkeitimas nepalaikomas"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "VidinÄ— klaida"
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Nepavyko pataisyti dingusių paketų."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Diegimas nutraukiamas."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Ši informacija gali padėti išspręsti šią situaciją:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr ""
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
+msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
+msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Norėdami juos pašalinti, paleiskite „apt-get autoremove“"
+msgstr[1] "Norėdami juos pašalinti, paleiskite „apt-get autoremove“"
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Jūs galite norėti paleisti 'apt-get -f install\" klaidų taisymui:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Nepatenkintos priklausomybės. Pabandykite įvykdyti 'apt-get -f install' be "
+"nurodytų paketų (arba nurodykite išeitį)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Nepavyko įdiegti kai kurių paketų. Tai gali reikšti, kad jūs\n"
+"paprašėte neįmanomo dalyko, arba, jei jūs naudojate nestabilų\n"
+"leidimÄ…, kuomet kai kurie paketai dar nebuvo sukurti arba buvo\n"
+"pašalinti iš \"Incoming\" aplanko."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Sugadinti paketai"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Bus įdiegti šie papildomi paketai:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Siūlomi paketai:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Rekomenduojami paketai:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "DĖMESIO: Šie paketai negali būti autentifikuoti!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr ""
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Nepavyko autentikuoti kai kurių paketų"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Įdiegti šiuos paketus be patvirtinimo?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Nepavyko parsiųsti %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Įdiegtas]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Įdiegtas]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Įdiegtas]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Šie paketai turi neįdiegtų priklausomybių:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "bet %s yra įdiegtas"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "bet %s bus įdiegtas"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "taÄiau jis negali bÅ«ti įdiegtas"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "bet tai yra virtualus paketas"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "bet jis nėra įdiegtas"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "bet jis nebus įdiegtas"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " arba"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Bus įdiegti šie NAUJI paketai:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Bus PAÅ ALINTI Å¡ie paketai:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Šių paketų atnaujinimas sulaikomas:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Bus atnaujinti Å¡ie paketai:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Bus PAKEISTI SENESNIAIS Å¡ie paketai:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Bus pakeisti Å¡ie sulaikyti paketai:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (dÄ—l %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"Įspėjimas: Šie būtini paketai bus pašalinti.\n"
+"Tai NETURĖTŲ būti daroma, kol tiksliai nežinote ką darote!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu atnaujinti, %lu naujai įdiegti, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu įdiegti iš naujo, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu pasendinti, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu bus pašalinta ir %lu neatnaujinta.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu nepilnai įdiegti ar pašalinti.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[T/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[t/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "T"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr ""
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Taisomos priklausomybÄ—s..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " nepavyko."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Nepavyko patenkinti priklausomybių"
+
+#: apt-private/private-cachefile.cc:96
+#, fuzzy
+msgid "Unable to minimize the upgrade set"
+msgstr "Nepavyko minimizuoti atnaujinimo rinkinio"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Įvykdyta"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Įvykdykite „apt-get -f install“, jei norite ištaisyti šias klaidas."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Nepatenkintos priklausomybÄ—s. Bandykit naudoti -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Atnaujinimo komandai argumentų nereikia"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "SkaiÄiuojami atnaujinimai... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Vidinė klaida, problemos sprendimas kažką sugadino"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Įvykdyta"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Nepavyko pervadinti %s į %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Imamas "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Gauti:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ignoruotas "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Klaida "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Parsiųsta %sB iš %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Vykdoma]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Laikmenos keitimas: įdėkite diską, pažymėtą\n"
+" „%s“,\n"
+"į įrenginį „%s“ ir paspauskite enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Nepavyko perskaityti %s"
@@ -1581,36 +1541,36 @@ msgstr "Nepavyko subprocesui sukurti IPC gijos"
msgid "Connection closed prematurely"
msgstr ""
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Blogi standartiniai nustatymai!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Jei norite tęsti, spauskite Enter."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr ""
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Išpakuojant įvyko klaidų. Bandysiu konfigūruoti"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "paketus, kurie buvo įdiegti. Tai gali sukelti pasikartojanÄias klaidas"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"arba klaidas, atsiradusias dėl trūkstamų priklausomybių. Viskas gerai, tik "
"klaidos,"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1868,36 +1828,36 @@ msgstr "Nepavyko nuskaityti nuorodos %s"
msgid "Failed to unlink %s"
msgstr "Nepavyko atsieti nuorodos %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Nepavyko susieti %s su %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr ""
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Archyvas neturÄ—jo paketo lauko"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s neturi perrašymo įrašo\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s prižiūrėtojas yra %s, o ne %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr ""
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr ""
@@ -1976,7 +1936,7 @@ msgstr ""
msgid "Failed to rename %s to %s"
msgstr "Nepavyko pervadinti %s į %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2047,7 +2007,7 @@ msgstr "Sugadintas archyvas"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar kontrolinÄ— suma klaidinga, archyvas sugadintas"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Nežinomas TAR antraštės tipas %u. narys %s"
@@ -2171,22 +2131,17 @@ msgid "Unable to stat %s"
msgstr ""
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr ""
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "VidinÄ— klaida, nepavyko aptikti nario %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr ""
@@ -2244,85 +2199,85 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr ""
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr ""
@@ -2347,48 +2302,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Baigta"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Parametrui %s reikia argumento."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Klaidingas veiksmas %s"
@@ -2402,116 +2357,116 @@ msgstr ""
msgid "Failed to stat the cdrom"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "Klaida užveriant failą"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Nepavyko atverti rakinimo failo %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Nepavyko rezervuoti rakinimo failo %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Procesas %s gavo segmentavimo klaidÄ…"
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "Procesas %s gavo segmentavimo klaidÄ…"
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "Procesas %s grąžino klaidos kodą (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Procesas %s netikėtai išėjo"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Nepavyko atverti failo %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "Nepavyko atverti failo %s"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Nepavyko sukurti subproceso IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Nepavyko paleisti suspaudÄ—jo "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "Klaida užveriant failą"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Klaida sinchronizuojant failÄ…"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "Klaida užveriant failą"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Klaida sinchronizuojant failÄ…"
@@ -2628,12 +2583,12 @@ msgstr ""
msgid "Failed to write temporary StateFile %s"
msgstr ""
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr ""
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr ""
@@ -2708,19 +2663,19 @@ msgstr ""
msgid "Type '%s' is not known on line %u in source list %s"
msgstr ""
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Nepavyko atverti failo %s"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2739,25 +2694,16 @@ msgid ""
"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
msgstr ""
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr ""
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Kai kurių indeksų failų nepavyko parsiųsti, jie buvo ignoruoti arba vietoje "
-"jų panaudoti seni."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2800,12 +2746,12 @@ msgstr ""
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Įdėkite diską „%s“ į įrenginį „%s“ ir paspauskite Enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr ""
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr ""
@@ -2839,17 +2785,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr ""
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr ""
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr ""
@@ -2916,44 +2862,48 @@ msgstr ""
msgid "rename failed, %s (%s -> %s)."
msgstr ""
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5 sumos neatitikimas"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Maišos sumos nesutapimas"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Neatitinka dydžiai"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Klaidingas veiksmas %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Nepavyko atverti DB failo %s: %s"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -2961,41 +2911,35 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "GPG klaida: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, 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:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Neatitinka dydžiai"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "Nepavyko atverti DB failo %s: %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "Pastaba: pažymimas %s vietoje %s\n"
@@ -3134,49 +3078,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "Maišos sumos nesutapimas"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Nebuvo rastas „%s“ leidimas paketui „%s“"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Nebuvo rasta „%s“ versija paketui „%s“"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "Nepavyko rasti užduoties %s"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Nepavyko rasti paketo %s"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3201,127 +3145,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Kai kurių indeksų failų nepavyko parsiųsti, jie buvo ignoruoti arba vietoje "
+"jų panaudoti seni."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, fuzzy, c-format
msgid "Installing %s"
msgstr "Įdiegta %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Konfigūruojamas %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Å alinamas %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "Visiškai pašalintas %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr ""
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Trūksta aplanko „%s“"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "Nepavyko atverti failo %s"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Ruošiamas %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "IÅ¡pakuojamas %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Ruošiamasi konfigūruoti %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Įdiegta %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Ruošiamasi %s pašalinimui"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Pašalintas %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Ruošiamasi visiškai pašalinti %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Visiškai pašalintas %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Nepavyko įrašyti į %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3351,6 +3324,80 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Pastaba, žymima %s regex atitikimų formoje '%s'\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Pastaba, žymima %s regex atitikimų formoje '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Paketas %s yra virtualus, pateiktas:\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "Galimos versijos"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Reikia pažymėti įdiegimui bent vieną."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Paketo %s nÄ—ra, bet jis nurodytas prie kito paketo.\n"
+#~ "Tai gali reikšti, kad paketas dingęs, nebenaudojamas \n"
+#~ "arba prieinamas tik iš kitų šaltinių.\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "TaÄiau Å¡ie paketai jį pakeiÄia:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Paketas %s neturi diegimo kandidatų"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "Paketas %s nėra įdiegtas, todėl nebuvo pašalintas\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Paketas %s nėra įdiegtas, todėl nebuvo pašalintas\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Pastaba: pažymimas %s vietoje %s\n"
+
+#~ 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"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nėra "
+#~ "nurodytas.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "Pakartotinas %s įdiegimas neįmanomas, jo nepavyksta parsiųsti.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s ir taip jau yra naujausias.\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Pažymėta versija %s (%s) paketui %s\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Pažymėta versija %s (%s) paketui %s\n"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5 sumos neatitikimas"
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Praleidžiama jau parsiųsta byla „%s“\n"
diff --git a/po/mr.po b/po/mr.po
index cb4c35bd6..d5178e997 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2008-11-20 23:27+0530\n"
"Last-Translator: Sampada <sampadanakhare@gmail.com>\n"
"Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India "
@@ -16,152 +16,154 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "पॅकेज %s आवृती %s मधà¥à¤¯à¥‡ à¤à¤• अनोळखी डीईपी:आहे\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "पॅकेजची सरà¥à¤µ नांवे: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "पॅकेजची सरà¥à¤µ नांवे: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " सामानà¥à¤¯ पॅकेजेसà¥: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " शà¥à¤§à¥à¤¦ आभासी पॅकेजेसà¥:"
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " à¤à¤•à¤®à¥‡à¤µ आभासी पॅकेजेसà¥:"
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr "मिशà¥à¤°à¤¿à¤¤ आभासी पॅकेजेसà¥:"
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " हरवलेले/गहाळ: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "à¤à¤•à¥‚ण सà¥à¤ªà¤·à¥à¤Ÿ आवृतà¥à¤¯à¤¾: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "à¤à¤•à¥‚ण सà¥à¤ªà¤·à¥à¤Ÿ विवरणे: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "à¤à¤•à¥‚ण निरà¥à¤­à¤°à¤¤à¤¾:"
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "à¤à¤•à¥‚ण वà¥à¤¹à¥€à¤ˆà¤†à¤°/संचिका परसà¥à¤ªà¤° संबंध:"
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "à¤à¤•à¥‚ण विव/संचिका परसà¥à¤ªà¤° संबंध:"
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "à¤à¤•à¥‚ण मॅपींगसॠतरतूद: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "à¤à¤•à¥‚ण à¤à¤•à¤¤à¥à¤°à¤¿à¤¤ अकà¥à¤·à¤°à¤¸à¤‚च:"
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "à¤à¤•à¥‚ण परावलंबित आवृतà¥à¤¤à¥€ अवकाश:"
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "à¤à¤•à¥‚ण दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ अवकाश:"
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "हिशेबात घेतलेली à¤à¤•à¥‚ण अवकाश(जागा):"
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "पॅकेज संचिका %s सिंकà¥à¤°à¥‹à¤¨à¤¾à¤‡à¤œ नाहीत"
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "पॅकेजेस सापडले नाहीत"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ फकà¥à¤¤ à¤à¤•à¤š नमà¥à¤¨à¤¾ दà¥à¤¯à¤¾à¤µà¤¾ लागेल"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "पॅकेज %s शोधणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ आहे"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "पॅकेज संचिका:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "दृतिका सिंक नाही,पॅकेज संचिका कà¥à¤·-संदरà¥à¤­ करता येत नाही"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "à¤à¤•à¤¤à¥à¤°à¤¿à¤¤ पॅकेजेस:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(मिळाले नाही)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr "अधिषà¥à¤ à¤¾à¤ªà¤¿à¤¤ केले:"
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr "उमेदवार:"
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(कोणताच नाही)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr "पॅकेज (पिन):"
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr "आवृतà¥à¤¤à¥€ कोषà¥à¤Ÿà¤•:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s हे %s करिता %s %s वर संगà¥à¤°à¤¹à¤¿à¤¤\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -235,36 +237,36 @@ msgstr ""
"अधिक माहितीसाठी apt-cache(8) and apt.conf(5) ची मॅनà¥à¤¯à¥à¤…ल पृषà¥à¤ à¥‡ पहा \n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
#, fuzzy
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "या तबकडीला कृपया नाव दà¥à¤¯à¤¾ जसे डेबियन २ à¤à¤²à¤†à¤°à¤à¤² तबकडी १"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "कृपया तबकडी डà¥à¤°à¤¾à¤ˆà¤µà¥à¤¹à¤®à¤§à¥à¤¯à¥‡ ठेवून à¤à¤‚टर दाबा"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "%s ला पà¥à¤¨à¤°à¥à¤¨à¤¾à¤®à¤¾à¤‚कन %s करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ "
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "तà¥à¤®à¤šà¥à¤¯à¤¾ संचामधील सरà¥à¤µ सीडीजसाठी याच कृतीची पà¥à¤¨à¤°à¤¾à¤µà¥ƒà¤¤à¥à¤¤à¥€ करा(हीच कृती करा)"
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "चलितमूलà¥à¤¯ जोडीने नाहीत"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -292,603 +294,62 @@ msgstr ""
" -c= ? ही संरचना संचिका वाचा \n"
" -o=? à¤à¤–दा अहेतà¥à¤• संरचना परà¥à¤¯à¤¾à¤¯ निरà¥à¤§à¤¾à¤°à¤¿à¤¤ करा, उदा।eg -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "होय"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "रिजेकà¥à¤¸ कंपायलेशन तà¥à¤°à¥à¤Ÿà¥€ -%s "
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "खालील पॅकेजेस मधà¥à¤¯à¥‡ नमिळणाऱà¥à¤¯à¤¾ निरà¥à¤­à¤°à¤¤à¤¾/ डिपेनà¥à¤¡à¤¨à¥à¤¸à¥€à¤œ आहेत:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "पण %s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥‡"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "पण %s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करणà¥à¤¯à¤¾à¤œà¥‹à¤—े नाही"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "पण ते आभासी पॅकेज आहे"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले नाही"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होणार नाही"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr "किंवा"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "खालील नविन पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होतील:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "खालील नविन पॅकेजेस कायमची काढून टाकली जातील:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "खालील पॅकेजेस परत ठेवली गेली:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "खालील पॅकेजेस पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ होतील:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "खालील पॅकेजेस पà¥à¤¢à¤šà¥à¤¯à¤¾ आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ होणार नाहीत:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "पà¥à¤¢à¤¿à¤² ठेवलेली पॅकेजेस बदलतील:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (चà¥à¤¯à¤¾ मà¥à¤³à¥‡ %s)"
-
-#: cmdline/apt-get.cc:600
-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"
-"तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तà¥à¤®à¥à¤¹à¥€ काय करत आहात हे कळेपरà¥à¤¯à¤‚त असं करता येणार नाही!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu पà¥à¤¢à¥‡ आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ केले, %lu नवà¥à¤¯à¤¾à¤¨à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले,"
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu पà¥à¤¨à¤°à¥à¤¸à¤‚सà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले,"
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu मागील आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ केले,"
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu कायमचे काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ आणि %lu पà¥à¤¢à¤šà¥à¤¯à¤¾ आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ à¤à¤¾à¤²à¥‡à¤²à¥€ नाही.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu संपूरà¥à¤£ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ किंवा कायमची काढून टाकलेली नाही.\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "सूचना, '%s' रिजेकà¥à¤¸ साठी %s ची निवड करत आहे\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "सूचना, '%s' रिजेकà¥à¤¸ साठी %s ची निवड करत आहे\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "%s हे आभासी पॅकेज हà¥à¤¯à¤¾à¤‚चà¥à¤¯à¤¾à¤•à¤¡à¥‚न तरतूद केले आहे,:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr "[संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "कंॅडिडेट आवृतà¥à¤¤à¥à¤¯à¤¾"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "तà¥à¤®à¥à¤¹à¥€ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ à¤à¤• निशà¥à¤šà¤¿à¤¤ सà¥à¤ªà¤·à¥à¤Ÿà¤ªà¤£à¥‡ निवडले पाहिजे."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"%s पॅकेज उपलबà¥à¤§ नाही, पण दà¥à¤¸à¤±à¥à¤¯à¤¾ पॅकेजचà¥à¤¯à¤¾ संदरà¥à¤­à¤¾à¤¨à¥‡.\n"
-"याचा अरà¥à¤¥ असाही आहे की पॅकेज सापडत नाही,ते कालबाहà¥à¤¯ किंवा \n"
-" मà¥à¤¹à¤£à¤œà¥‡ ते दà¥à¤¸à¤±à¥à¤¯à¤¾ उगमातून उपलबà¥à¤§\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "तथापि खालील पॅकेजेस मधà¥à¤¯à¥‡ बदल à¤à¤¾à¤²à¤¾:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "%s पॅकेजला संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ कॅनà¥à¤¡à¤¿à¤¡à¥‡à¤Ÿ नाही"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "%s पॅकेज संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केलेले नाही,मà¥à¤¹à¤£à¥‚न काढले नाही\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "%s पॅकेज संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केलेले नाही,मà¥à¤¹à¤£à¥‚न काढले नाही\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "लकà¥à¤·à¤¾à¤¤ घà¥à¤¯à¤¾,%s à¤à¤µà¤œà¥€ %s ची निवड करत आहे \n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "%s सोडून देत आहे, ते आधिच संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले आहे आणि पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€ निशà¥à¤šà¤¿à¤¤ केलेली नाही.\n"
-
-#: cmdline/apt-get.cc:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "%s सोडून देत आहे, ते आधिच संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले आहे आणि पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€ निशà¥à¤šà¤¿à¤¤ केलेली नाही.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "%s चे पà¥à¤¨à¤°à¥à¤¸à¤‚सà¥à¤¥à¤¾à¤ªà¤¨ शकà¥à¤¯ नाही, हे डाऊनलोड करता येत नाही.\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ही आधीच नविन आवृतà¥à¤¤à¥€ आहे.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे.\n"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "%s साठी %s (%s) निवडलेली आवृतà¥à¤¤à¥€.\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "%s साठी %s (%s) निवडलेली आवृतà¥à¤¤à¥€.\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "डिपेनà¥à¤¡à¤¨à¥à¤¸à¥€à¤œ बरोबर/दà¥à¤°à¥‚सà¥à¤¤ करत आहे..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr "अयशसà¥à¤µà¥€/चूकीचे à¤à¤¾à¤²à¥‡."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "डिपेनà¥à¤¡à¤¨à¥à¤¸à¥€à¤œ बरोबर करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ आहे "
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ संच कमीतकमी करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr "à¤à¤¾à¤²à¥‡"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "हे बरोबर करणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ `apt-get -f संसà¥à¤¥à¤¾à¤ªà¤¨à¤¾' पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® चालू करावा लागेल."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "अनमेट डिपेंडनà¥à¤¸à¥€à¤œ.-f.वापरून पà¥à¤°à¤¯à¤¤à¥à¤¨ करा "
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "धोकà¥à¤¯à¤¾à¤šà¥€ सूचना:खालील पॅकेजेसॠपà¥à¤°à¤®à¤¾à¤£à¤¿à¤¤ करॠशकत नाही! "
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "पà¥à¤°à¤®à¤¾à¤£à¥€à¤•à¤°à¤£à¤¾à¤šà¥€ धोकà¥à¤¯à¤¾à¤šà¥€ सूचना दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ करा.\n"
-
-#: cmdline/apt-get.cc:1108
-#, fuzzy
-msgid "Install these packages without verification?"
-msgstr "पडताळून पाहिलà¥à¤¯à¤¾à¤¶à¤¿à¤µà¤¾à¤¯ ही पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायची का [हो/नाही]?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "काही पॅकेजेसचे पà¥à¤°à¤®à¤¾à¤£à¤¿à¤•à¤°à¤£ होऊ शकत नाही"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "काही अडचणी आहेत आणि --force-yes शिवाय -y वापरला गेला"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€, तà¥à¤Ÿà¤²à¥‡à¤²à¥à¤¯à¤¾ पॅकेजेस बरोबर संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ पॅकेजला आवाहन केले गेले/बोलावले गेले!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "पॅकेजेस कायमची काढायची आहेत पण रिमूवà¥à¤¹ अकारà¥à¤¯à¤•à¥à¤·à¤® केले आहे"
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€,कà¥à¤°à¤® अजून संपला नाही"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "किती विचितà¥à¤°...आकार जà¥à¤³à¤¤ नाहीत, ईमेल apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œà¤šà¥à¤¯à¤¾ %sB/%sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œ%sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "या कà¥à¤°à¤¿à¤¯à¥‡à¤¨à¤‚तर, %sB à¤à¤µà¤¢à¥€ अधिक डिसà¥à¤• जागा वापरली जाईल.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "या कà¥à¤°à¤¿à¤¯à¥‡à¤¨à¤‚तर, %sB डिसà¥à¤• जागा मोकळी होईल.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "%s मधà¥à¤¯à¥‡ रिकामी जागा सांगू शकत नाही"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "%s मधà¥à¤¯à¥‡ तà¥à¤®à¤šà¥à¤¯à¤¾à¤•à¤¡à¥‡ पà¥à¤°à¥‡à¤¶à¥€ जागा नाही."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "कà¥à¤·à¥à¤²à¥à¤²à¤• फकà¥à¤¤ निरà¥à¤¦à¥‡à¤¶à¤¿à¤¤ केले आहे पण हे कà¥à¤·à¥à¤²à¥à¤²à¤• कृति/ऑपरेशन नाही."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "हो, मी मà¥à¤¹à¥à¤Ÿà¤²à¥à¤¯à¤¾à¤ªà¥à¤°à¤®à¤¾à¤£à¥‡ करा!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"तà¥à¤®à¥à¤¹à¥€ संभावà¥à¤¯ काहीतरी नà¥à¤•à¤¸à¤¾à¤¨à¤•à¤¾à¤°à¤• करणार होतात.\n"
-"पà¥à¤¢à¥‡ '%s' उकà¥à¤¤à¥€ मधà¥à¤¯à¥‡ लिहिणार \n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "वà¥à¤¯à¤¤à¥à¤¯à¤¯/बंद करा."
-
-#: cmdline/apt-get.cc:1313
-#, fuzzy
-msgid "Do you want to continue?"
-msgstr "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ पà¥à¤¢à¥‡ जायचे आहे [Y/n]? "
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "%s %s आणणे असफल\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "काही संचिका डाऊनलोड करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "डाऊनलोड संपूरà¥à¤£ आणि डाऊनलोड मधà¥à¤¯à¥‡ फकà¥à¤¤ पदà¥à¤§à¤¤à¥€"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"काही आरà¥à¤•à¤¾à¤‡à¤µà¥à¤¹à¤œ आणणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥, कदाचित apt-get रन करà¥à¤¨ अदà¥à¤¯à¤¯à¤¾à¤µà¤¤ करा किंवा --fix- "
-"बरोबर पà¥à¤°à¤¯à¤¤à¥à¤¨ कराहरवलेले/गहाळ?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr ""
-"--fix- सापडत नाही आणि माधà¥à¤¯à¤®/मिडिया अदलाबदल हे सधà¥à¤¯à¤¾ तांतà¥à¤°à¤¿à¤• मदत देऊ शकत नाही"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "न सापडणारी पॅकेजेस नीट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "संसà¥à¤¥à¤¾à¤ªà¤¨ खंडित करत आहे."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, fuzzy, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "%s उगम पॅकेज यादी सà¥à¤°à¥‚ करता येत नाही"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "सà¥à¤§à¤¾à¤°à¤¿à¤¤ आवृतà¥à¤¤à¥€à¤šà¤¾ विधान आरà¥à¤—à¥à¤¯à¥à¤®à¥‡à¤‚टस घेऊ शकत नाही."
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr "आपण या गोषà¥à¤Ÿà¥€ काढून टाकता नये, ऑटोरिमूवà¥à¤¹à¤° सà¥à¤°à¥‚ करता येत नाही"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"हूं, AutoRemover ने काहीतरी नषà¥à¤Ÿ केलà¥à¤¯à¤¾à¤šà¥‡ दिसतेय, खरेतर असे वà¥à¤¹à¤¾à¤¯à¤²à¤¾ नको\n"
-"कृपया apt कडे बग रिपोरà¥à¤Ÿ दाखल करा. "
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "खालील माहिती परिसà¥à¤¥à¤¿à¤¤à¥€ निवळणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ मदत ठरू शकेल:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€, AutoRemoverने सà¥à¤Ÿà¤«à¤²à¤¾ तोडले"
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:"
-msgstr[1] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:"
-msgstr[1] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "ती काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ 'apt-get autoremove' वापरा."
-msgstr[1] "ती काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ 'apt-get autoremove' वापरा."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€,ऑलअपगà¥à¤°à¥‡à¤¡à¤¨à¥‡ सà¥à¤Ÿà¤«à¤²à¤¾ तोडले"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr ""
-"तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ कदाचित 'apt-get -f install'(à¤à¤ªà¥€à¤Ÿà¥€-गेट -à¤à¤« संसà¥à¤¥à¤¾à¤ªà¤¨') पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® चालू करावा "
-"लागेल'यात बदल करणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"अनमेट डिपेंडनà¥à¤¸à¥€à¤œ.à¤à¤ªà¥€à¤Ÿà¥€-गेट -à¤à¤« संसà¥à¤¥à¤¾à¤ªà¤¨ ('apt-get -f install') पॅकेजशिवाय पà¥à¤°à¤¯à¤¤à¥à¤¨ करा "
-"(किंवा परà¥à¤¯à¤¾à¤¯ सांगा)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"काही पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होत नाहीत. याचा अरà¥à¤¥ असा आहे की तà¥à¤®à¥à¤¹à¥€\n"
-"अशकà¥à¤¯ परिसà¥à¤¥à¤¿à¤¤à¥€à¤šà¥€ विनंती केली होती. किंवा जर तà¥à¤®à¥à¤¹à¥€ असà¥à¤¥à¤¿à¤°\n"
-"विभागणी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n"
-"किंवा ती येणाऱà¥à¤¯à¤¾à¤‚पैकी बाहेर हलविली असतील."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "तà¥à¤Ÿà¤²à¥‡à¤²à¥€ पॅकेजेस"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "खालील अतिरिकà¥à¤¤ पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होतील:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "सà¥à¤šà¤µà¤²à¥‡à¤²à¥€ पॅकेजेस:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "शिफारस केलेली पॅकेजेस:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "%s पॅकेज सापडू शकले नाही"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€à¤šà¥€ गणती करीत आहे..."
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "असमरà¥à¤¥"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "à¤à¤¾à¤²à¥‡"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€, अडचण निवारकाने सà¥à¤Ÿà¤«à¤²à¤¾ तोडले"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "डाऊनलोड डिरेकà¥à¤Ÿà¤°à¥€ कà¥à¤²à¥‚पबंद करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "उगम शोधणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ किमान à¤à¤• पॅकेज देणे/सांगणे गरजेचे आहे"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "%s उगम पॅकेज शोधणे शकà¥à¤¯ नाही/शोधणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ आहे"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -896,104 +357,114 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "आधीच डाऊनलोड केलेली '%s' फाईल सोडून दà¥à¤¯à¤¾\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "%s मधà¥à¤¯à¥‡ रिकामी जागा सांगू शकत नाही"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "%s मधà¥à¤¯à¥‡ पà¥à¤°à¥‡à¤¶à¥€ जागा नाही"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "उगम अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œ चा %sB/%sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "उगम अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œà¤šà¤¾ %sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "%s उगम घà¥à¤¯à¤¾\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "काही अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œ आणणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "डाऊनलोड संपूरà¥à¤£ आणि डाऊनलोड मधà¥à¤¯à¥‡ फकà¥à¤¤ पदà¥à¤§à¤¤à¥€"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "%s मधà¥à¤¯à¥‡ आधीच उघडलेलà¥à¤¯à¤¾ उगमातील उघडलेलà¥à¤¯à¤¾à¤²à¤¾ सोडून दà¥à¤¯à¤¾ किंवा वगळा\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "'%s' आजà¥à¤žà¤¾ सà¥à¤Ÿà¥à¤¯à¤¾ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "'dpkg-dev' पॅकेज संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले आहे का ते पडताळून पहा.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "बांधणी करणाऱà¥à¤¯à¤¾ आजà¥à¤žà¤¾ '%s' अयशसà¥à¤µà¥€.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "चाईलà¥à¤¡ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ अयशसà¥à¤µà¥€"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr "बिलà¥à¤¡à¥‡à¤ªà¤¸à¥ कशासाठी ते पडताळणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ किमान à¤à¤• पॅकेज सांगणे गरजेचे आहे"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "%s साठी बांधणी डिपेंडनà¥à¤¸à¥€ माहिती मिळवणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s ला बांधणी डिपेंडनà¥à¤¸ नाहीत.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
"packages"
msgstr "%s पॅकेज न सापडलà¥à¤¯à¤¾à¤¨à¥‡ %s साठी %s डिपेंडनà¥à¤¸à¥€ पूरà¥à¤£ होऊ शकत नाही"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, 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:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr "%s अवलंबितà¥à¤µ %s साठी पूरà¥à¤£ होणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥: संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ पॅकेज %s खूपच नवीन आहे"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1002,37 +473,37 @@ msgstr ""
"आवृतीची मागणी पूरà¥à¤£ करणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ %s पॅकेजची आवृतà¥à¤¤à¥€ उपलबà¥à¤§ नाही,तà¥à¤¯à¤¾à¤®à¥à¤³à¥‡ %s साठी %s "
"डिपेंडनà¥à¤¸à¥€ पूरà¥à¤£ होऊ शकत नाही"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
"version"
msgstr "%s पॅकेज न सापडलà¥à¤¯à¤¾à¤¨à¥‡ %s साठी %s डिपेंडनà¥à¤¸à¥€ पूरà¥à¤£ होऊ शकत नाही"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "%s साठी %s डिपेंडनà¥à¤¸à¥€ पूरà¥à¤£ होणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "%s साठी बांधणी-डिपेंडनà¥à¤¸à¥€à¤œ पूरà¥à¤£ होऊ शकत नाही."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "बांधणी-डिपेंडनà¥à¤¸à¥€à¤œ कà¥à¤°à¤¿à¤¯à¤¾ पूरà¥à¤£ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ "
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "%s (%s) ला जोडत आहे"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® गटाला तांतà¥à¤°à¤¿à¤• मदत दिली:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1119,98 +590,53 @@ msgstr ""
" apt.conf(5) पà¥à¤¸à¥à¤¤à¤¿à¤•à¤¾ पाने पहा.\n"
" हà¥à¤¯à¤¾ APT ला सà¥à¤ªà¤° काऊ पॉवरà¥à¤¸ आहेत\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "दाबा"
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "मिळवा:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "आय.जी.à¤à¤¨."
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "दोष इ.आर.आर."
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%s (%sB/s) मधà¥à¤¯à¥‡ %sB मिळविला\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr "[काम करत आहे]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"माधà¥à¤¯à¤® बदल: कृपया नाव घातलेली सीडी घाला\n"
-"%s'\n"
-"'%s' डà¥à¤°à¤¾à¤ˆà¤µà¥à¤¹ मधà¥à¤¯à¥‡ व à¤à¤‚टर कळ दाबा\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले नाही"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s ही आधीच नविन आवृतà¥à¤¤à¥€ आहे.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s ही आधीच नविन आवृतà¥à¤¤à¥€ आहे.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "%s साठी थांबलो पण ते तेथे नवà¥à¤¹à¤¤à¥‡"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "%s उघडणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1232,6 +658,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1329,8 +772,8 @@ msgstr "वेळेअभावी संबंध जोडता येत à¤
msgid "Server closed the connection"
msgstr "सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ संबंध जोडणी बंद केली"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "तà¥à¤°à¥à¤Ÿà¥€ वाचा"
@@ -1343,8 +786,8 @@ msgid "Protocol corruption"
msgstr "पà¥à¤°à¥‹à¤Ÿà¥‹à¤•à¥‰à¤² खराब à¤à¤¾à¤²à¥‡"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "लिहिणà¥à¤¯à¤¾à¤¤ तà¥à¤°à¥à¤Ÿà¥€"
@@ -1356,6 +799,10 @@ msgstr "सॉकेट तयार करू शकत नाही"
msgid "Could not connect data socket, connection timed out"
msgstr "डेटा सॉकेट जोडू शकत नाही,जोडणी वेळेअभावी बंद केली"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "असमरà¥à¤¥"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "पॅसिवà¥à¤¹ सॉकेट जोडता येत नाही"
@@ -1398,7 +845,7 @@ msgstr "डेटा सॉकेट जोडणी वेळेअभावी
msgid "Unable to accept connection"
msgstr "जोडणी सà¥à¤µà¤¿à¤•à¤¾à¤°à¤£à¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "फाईल हॅश करणà¥à¤¯à¤¾à¤¤ तà¥à¤°à¥à¤Ÿà¥€"
@@ -1528,81 +975,596 @@ msgstr "खालील सहà¥à¤¯à¤¾à¤‚ची खातà¥à¤°à¥€ करता
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "फाईल मधà¥à¤¯à¥‡ लिहिणà¥à¤¯à¤¾à¤¤ चूक/तà¥à¤°à¥à¤Ÿà¥€"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "सरà¥à¤µà¥à¤¹à¤° मधून वाचणà¥à¤¯à¤¾à¤¤ चूक. लांब शेवट आणि बंद à¤à¤¾à¤²à¥‡à¤²à¥€ जोडणी"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "सरà¥à¤µà¥à¤¹à¤° मधून वाचणà¥à¤¯à¤¾à¤¤ चूक"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "फाईल मधà¥à¤¯à¥‡ लिहिणà¥à¤¯à¤¾à¤¤ चूक/तà¥à¤°à¥à¤Ÿà¥€"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "चà¥à¤•à¤²à¥‡/असमरà¥à¤¥ निवड करा"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "जोडणी वेळेअभावी तà¥à¤Ÿà¤²à¥€"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "निरà¥à¤—त फाईल मधà¥à¤¯à¥‡ लिहिताना तà¥à¤°à¥à¤Ÿà¥€/चूक"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "शीरà¥à¤·à¤•à¤¾à¤¸à¤¾à¤ à¥€ थांबले आहे...."
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "वाईट शीरà¥à¤·à¤• ओळ"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "HTTP सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ अवैध पà¥à¤°à¤¤à¥à¤¤à¥à¤¯à¥à¤¤à¥à¤¤à¤° शीरà¥à¤·à¤• पाठविले"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "HTTP सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ अवैध मजकूर-लांबी शीरà¥à¤·à¤• पाठविले "
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "HTTP सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ अवैध मजकूर-विसà¥à¤¤à¤¾à¤° शीरà¥à¤·à¤• पाठविले"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "HTTP सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ विसà¥à¤¤à¤¾à¤° तांतà¥à¤°à¤¿à¤• मदत जोडली"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "अपरिचित दिनांक पà¥à¤°à¤•à¤¾à¤°/सà¥à¤µà¤°à¥‚प "
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "चà¥à¤•à¤²à¥‡/असमरà¥à¤¥ निवड करा"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "चà¥à¤•à¥€à¤šà¤¾ शीरà¥à¤·à¤• डाटा"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "जोडणी वेळेअभावी तà¥à¤Ÿà¤²à¥€"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "जोडणी अयशसà¥à¤µà¥€"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "निरà¥à¤—त फाईल मधà¥à¤¯à¥‡ लिहिताना तà¥à¤°à¥à¤Ÿà¥€/चूक"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "फाईल मधà¥à¤¯à¥‡ लिहिणà¥à¤¯à¤¾à¤¤ चूक/तà¥à¤°à¥à¤Ÿà¥€"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "फाईल मधà¥à¤¯à¥‡ लिहिणà¥à¤¯à¤¾à¤¤ चूक/तà¥à¤°à¥à¤Ÿà¥€"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€, तà¥à¤Ÿà¤²à¥‡à¤²à¥à¤¯à¤¾ पॅकेजेस बरोबर संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ पॅकेजला आवाहन केले गेले/बोलावले गेले!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "सरà¥à¤µà¥à¤¹à¤° मधून वाचणà¥à¤¯à¤¾à¤¤ चूक. लांब शेवट आणि बंद à¤à¤¾à¤²à¥‡à¤²à¥€ जोडणी"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "पॅकेजेस कायमची काढायची आहेत पण रिमूवà¥à¤¹ अकारà¥à¤¯à¤•à¥à¤·à¤® केले आहे"
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "सरà¥à¤µà¥à¤¹à¤° मधून वाचणà¥à¤¯à¤¾à¤¤ चूक"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€,कà¥à¤°à¤® अजून संपला नाही"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "चà¥à¤•à¥€à¤šà¤¾ शीरà¥à¤·à¤• डाटा"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "किती विचितà¥à¤°...आकार जà¥à¤³à¤¤ नाहीत, ईमेल apt@packages.debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "जोडणी अयशसà¥à¤µà¥€"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œà¤šà¥à¤¯à¤¾ %sB/%sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œ%sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "या कà¥à¤°à¤¿à¤¯à¥‡à¤¨à¤‚तर, %sB à¤à¤µà¤¢à¥€ अधिक डिसà¥à¤• जागा वापरली जाईल.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "या कà¥à¤°à¤¿à¤¯à¥‡à¤¨à¤‚तर, %sB डिसà¥à¤• जागा मोकळी होईल.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "%s मधà¥à¤¯à¥‡ तà¥à¤®à¤šà¥à¤¯à¤¾à¤•à¤¡à¥‡ पà¥à¤°à¥‡à¤¶à¥€ जागा नाही."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "काही अडचणी आहेत आणि --force-yes शिवाय -y वापरला गेला"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "कà¥à¤·à¥à¤²à¥à¤²à¤• फकà¥à¤¤ निरà¥à¤¦à¥‡à¤¶à¤¿à¤¤ केले आहे पण हे कà¥à¤·à¥à¤²à¥à¤²à¤• कृति/ऑपरेशन नाही."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "हो, मी मà¥à¤¹à¥à¤Ÿà¤²à¥à¤¯à¤¾à¤ªà¥à¤°à¤®à¤¾à¤£à¥‡ करा!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"तà¥à¤®à¥à¤¹à¥€ संभावà¥à¤¯ काहीतरी नà¥à¤•à¤¸à¤¾à¤¨à¤•à¤¾à¤°à¤• करणार होतात.\n"
+"पà¥à¤¢à¥‡ '%s' उकà¥à¤¤à¥€ मधà¥à¤¯à¥‡ लिहिणार \n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "वà¥à¤¯à¤¤à¥à¤¯à¤¯/बंद करा."
+
+#: apt-private/private-install.cc:254
+#, fuzzy
+msgid "Do you want to continue?"
+msgstr "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ पà¥à¤¢à¥‡ जायचे आहे [Y/n]? "
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "काही संचिका डाऊनलोड करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"काही आरà¥à¤•à¤¾à¤‡à¤µà¥à¤¹à¤œ आणणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥, कदाचित apt-get रन करà¥à¤¨ अदà¥à¤¯à¤¯à¤¾à¤µà¤¤ करा किंवा --fix- "
+"बरोबर पà¥à¤°à¤¯à¤¤à¥à¤¨ कराहरवलेले/गहाळ?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr ""
+"--fix- सापडत नाही आणि माधà¥à¤¯à¤®/मिडिया अदलाबदल हे सधà¥à¤¯à¤¾ तांतà¥à¤°à¤¿à¤• मदत देऊ शकत नाही"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "न सापडणारी पॅकेजेस नीट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "संसà¥à¤¥à¤¾à¤ªà¤¨ खंडित करत आहे."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "आपण या गोषà¥à¤Ÿà¥€ काढून टाकता नये, ऑटोरिमूवà¥à¤¹à¤° सà¥à¤°à¥‚ करता येत नाही"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"हूं, AutoRemover ने काहीतरी नषà¥à¤Ÿ केलà¥à¤¯à¤¾à¤šà¥‡ दिसतेय, खरेतर असे वà¥à¤¹à¤¾à¤¯à¤²à¤¾ नको\n"
+"कृपया apt कडे बग रिपोरà¥à¤Ÿ दाखल करा. "
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "खालील माहिती परिसà¥à¤¥à¤¿à¤¤à¥€ निवळणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ मदत ठरू शकेल:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€, AutoRemoverने सà¥à¤Ÿà¤«à¤²à¤¾ तोडले"
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:"
+msgstr[1] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:"
+msgstr[1] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "ती काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ 'apt-get autoremove' वापरा."
+msgstr[1] "ती काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ 'apt-get autoremove' वापरा."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+"तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ कदाचित 'apt-get -f install'(à¤à¤ªà¥€à¤Ÿà¥€-गेट -à¤à¤« संसà¥à¤¥à¤¾à¤ªà¤¨') पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® चालू करावा "
+"लागेल'यात बदल करणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"अनमेट डिपेंडनà¥à¤¸à¥€à¤œ.à¤à¤ªà¥€à¤Ÿà¥€-गेट -à¤à¤« संसà¥à¤¥à¤¾à¤ªà¤¨ ('apt-get -f install') पॅकेजशिवाय पà¥à¤°à¤¯à¤¤à¥à¤¨ करा "
+"(किंवा परà¥à¤¯à¤¾à¤¯ सांगा)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"काही पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होत नाहीत. याचा अरà¥à¤¥ असा आहे की तà¥à¤®à¥à¤¹à¥€\n"
+"अशकà¥à¤¯ परिसà¥à¤¥à¤¿à¤¤à¥€à¤šà¥€ विनंती केली होती. किंवा जर तà¥à¤®à¥à¤¹à¥€ असà¥à¤¥à¤¿à¤°\n"
+"विभागणी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n"
+"किंवा ती येणाऱà¥à¤¯à¤¾à¤‚पैकी बाहेर हलविली असतील."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "तà¥à¤Ÿà¤²à¥‡à¤²à¥€ पॅकेजेस"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "खालील अतिरिकà¥à¤¤ पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होतील:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "सà¥à¤šà¤µà¤²à¥‡à¤²à¥€ पॅकेजेस:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "शिफारस केलेली पॅकेजेस:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "धोकà¥à¤¯à¤¾à¤šà¥€ सूचना:खालील पॅकेजेसॠपà¥à¤°à¤®à¤¾à¤£à¤¿à¤¤ करॠशकत नाही! "
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "पà¥à¤°à¤®à¤¾à¤£à¥€à¤•à¤°à¤£à¤¾à¤šà¥€ धोकà¥à¤¯à¤¾à¤šà¥€ सूचना दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ करा.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "काही पॅकेजेसचे पà¥à¤°à¤®à¤¾à¤£à¤¿à¤•à¤°à¤£ होऊ शकत नाही"
+
+#: apt-private/private-download.cc:46
+#, fuzzy
+msgid "Install these packages without verification?"
+msgstr "पडताळून पाहिलà¥à¤¯à¤¾à¤¶à¤¿à¤µà¤¾à¤¯ ही पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायची का [हो/नाही]?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "%s %s आणणे असफल\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr "[संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr "[संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr "[संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "खालील पॅकेजेस मधà¥à¤¯à¥‡ नमिळणाऱà¥à¤¯à¤¾ निरà¥à¤­à¤°à¤¤à¤¾/ डिपेनà¥à¤¡à¤¨à¥à¤¸à¥€à¤œ आहेत:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "पण %s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥‡"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "पण %s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करणà¥à¤¯à¤¾à¤œà¥‹à¤—े नाही"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "पण ते आभासी पॅकेज आहे"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले नाही"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होणार नाही"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr "किंवा"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "खालील नविन पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होतील:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "खालील नविन पॅकेजेस कायमची काढून टाकली जातील:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "खालील पॅकेजेस परत ठेवली गेली:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "खालील पॅकेजेस पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ होतील:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "खालील पॅकेजेस पà¥à¤¢à¤šà¥à¤¯à¤¾ आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ होणार नाहीत:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "पà¥à¤¢à¤¿à¤² ठेवलेली पॅकेजेस बदलतील:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (चà¥à¤¯à¤¾ मà¥à¤³à¥‡ %s)"
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"धोकà¥à¤¯à¤¾à¤šà¥€ सूचना:खालील जरूरीची पॅकेजेस कायमची काढून टाकली जातील।\n"
+"तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तà¥à¤®à¥à¤¹à¥€ काय करत आहात हे कळेपरà¥à¤¯à¤‚त असं करता येणार नाही!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu पà¥à¤¢à¥‡ आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ केले, %lu नवà¥à¤¯à¤¾à¤¨à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले,"
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu पà¥à¤¨à¤°à¥à¤¸à¤‚सà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले,"
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu मागील आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ केले,"
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu कायमचे काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ आणि %lu पà¥à¤¢à¤šà¥à¤¯à¤¾ आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ à¤à¤¾à¤²à¥‡à¤²à¥€ नाही.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu संपूरà¥à¤£ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ किंवा कायमची काढून टाकलेली नाही.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "होय"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "रिजेकà¥à¤¸ कंपायलेशन तà¥à¤°à¥à¤Ÿà¥€ -%s "
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "डिपेनà¥à¤¡à¤¨à¥à¤¸à¥€à¤œ बरोबर/दà¥à¤°à¥‚सà¥à¤¤ करत आहे..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr "अयशसà¥à¤µà¥€/चूकीचे à¤à¤¾à¤²à¥‡."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "डिपेनà¥à¤¡à¤¨à¥à¤¸à¥€à¤œ बरोबर करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ आहे "
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ संच कमीतकमी करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr "à¤à¤¾à¤²à¥‡"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "हे बरोबर करणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ `apt-get -f संसà¥à¤¥à¤¾à¤ªà¤¨à¤¾' पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® चालू करावा लागेल."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "अनमेट डिपेंडनà¥à¤¸à¥€à¤œ.-f.वापरून पà¥à¤°à¤¯à¤¤à¥à¤¨ करा "
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "सà¥à¤§à¤¾à¤°à¤¿à¤¤ आवृतà¥à¤¤à¥€à¤šà¤¾ विधान आरà¥à¤—à¥à¤¯à¥à¤®à¥‡à¤‚टस घेऊ शकत नाही."
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€à¤šà¥€ गणती करीत आहे..."
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€,ऑलअपगà¥à¤°à¥‡à¤¡à¤¨à¥‡ सà¥à¤Ÿà¤«à¤²à¤¾ तोडले"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "à¤à¤¾à¤²à¥‡"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "%s ला पà¥à¤¨à¤°à¥à¤¨à¤¾à¤®à¤¾à¤‚कन %s करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ "
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "दाबा"
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "मिळवा:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "आय.जी.à¤à¤¨."
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "दोष इ.आर.आर."
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%s (%sB/s) मधà¥à¤¯à¥‡ %sB मिळविला\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr "[काम करत आहे]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"माधà¥à¤¯à¤® बदल: कृपया नाव घातलेली सीडी घाला\n"
+"%s'\n"
+"'%s' डà¥à¤°à¤¾à¤ˆà¤µà¥à¤¹ मधà¥à¤¯à¥‡ व à¤à¤‚टर कळ दाबा\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "%s वाचणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
@@ -1661,34 +1623,34 @@ msgstr "उपकà¥à¤°à¤¿à¤¯à¥‡à¤šà¤¾ आयपीसी वाहिनी त
msgid "Connection closed prematurely"
msgstr "जोडणी अकाली बंद à¤à¤¾à¤²à¥€"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "चूकीचे मूलभूत निशà¥à¤šà¤¿à¤¤à¥€à¤•à¤°à¤£!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "पà¥à¤¢à¥‡ जाणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ à¤à¤‚टर दाबा."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "पà¥à¤°à¥à¤µà¥€ डाऊनलोड केलेलà¥à¤¯à¤¾ .deb संचयिका आपलà¥à¤¯à¤¾à¤²à¤¾ खोडून टाकायचà¥à¤¯à¤¾ आहेत का?"
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "काही तà¥à¤°à¥à¤Ÿà¥€ हà¥à¤¯à¤¾ उघडत असताना घडलà¥à¤¯à¤¾.मी संरचित करणार आहे"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "पॅकेजेस जी संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ आहे.याचा निकाल दà¥à¤ªà¥à¤ªà¤Ÿ तà¥à¤°à¥à¤Ÿà¥€ मà¥à¤¹à¤£à¥‚न होऊ शकतो"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "किंवा डिपेंडनà¥à¤¸à¥€à¤œ नसलà¥à¤¯à¤¾à¤®à¥à¤³à¥‡ तà¥à¤°à¥à¤Ÿà¥€ à¤à¤¾à¤²à¥à¤¯à¤¾. हे ठीक आहे, फकà¥à¤¤ तà¥à¤°à¥à¤Ÿà¥€"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1939,36 +1901,36 @@ msgstr "%s वाचणारा दà¥à¤µà¤¾ असमरà¥à¤¥"
msgid "Failed to unlink %s"
msgstr "%s दà¥à¤µà¤¾ काढणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "%s चा %s दà¥à¤µà¤¾ साधणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr "%sB हीट ची डिलींक मरà¥à¤¯à¤¾à¤¦à¤¾\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹ ला पॅकेज जागा नाही"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr "%s ला ओवà¥à¤¹à¤°à¤°à¤¾à¤ˆà¤¡/दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ जागा नाही\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr "%s देखभालकरà¥à¤¤à¤¾ हा %s आणि %s नाही \n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr "%s ला उगम ओवà¥à¤¹à¤°à¤°à¤¾à¤ˆà¤¡/दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ जागा नाही\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr "%s ला दà¥à¤µà¤¯à¤‚क ओवà¥à¤¹à¤°à¤°à¤¾à¤ˆà¤¡ जागा नाही\n"
@@ -2047,7 +2009,7 @@ msgstr "%s दà¥à¤µà¤¾ मोकळा/सà¥à¤Ÿà¤¾ करणà¥à¤¯à¤¾à¤¸ अà¤
msgid "Failed to rename %s to %s"
msgstr "%s ला पà¥à¤¨à¤°à¥à¤¨à¤¾à¤®à¤¾à¤‚कन %s करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ "
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2117,7 +2079,7 @@ msgstr "बिघडलेली अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œ"
msgid "Tar checksum failed, archive corrupted"
msgstr "टार(टेपअरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹) चेकसम चà¥à¤•à¤²à¤¾, बिघडलेली अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "अपरिचित TAR शीरà¥à¤·à¤• पà¥à¤°à¤•à¤¾à¤° %u, मेंबर %s"
@@ -2241,22 +2203,17 @@ msgid "Unable to stat %s"
msgstr "%s सà¥à¤Ÿà¥…ट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "हा वैध DEB अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹ नाही,'%s' मेंबर उपलबà¥à¤§ नाही"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "हा वैध DEB अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹ नाही, हà¥à¤¯à¤¾à¤²à¤¾ '%s', '%s' किंवा '%s' मेंबर नाही"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€,%s मेंबर शोधू शकत नाही"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "अनपारà¥à¤¸à¥‡à¤¬à¤² नियंतà¥à¤°à¤£ फाईल"
@@ -2313,85 +2270,85 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "%s निवडक भाग सापडत नाही"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "संकà¥à¤·à¤¿à¤ªà¥à¤¤à¤°à¥à¤ªà¤¾à¤šà¤¾ माहित नसलेला पà¥à¤°à¤•à¤¾à¤°: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "%s संरचना फाईल उघडत आहे"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष %s:%u: बà¥à¤²à¥‰à¤• नावाशिवाय सà¥à¤°à¥‚ होतो."
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष : %s:%u: मालफॉरà¥à¤®à¤¡à¥ टॅग"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष %s:%u: मà¥à¤²à¥à¤¯à¤¾à¤‚चà¥à¤¯à¤¾ नंतर अधिक जंक"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष %s:%u: दिशादरà¥à¤¶à¤• फकà¥à¤¤ उचà¥à¤š पातळीवर केले जाऊ शकतात"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष %s:%u: खूपच à¤à¤•à¤¾à¤¤ à¤à¤• इनकà¥à¤²à¥‚डसà¥"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष %s:%u: हà¥à¤¯à¤¾ पासून समाविषà¥à¤Ÿ "
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "नियम रचनेचा दोष %s:%u: '%s' दिशादरà¥à¤¶à¤• असहायà¥à¤¯à¤•à¤¾à¤°à¥€"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष %s:%u: दिशादरà¥à¤¶à¤• फकà¥à¤¤ उचà¥à¤š पातळीवर केले जाऊ शकतात"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "नियम रचनेचा दोष %s:%u: फाईलचà¥à¤¯à¤¾ अंती अधिक जंक"
@@ -2416,48 +2373,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... à¤à¤¾à¤²à¥‡"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "आदेश रेखा परà¥à¤¯à¤¾à¤¯ '%c' [पासून %s] हे माहित नाही."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "आदेश रेखा परà¥à¤¯à¤¾à¤¯ %s नीट समजला नाही"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "आदेश रेखा परà¥à¤¯à¤¾à¤¯ %s हे बूलियन नाही"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "परà¥à¤¯à¤¾à¤¯ %s साठी ऑरà¥à¤—à¥à¤®à¥‡à¤‚ट पाहिजे"
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "परà¥à¤¯à¤¾à¤¯ %s: संरचितेचà¥à¤¯à¤¾ यादीतील कलमांचा तपशीलाला असलेच पाहिजे ते =<मूलà¥à¤¯>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "%s परà¥à¤¯à¤¾à¤¯ ला पूरà¥à¤£à¤¾à¤‚क ऑरà¥à¤—à¥à¤®à¥‡à¤‚ट पाहिजे,'%s' नको"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "'%s' परà¥à¤¯à¤¾à¤¯ खूप लांब आहे"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "%s संवेदना हे समजत नाही, चूक की बरोबर चा पà¥à¤°à¤¯à¤¤à¥à¤¨ करा."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "%s अवैध कà¥à¤°à¤¿à¤¯à¤¾"
@@ -2471,116 +2428,116 @@ msgstr "%s माऊंट पॉईंट सà¥à¤Ÿà¥…ट करणà¥à¤¯à¤¾à¤¸
msgid "Failed to stat the cdrom"
msgstr "सीडी-रॉम सà¥à¤Ÿà¥…ट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "फाईल बंद करणà¥à¤¯à¤¾à¤¤ अडचण"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "फकà¥à¤¤ वाचणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ कà¥à¤²à¥‚प संचिका %s साठी कà¥à¤²à¥‚पबंदचा वापर करीत नाही"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "%s कà¥à¤²à¥‚प फाईल उघडता येत नाही"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "%s nfs(नेटवरà¥à¤• फाईल सिसà¥à¤Ÿà¥€à¤®) माऊंटेड कà¥à¤²à¥à¤ª फाईल ला कà¥à¤²à¥à¤ª /बंद करता येत नाही"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "%s कà¥à¤²à¥à¤ª मिळवता येत नाही"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "%s उपकà¥à¤°à¤¿à¤¯à¥‡à¤²à¤¾ सेगमेंटेशन दोष पà¥à¤°à¤¾à¤ªà¥à¤¤ à¤à¤¾à¤²à¤¾."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "%s उपकà¥à¤°à¤¿à¤¯à¥‡à¤²à¤¾ सेगमेंटेशन दोष पà¥à¤°à¤¾à¤ªà¥à¤¤ à¤à¤¾à¤²à¤¾."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "%s उपकà¥à¤°à¤¿à¤¯à¥‡à¤¨à¥‡ (%u) तà¥à¤°à¥à¤Ÿà¥€ कोड दिलेला आहे"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "%s उपकà¥à¤°à¤¿à¤¯à¤¾ अचानकपणे बाहेर पडली"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "%s फाईल उघडता येत नाही"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "%s साठी पाईप उघडता येत नाही"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "आयपीसी उपकà¥à¤°à¤¿à¤¯à¤¾ तयार करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "दाबक(संकलितकरà¥à¤¤à¤¾) करà¥à¤¯à¤¾à¤¨à¥à¤µà¤¿à¤¤ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥"
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "वाचा, %lu अजूनही वाचणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ आहे पण आता काही उरली नाही"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "लिहा, %lu अजूनही लिहिणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ आहे पण लिहिता येत नाही"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "फाईल बंद करणà¥à¤¯à¤¾à¤¤ अडचण"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "संचिकेची syncing समसà¥à¤¯à¤¾"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "फाईल अनलिंकिंग करणà¥à¤¯à¤¾à¤¤ अडचण"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "संचिकेची syncing समसà¥à¤¯à¤¾"
@@ -2698,12 +2655,12 @@ msgstr "%s StateFile उघडणे असफल"
msgid "Failed to write temporary StateFile %s"
msgstr "%s तातà¥à¤ªà¥à¤°à¤¤à¥à¤¯à¤¾ StateFile मधà¥à¤¯à¥‡ लिहिणे असफल"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "%s (1) पॅकेज फाईल पारà¥à¤¸ करणà¥à¤¯à¤¾à¤¤ असमरà¥à¤¥"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "%s (२) पॅकेज फाईल पारà¥à¤¸ करणà¥à¤¯à¤¾à¤¤ असमरà¥à¤¥"
@@ -2778,19 +2735,19 @@ msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (पà¥à¤°à¤•à¤¾à¤°) मधà¥à¤¯à
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "%s सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€à¤®à¤§à¥à¤¯à¥‡ %u रेषेवर '%s' पà¥à¤°à¤•à¤¾à¤° माहित नाही "
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "%s फाईल उघडता येत नाही"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2813,7 +2770,7 @@ msgid ""
msgstr ""
"%s पॅकेज पà¥à¤¨à¤ƒ:अधिषà¥à¤ à¤¾à¤ªà¤¿à¤¤ करणà¥à¤¯à¤¾à¤šà¥€ गरज आहे, परंतॠमला तà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ ऑरà¥à¤•à¤¾à¤‡à¤µà¥à¤¹ सापडू शकले नाही."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2821,19 +2778,10 @@ msgstr ""
"दोष,पॅकेज समसà¥à¤¯à¤¾ निवारक::निवारण करतांना अडथळा निरà¥à¤®à¤¾à¤£ à¤à¤¾à¤²à¤¾, हà¥à¤¯à¤¾à¤šà¥‡ कारण सà¥à¤¥à¤—ित "
"पॅकेजेस असू शकते."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "अडचणी दूर करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥, तà¥à¤®à¥à¤¹à¥€ तà¥à¤Ÿà¤²à¥‡à¤²à¥‡ पॅकेज घेतलेले आहे."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"काही अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•à¤¾ संचयिका डाऊनलोड करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥,तà¥à¤¯à¤¾ दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ à¤à¤¾à¤²à¥à¤¯à¤¾, किंवा "
-"तà¥à¤¯à¤¾à¤à¤µà¤œà¥€ जà¥à¤¨à¥à¤¯à¤¾ वापरलà¥à¤¯à¤¾ गेलà¥à¤¯à¤¾."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2876,12 +2824,12 @@ msgstr "%s कारà¥à¤¯à¤ªà¤§à¥à¤¦à¤¤à¥€ योगà¥à¤¯ रीतीने
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "कृपया '%s' लेबल असलेली डिसà¥à¤• '%s' या डà¥à¤°à¤¾à¤‡à¤µà¥à¤¹à¤®à¤§à¥à¤¯à¥‡ ठेवा आणि à¤à¤¨à¥à¤Ÿà¤° कळ दाबा."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "'%s' पॅकेजींग पà¥à¤°à¤£à¤¾à¤²à¥€ सहायà¥à¤¯à¤•à¤¾à¤°à¥€ नाही"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "योगà¥à¤¯ असा पॅकेजिंग पà¥à¤°à¤£à¤¾à¤²à¥€ पà¥à¤°à¤•à¤¾à¤° निशà¥à¤šà¤¿à¤¤ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ "
@@ -2913,17 +2861,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "पसंतीचà¥à¤¯à¤¾ संचिकेत अवैध माहितीसंच, पॅकेजला शीरà¥à¤·à¤• नाही "
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "%s पिनचा पà¥à¤°à¤•à¤¾à¤° समजलेला नाही"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "पिन करिता पà¥à¤°à¤¾à¤§à¤¾à¤¨à¥à¤¯/अगà¥à¤°à¤•à¥à¤°à¤® (किंवा शूनà¥à¤¯)निरà¥à¤¦à¥‡à¤¶à¥€à¤¤ केलेला नाही"
@@ -2995,44 +2943,48 @@ msgstr "IO तà¥à¤°à¥à¤Ÿà¥€ उगम निवडक संचयसà¥à¤¥à¤¾
msgid "rename failed, %s (%s -> %s)."
msgstr "पà¥à¤¨à¤°à¥à¤¨à¤¾à¤®à¤¾à¤‚कन अयशसà¥à¤µà¥€, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "à¤à¤®à¤¡à¥€à¥« बेरीज/MD5Sum जà¥à¤³à¤¤ नाही"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "हॅश बेरीज जà¥à¤³à¤¤ नाही"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "आकार जà¥à¤³à¤¤à¤¨à¤¾à¤¹à¥€"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "%s अवैध कà¥à¤°à¤¿à¤¯à¤¾"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "%s (1) पॅकेज फाईल पारà¥à¤¸ करणà¥à¤¯à¤¾à¤¤ असमरà¥à¤¥"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "पà¥à¤¢à¥€à¤² कळ ओळखचिनà¥à¤¹à¤¾à¤‚साठी सारà¥à¤µà¤œà¤¨à¤¿à¤• कळ उपलबà¥à¤§ नाही:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3040,12 +2992,12 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3054,16 +3006,12 @@ msgstr ""
"मी %s पॅकेजकरीता संचिका शोधणà¥à¤¯à¤¾à¤¸ समरà¥à¤¥ नवà¥à¤¹à¤¤à¥‹. याचा अरà¥à¤¥ असाकी तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ हे पॅकेज सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ "
"सà¥à¤¥à¤¿à¤°/निशà¥à¤šà¤¿à¤¤ करणà¥à¤¯à¤¾à¤šà¥€ गरज आहे(हरवलेलà¥à¤¯à¤¾ आरà¥à¤šà¤®à¥à¤³à¥‡) "
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"मी %s पॅकेजकरीता संचिका शोधणà¥à¤¯à¤¾à¤¸ समरà¥à¤¥ नवà¥à¤¹à¤¤à¥‹. याचा अरà¥à¤¥ असाकी तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾à¤¹à¥‡ पॅकेज सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ "
-"सà¥à¤¥à¤¿à¤°/निशà¥à¤šà¤¿à¤¤ करणà¥à¤¯à¤¾à¤šà¥€ गरज आहे."
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3071,16 +3019,12 @@ msgstr ""
"पॅकेज यादीची/सà¥à¤šà¥€à¤šà¥€ संचिका दूषित/खराब à¤à¤¾à¤²à¥‡à¤²à¥€ आहे. संचिका नाव नाही: पॅकेजकरीता कà¥à¤·à¥‡à¤¤à¥à¤°/"
"ठिकाण %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "आकार जà¥à¤³à¤¤à¤¨à¤¾à¤¹à¥€"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "%s (1) पॅकेज फाईल पारà¥à¤¸ करणà¥à¤¯à¤¾à¤¤ असमरà¥à¤¥"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "लकà¥à¤·à¤¾à¤¤ घà¥à¤¯à¤¾,%s à¤à¤µà¤œà¥€ %s ची निवड करत आहे \n"
@@ -3223,49 +3167,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "हॅश बेरीज जà¥à¤³à¤¤ नाही"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "'%s' साठी '%s' आवृतà¥à¤¤à¥€ सापडली नाही"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "'%s' साठी '%s' आवृतà¥à¤¤à¥€ सापडली नाही"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "%s कारà¥à¤¯ सापडू शकले नाही"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "%s पॅकेज सापडू शकले नाही"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3290,127 +3234,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"काही अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•à¤¾ संचयिका डाऊनलोड करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥,तà¥à¤¯à¤¾ दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ à¤à¤¾à¤²à¥à¤¯à¤¾, किंवा "
+"तà¥à¤¯à¤¾à¤à¤µà¤œà¥€ जà¥à¤¨à¥à¤¯à¤¾ वापरलà¥à¤¯à¤¾ गेलà¥à¤¯à¤¾."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "%s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होत आहे"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "%s संरचित होत आहे"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "%s काढून टाकत आहे"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "%s संपूरà¥à¤£ काढून टाकले"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "संसà¥à¤¥à¤¾à¤ªà¤¨à¤¾-पशà¥à¤šà¤¾à¤¤ टà¥à¤°à¤¿à¤—र %s चालवत आहे"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "'%s' संचयिका गहाळ आहे"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "%s फाईल उघडता येत नाही"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "%s तयार करित आहे"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "%s सà¥à¤Ÿà¥‡/मोकळे करीत आहे "
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "%s संरचने साठी तयार करत आहे"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥‡"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "%s ला काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ तयारी करत आहे"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s काढून टाकले"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "%s संपूरà¥à¤£ काढून टाकणà¥à¤¯à¤¾à¤šà¥€ तयारी करत आहे"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s संपूरà¥à¤£ काढून टाकले"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr "सतà¥à¤°à¤¨à¥‹à¤‚द लिहिता येत नाही, openpty() असफल (/dev/pts आरोहित नाही?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "%s मधà¥à¤¯à¥‡ लिहिणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ "
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3440,6 +3413,91 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "सूचना, '%s' रिजेकà¥à¤¸ साठी %s ची निवड करत आहे\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "सूचना, '%s' रिजेकà¥à¤¸ साठी %s ची निवड करत आहे\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "%s हे आभासी पॅकेज हà¥à¤¯à¤¾à¤‚चà¥à¤¯à¤¾à¤•à¤¡à¥‚न तरतूद केले आहे,:\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "कंॅडिडेट आवृतà¥à¤¤à¥à¤¯à¤¾"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "तà¥à¤®à¥à¤¹à¥€ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ à¤à¤• निशà¥à¤šà¤¿à¤¤ सà¥à¤ªà¤·à¥à¤Ÿà¤ªà¤£à¥‡ निवडले पाहिजे."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "%s पॅकेज उपलबà¥à¤§ नाही, पण दà¥à¤¸à¤±à¥à¤¯à¤¾ पॅकेजचà¥à¤¯à¤¾ संदरà¥à¤­à¤¾à¤¨à¥‡.\n"
+#~ "याचा अरà¥à¤¥ असाही आहे की पॅकेज सापडत नाही,ते कालबाहà¥à¤¯ किंवा \n"
+#~ " मà¥à¤¹à¤£à¤œà¥‡ ते दà¥à¤¸à¤±à¥à¤¯à¤¾ उगमातून उपलबà¥à¤§\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "तथापि खालील पॅकेजेस मधà¥à¤¯à¥‡ बदल à¤à¤¾à¤²à¤¾:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "%s पॅकेजला संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ कॅनà¥à¤¡à¤¿à¤¡à¥‡à¤Ÿ नाही"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "%s पॅकेज संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केलेले नाही,मà¥à¤¹à¤£à¥‚न काढले नाही\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "%s पॅकेज संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केलेले नाही,मà¥à¤¹à¤£à¥‚न काढले नाही\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "लकà¥à¤·à¤¾à¤¤ घà¥à¤¯à¤¾,%s à¤à¤µà¤œà¥€ %s ची निवड करत आहे \n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "%s सोडून देत आहे, ते आधिच संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले आहे आणि पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€ निशà¥à¤šà¤¿à¤¤ केलेली नाही.\n"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "%s सोडून देत आहे, ते आधिच संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले आहे आणि पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€ निशà¥à¤šà¤¿à¤¤ केलेली नाही.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "%s चे पà¥à¤¨à¤°à¥à¤¸à¤‚सà¥à¤¥à¤¾à¤ªà¤¨ शकà¥à¤¯ नाही, हे डाऊनलोड करता येत नाही.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s ही आधीच नविन आवृतà¥à¤¤à¥€ आहे.\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "%s साठी %s (%s) निवडलेली आवृतà¥à¤¤à¥€.\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "%s साठी %s (%s) निवडलेली आवृतà¥à¤¤à¥€.\n"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "हा वैध DEB अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹ नाही, हà¥à¤¯à¤¾à¤²à¤¾ '%s', '%s' किंवा '%s' मेंबर नाही"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "à¤à¤®à¤¡à¥€à¥« बेरीज/MD5Sum जà¥à¤³à¤¤ नाही"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "मी %s पॅकेजकरीता संचिका शोधणà¥à¤¯à¤¾à¤¸ समरà¥à¤¥ नवà¥à¤¹à¤¤à¥‹. याचा अरà¥à¤¥ असाकी तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾à¤¹à¥‡ पॅकेज "
+#~ "सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ सà¥à¤¥à¤¿à¤°/निशà¥à¤šà¤¿à¤¤ करणà¥à¤¯à¤¾à¤šà¥€ गरज आहे."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr "सतà¥à¤°à¤¨à¥‹à¤‚द लिहिता येत नाही, openpty() असफल (/dev/pts आरोहित नाही?)\n"
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "%s संरचना फाईल उघडत आहे"
diff --git a/po/nb.po b/po/nb.po
index 0a6cd5dff..cc15361fe 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2010-09-01 21:10+0200\n"
"Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n"
"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n"
@@ -22,151 +22,153 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Virtaal 0.6.1\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Pakken %s versjon %s har et uinnfridd avhengighetsforhold:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Antall pakkenavn: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Antall pakkestrukturer: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Vanlige pakker: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Rent virtuelle pakker: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Enkle virtuelle pakker: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Sammensatte virtuelle pakker: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Mangler: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Antall unike versjoner: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Antall unike beskrivelser: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Antall avhengighetsforhold: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Antall forhold versjon/fil: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Antall forhold beskrivelse/fil: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Antall tilbudte tilknyttinger: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Antall utvidede strenger: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Total plass for avhengighetsforhold/versjoner: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Plass brukt av slark: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Samlet mengde redegjort plass: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Pakkefila %s er ikke oppdatert."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Fant ingen pakker"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Du må oppgi minst ett søkemønster"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Klarer ikke å finne pakken %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Pakkefiler:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"Mellomlageret er ikke oppdatert, kan ikke kryssreferere til en pakkefil"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "LÃ¥ste pakker:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(ikke funnet)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Installert: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Kandidat: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ingen)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Pakke låst til: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Versjonstabell:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s for %s kompilert på %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -242,35 +244,35 @@ msgstr ""
"Les manualsidene apt-cache(8) og apt.conf(5) for mer informasjon.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Oppgi et navn for disken, for eksempel «Debian 5.0.3 Disk 1»"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Klarte ikke montere «%s» på «%s»"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
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."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Ikke parvise argumenter"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -298,601 +300,55 @@ msgstr ""
" -c=? Les denne innstillingsfila.\n"
" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[J/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[j/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "J"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Kompileringsfeil i regulært uttrykk - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Følgende pakker har uinnfridde avhengighetsforhold:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "men %s er installert"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "men %s skal installeres"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "men lar seg ikke installere"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "men er en virtuell pakke"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "men er ikke installert"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "men skal ikke installeres"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " eller"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Følgende NYE pakker vil bli installert:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Følgende pakker vil bli FJERNET:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Følgende pakker er holdt tilbake:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Følgende pakker vil bli oppgradert:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Følgende pakker vil bli NEDGRADERT:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Følgende pakker vil bli endret:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (pga. %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"ADVARSEL: Følgende essensielle pakker vil bli fjernet.\n"
-"Dette bør IKKE gjøres, med mindre du vet nøyaktig hva du gjør!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu oppgraderte, %lu nylig installerte, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu installert på nytt, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu nedgraderte, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu å fjerne og %lu ikke oppgradert.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu pakker ikke fullt installert eller fjernet.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Merk, velger «%s» for oppgaven «%s»\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Merk, velger «%s» for det regulære uttrykket «%s»\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Installert]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Ikke versjonskandidat]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Du må velge en pakke som skal installeres."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Pakken %s er ikke tilgjengelig, men en annen pakke henviser til den.\n"
-"Dette kan bety at pakken mangler, er utgått, eller bare finnes \n"
-"tilgjengelig fra en annen kilde.\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Følgende pakker erstatter den imidlertid:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Pakken «%s» har ingen installasjonskandidat"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Virtuelle pakker som «%s» kan ikke fjernes\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Merk, velger «%s» istedenfor «%s»\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"Omgår %s - den er allerede installert eller ikke satt til oppgradering.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"Hopper over %s siden den ikke er installert eller kun oppgraderinger er "
-"ønsket.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s er allerede nyeste versjon.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s satt til manuell installasjon.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Utvalgt versjon «%s» (%s) for «%s»\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Utvalgt versjon «%s» (%s) for «%s»\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Retter på avhengighetsforhold ..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " mislyktes."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Klarer ikke å rette på avhengighetsforholdene"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Klarer ikke å minimere oppgraderingsettet"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Utført"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "Du vil kanskje kjøre «apt-get -f install» for å rette på dette."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Autentiseringsadvarsel overstyrt.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Installer disse pakkene uten verifikasjon?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Noen pakker ble ikke autentisert"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pakker trenges å fjernes, men funksjonen er slått av."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Intern feil, sortering fullførte ikke"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Så rart ... Størrelsene stemmer ikke overens, send en e-post til "
-"apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "MÃ¥ hente %sB/%sB med arkiver.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "MÃ¥ hente %sB med arkiver.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Etter denne operasjonen vil %sB ekstra diskplass bli brukt.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Klarte ikke bestemme ledig plass i %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Dessverre, ikke nok ledig plass i %s"
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Ja, gjør som jeg sier!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Du er iferd med å utføre en mulig skadelig handling.\n"
-"For å fortsette skriv inn teksten «%s»\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Avbryter."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Vil du fortsette?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Klarte ikke å skaffe %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Klarte ikke laste ned alle filene"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Nedlasting fullført med innstillinga «bare nedlasting»"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Klarte ikke å hente alle arkivene. Du kan prøve med «apt-get update» eller "
-"«--fix-missing»."
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "«--fix-missing» og bytte av media støttes nå ikke"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Klarer ikke å rette på manglende pakker."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Avbryter installasjonen."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Den følgende pakken forsvant fra systemet ditt siden\n"
-"alle filene er overskrevet av andre pakker:"
-msgstr[1] ""
-"De følgende pakkene forsvant fra systemet ditt siden\n"
-"alle filene er overskrevet av andre pakker:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Merk: Dette er gjort automatisk og med hensikt av dpkg."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Ignorer utilgjengelig målutgave «%s» av pakke «%s»"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Velger «%s» som kildepakke istedenfor «%s»\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Ignorer utilgjengelig versjon «%s» av pakke «%s»"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Oppdaterings-kommandoen tar ingen argumenter"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, det ser ut som auto-fjerneren (AutoRemover) ødela noe, og det skal\n"
-"virkelig ikke skje. Send inn en feilmelding til apt-utviklerne."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Følgende informasjon kan være til hjelp med å løse problemet:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Følgende pakke ble automatisk installert og er ikke lenger påkrevet:"
-msgstr[1] ""
-"Følgende pakker ble automatisk installert og er ikke lenger påkrevet:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "%lu pakke ble automatisk installert og er ikke lenger påkrevet.\n"
-msgstr[1] "%lu pakker ble automatisk installert og er ikke lenger påkrevet.\n"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Bruk «apt-get autoremove» for å fjerne dem."
-msgstr[1] "Bruk «apt-get autoremove» for å fjerne dem."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Intern feil - «AllUpgrade» ødela noe"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "Du vil kanskje utføre «apt-get -f install» for å rette på disse:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller "
-"angi en løsning)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Noen pakker ble ikke installeres. Dette kan bety at du har bedt om\n"
-"en umulig tilstand eller, hvis du bruker den ustabile utgaven av Debian,\n"
-"at visse kjernepakker ennå ikke er laget eller flyttet ut av «Incoming» for\n"
-"distribusjonen."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Ødelagte pakker"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Følgende ekstra pakker vil bli installert."
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Foreslåtte pakker:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Anbefalte pakker"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Klarte ikke å finne pakken %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s satt til manuell installasjon.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s satt til automatisk installasjon.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Beregner oppgradering... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Mislyktes"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Utført"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Intern feil, problemløser ødela noe"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Klarer ikke å låse nedlastingsmappa"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Klarer ikke å finne en kildekodepakke for %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -901,7 +357,7 @@ msgstr ""
"MERK: «%s»-pakker blir vedlikeholdt i versjonskontrollsystemet «%s» på:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, fuzzy, c-format
msgid ""
"Please use:\n"
@@ -912,106 +368,116 @@ msgstr ""
"bzr get %s\n"
"for å hente siste (muligens ikke utgitte) oppdateringer for pakken.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Hopper over allerede nedlastet fil «%s»\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Klarte ikke bestemme ledig plass i %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Du har ikke nok ledig plass i %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Trenger å skaffe %sB av %sB fra kildekodearkivet.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Trenger å skaffe %sB fra kildekodearkivet.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Skaffer kildekode %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Klarte ikke å skaffe alle arkivene."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Nedlasting fullført med innstillinga «bare nedlasting»"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "Omgår utpakking av allerede utpakket kilde i %s\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Utpakkingskommandoen «%s» mislyktes.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Byggekommandoen «%s» mislyktes.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Barneprosessen mislyktes"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s har ingen avhengigheter.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
"packages"
msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, 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:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1020,37 +486,37 @@ msgstr ""
"Kravet %s for %s kan ikke oppfylles fordi det ikke finnes noen tilgjengelige "
"versjoner av pakken %s som oppfyller versjonskravene"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
"version"
msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Klarte ikke å tilfredsstille %s avhengighet for %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Klarte ikke å tilfredstille bygg-avhengighetene for %s."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Klarte ikke å behandle forutsetningene for bygging"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Kobler til %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Støttede moduler:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1139,102 +605,53 @@ msgstr ""
"for mer informasjon og flere valg.\n"
" Denne APT har kraften til en Superku.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"MERK: Dette er kun en simulering.\n"
-" apt-get må ha root-rettigheter for reell utførelse.\n"
-" Husk også at låsing er deaktivert, så ikke regn med \n"
-" relevans i forhold til den reelle gjeldende situasjonen."
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Funnet "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Hent:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Feil "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Hentet %sB på %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Arbeider]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Bytte av media: sett inn CD-en som er merket\n"
-" «%s»\n"
-"i «%s» og trykk «Enter»\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "men er ikke installert"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s satt til manuell installasjon.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s satt til automatisk installasjon.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s er allerede nyeste versjon.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s er allerede nyeste versjon.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Ventet på %s, men den ble ikke funnet"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s satt til manuell installasjon.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Klarte ikke å åpne %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1256,6 +673,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1355,8 +789,8 @@ msgstr "Tidsavbrudd på forbindelsen"
msgid "Server closed the connection"
msgstr "Tjeneren lukket forbindelsen"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Lesefeil"
@@ -1369,8 +803,8 @@ msgid "Protocol corruption"
msgstr "Protokollødeleggelse"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Skrivefeil"
@@ -1382,6 +816,10 @@ msgstr "Klarte ikke å opprette en sokkel"
msgid "Could not connect data socket, connection timed out"
msgstr "Klarte ikke å kople til datasokkelen, tidsavbrudd på forbindelsen"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Mislyktes"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Klarte ikke å koble til en passiv sokkel."
@@ -1424,7 +862,7 @@ msgstr "Tidsavbrudd på tilkoblingen til datasokkelen"
msgid "Unable to accept connection"
msgstr "Klarte ikke å godta tilkoblingen"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problem ved oppretting av nøkkel for fil"
@@ -1555,81 +993,603 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Feil ved skriving til fila"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Feil ved lesing fra tjeneren"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Feil ved skriving til fil"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Utvalget mislykkes"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Tidsavbrudd på forbindelsen"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Feil ved skriving til utfil"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Venter på hoder"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Ødelagt hodelinje"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "HTTP-tjeneren sendte et ugyldig svarhode"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "HTTP-tjeneren sendte et ugyldig «Content-Length»-hode"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Denne HTTP-tjeneren har ødelagt støtte for område"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Ukjent datoformat"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Utvalget mislykkes"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Ødelagte hodedata"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Tidsavbrudd på forbindelsen"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Forbindelsen mislykkes"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Feil ved skriving til utfil"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Intern feil"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Feil ved skriving til fil"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Feil ved skriving til fila"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pakker trenges å fjernes, men funksjonen er slått av."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Feil ved lesing fra tjeneren"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Intern feil, sortering fullførte ikke"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Ødelagte hodedata"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Så rart ... Størrelsene stemmer ikke overens, send en e-post til "
+"apt@packages.debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Forbindelsen mislykkes"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "MÃ¥ hente %sB/%sB med arkiver.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Intern feil"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "MÃ¥ hente %sB med arkiver.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Etter denne operasjonen vil %sB ekstra diskplass bli brukt.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Etter denne operasjonen vil %sB diskplass bli ledig.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Dessverre, ikke nok ledig plass i %s"
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Det oppsto problemer og «-y» ble brukt uten «--force-yes»"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Ja, gjør som jeg sier!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Du er iferd med å utføre en mulig skadelig handling.\n"
+"For å fortsette skriv inn teksten «%s»\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Avbryter."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Vil du fortsette?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Klarte ikke laste ned alle filene"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Klarte ikke å hente alle arkivene. Du kan prøve med «apt-get update» eller "
+"«--fix-missing»."
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "«--fix-missing» og bytte av media støttes nå ikke"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Klarer ikke å rette på manglende pakker."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Avbryter installasjonen."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Den følgende pakken forsvant fra systemet ditt siden\n"
+"alle filene er overskrevet av andre pakker:"
+msgstr[1] ""
+"De følgende pakkene forsvant fra systemet ditt siden\n"
+"alle filene er overskrevet av andre pakker:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Merk: Dette er gjort automatisk og med hensikt av dpkg."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Vi skal ikke slette ting, kan ikke starte auto-fjerner (AutoRemover)"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, det ser ut som auto-fjerneren (AutoRemover) ødela noe, og det skal\n"
+"virkelig ikke skje. Send inn en feilmelding til apt-utviklerne."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Følgende informasjon kan være til hjelp med å løse problemet:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Følgende pakke ble automatisk installert og er ikke lenger påkrevet:"
+msgstr[1] ""
+"Følgende pakker ble automatisk installert og er ikke lenger påkrevet:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "%lu pakke ble automatisk installert og er ikke lenger påkrevet.\n"
+msgstr[1] "%lu pakker ble automatisk installert og er ikke lenger påkrevet.\n"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Bruk «apt-get autoremove» for å fjerne dem."
+msgstr[1] "Bruk «apt-get autoremove» for å fjerne dem."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Du vil kanskje utføre «apt-get -f install» for å rette på disse:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller "
+"angi en løsning)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Noen pakker ble ikke installeres. Dette kan bety at du har bedt om\n"
+"en umulig tilstand eller, hvis du bruker den ustabile utgaven av Debian,\n"
+"at visse kjernepakker ennå ikke er laget eller flyttet ut av «Incoming» for\n"
+"distribusjonen."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Ødelagte pakker"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Følgende ekstra pakker vil bli installert."
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Foreslåtte pakker:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Anbefalte pakker"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Autentiseringsadvarsel overstyrt.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Noen pakker ble ikke autentisert"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Installer disse pakkene uten verifikasjon?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Klarte ikke å skaffe %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Installert]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Installert]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Installert]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Følgende pakker har uinnfridde avhengighetsforhold:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "men %s er installert"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "men %s skal installeres"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "men lar seg ikke installere"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "men er en virtuell pakke"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "men er ikke installert"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "men skal ikke installeres"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " eller"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Følgende NYE pakker vil bli installert:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Følgende pakker vil bli FJERNET:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Følgende pakker er holdt tilbake:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Følgende pakker vil bli oppgradert:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Følgende pakker vil bli NEDGRADERT:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Følgende pakker vil bli endret:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (pga. %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ADVARSEL: Følgende essensielle pakker vil bli fjernet.\n"
+"Dette bør IKKE gjøres, med mindre du vet nøyaktig hva du gjør!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu oppgraderte, %lu nylig installerte, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu installert på nytt, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu nedgraderte, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu å fjerne og %lu ikke oppgradert.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu pakker ikke fullt installert eller fjernet.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[J/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[j/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "J"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Kompileringsfeil i regulært uttrykk - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Retter på avhengighetsforhold ..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " mislyktes."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Klarer ikke å rette på avhengighetsforholdene"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Klarer ikke å minimere oppgraderingsettet"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Utført"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Du vil kanskje kjøre «apt-get -f install» for å rette på dette."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Oppdaterings-kommandoen tar ingen argumenter"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Beregner oppgradering... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Intern feil - «AllUpgrade» ødela noe"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Utført"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"MERK: Dette er kun en simulering.\n"
+" apt-get må ha root-rettigheter for reell utførelse.\n"
+" Husk også at låsing er deaktivert, så ikke regn med \n"
+" relevans i forhold til den reelle gjeldende situasjonen."
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Klarte ikke å endre navnet på %s til %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Funnet "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Hent:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Feil "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Hentet %sB på %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Arbeider]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Bytte av media: sett inn CD-en som er merket\n"
+" «%s»\n"
+"i «%s» og trykk «Enter»\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Klarer ikke å lese %s"
@@ -1692,35 +1652,35 @@ msgstr "Klarte ikke å opprette IPC-rør til underprosessen"
msgid "Connection closed prematurely"
msgstr "Forbindelsen ble uventet stengt"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Feil standardinnstilling!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Trykk «Enter» og fortsett"
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Vil du slettet alle tidligere nedlastede .deb-filer?"
# Note to translators: The following four messages belong together. It doesn't
# matter where sentences start, but it has to fit in just these four lines, and
# at only 80 characters per line, if possible.
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Feil oppstod ved utpakkinga. Setter nå opp de installerte pakkene."
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "Det kan lede til fordobling av feil eller feil forårsaket av "
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "manglende forutsetninger. Det er greit, bare de nevnte feilene er"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "av betydning. Sett dem i stand dem og kjør [I]nstall igjen."
@@ -1971,36 +1931,36 @@ msgstr "Klarte ikke å lese lenken %s"
msgid "Failed to unlink %s"
msgstr "Klarte ikke å oppheve lenken %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Klarte ikke å lenke %s til %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " DeLink-grensa på %s B er nådd.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Arkivet har ikke noe pakkefelt"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s har ingen overstyringsoppføring\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s-vedlikeholderen er %s, ikke %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s har ingen kildeoverstyringsoppføring\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s har ingen binæroverstyringsoppføring heller\n"
@@ -2079,7 +2039,7 @@ msgstr "Problem ved oppheving av lenken til %s"
msgid "Failed to rename %s to %s"
msgstr "Klarte ikke å endre navnet på %s til %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2149,7 +2109,7 @@ msgstr "Ødelagt arkiv"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar-sjekksummen mislykkes, arkivet er ødelagt"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Ukjent TAR-hode: type %u, medlem %s"
@@ -2273,24 +2233,17 @@ msgid "Unable to stat %s"
msgstr "Klarte ikke å få statusen på %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Dette er ikke et gyldig DEB-arkiv, mangler «%s»-medlemmet"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Dette er ikke et gyldig DEB-arkiv, det har ikke noe «%s»-, «%s»- eller «%s»-"
-"medlem"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Intern feil, fant ikke medlemmet %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Kontrollfila kan ikke tolkes"
@@ -2351,85 +2304,85 @@ msgstr ""
"av brukeren."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr "%lid %lit %lim %lis"
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lit %lim %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%lim %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Fant ikke utvalget %s"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Ukjent typeforkortelse: «%c»"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Ã…pner oppsettsfila %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Syntaksfeil %s:%u: Feil på taggen"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Syntaksfeil %s:%u: Ugyldige angivelser etter verdien"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "Syntaksfeil %s:%u: Direktivene kan bare ligge i det øverste nivået"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Syntaksfeil %s:%u: For mange nøstede inkluderte filer"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Syntaksfeil %s:%u: Inkludert herfra"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikke støttet"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "Syntaksfeil %s:%u: clear-direktivet krever et valgtre som argument"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Syntaksfeil %s:%u: Ugyldige angivelser på slutten av fila"
@@ -2454,48 +2407,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s ... Ferdig"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Kjenner ikke kommandolinjevalget «%c» (fra %s)."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Skjønner ikke kommandolinjevalget %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Kommandolinjevalget %s er ikke boolsk"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Valget %s krever et argument."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Valg %s: Angivelsen av oppsettselementet må ha en =<verdi>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Valget %s må ha et heltallsargument, ikke «%s»"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Valget «%s» er for langt"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Skjønner ikke %s. Prøv «true» eller «false»."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Ugyldig operasjon %s"
@@ -2509,116 +2462,116 @@ msgstr "Klarer ikke å fastsette monteringspunktet %s"
msgid "Failed to stat the cdrom"
msgstr "Klarer ikke å få statusen på CD-spilleren"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problem ved låsing av gzip-fila %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Bruker ikke låsing for den skrivebeskyttede låsefila %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Klarte ikke åpne låsefila %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Bruker ikke låsing på den nfs-monterte låsefila %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Får ikke låst %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Underprosessen %s mottok et minnefeilsignal."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Underprosessen %s mottok signalet %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "Underprosessen %s ga en feilkode (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Underprosessen %s avsluttet uventet"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Klarte ikke åpne fila %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Klarte ikke åpne fildeskriptor %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Klarte ikke å opprette underprosessen IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Klarte ikke å kjøre komprimeringen"
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "lese, har fremdeles %lu igjen å lese, men ingen igjen"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "skrive, har fremdeles %lu igjen å skrive, men klarte ikke å"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Problem ved låsing av fila %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problem ved endring av navn på fila %s til %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Problem ved oppheving av lenke til fila %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problem ved oppdatering av fila"
@@ -2736,12 +2689,12 @@ msgstr "Klarte ikke å åpne StateFile %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Klarte ikke å skrive midlertidig StateFile %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Klarer ikke å fortolke pakkefila %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Klarer ikke å fortolke pakkefila %s (2)"
@@ -2816,7 +2769,7 @@ msgstr "Feil på %u i kildelista %s (type)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2825,12 +2778,12 @@ msgstr ""
"Klarte ikke gjennomføre umiddelbar konfigurasjon av «%s». Se man 5 apt.conf "
"under APT::Immediate-Configure for detaljer. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Klarte ikke åpne fila «%s»"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2853,7 +2806,7 @@ msgid ""
msgstr ""
"Pakka %s trenger å installeres på nytt, men jeg finner ikke lageret for den."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2861,19 +2814,10 @@ msgstr ""
"Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker "
"som holdes tilbake."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
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:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Klarte ikke å laste ned alle oversiktfilene. De ble ignorerte, eller gamle "
-"ble brukt isteden. "
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2916,12 +2860,12 @@ 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:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Pakkesystemet «%s» støttes ikke"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Klarer ikke bestemme en passende pakkesystemtype"
@@ -2955,17 +2899,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Ugyldig oppslag i foretrekksfila %s, manglende pakkehode"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Forsto ikke spikring av typen %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Ingen prioritet (eller null) spesifisert for pin"
@@ -3032,45 +2976,49 @@ msgstr "IO-feil ved lagring av kildekode-lager"
msgid "rename failed, %s (%s -> %s)."
msgstr "klarte ikke å endre navnet, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Feil MD5sum"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Hashsummen stemmer ikke"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Feil størrelse"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Ugyldig operasjon %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Klarer ikke å fortolke Release-fila %s"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
"Det er ingen offentlig nøkkel tilgjengelig for de følgende nøkkel-ID-ene:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3080,12 +3028,12 @@ msgstr ""
"forrige indeksfilen vil bli brukt. GPG-feil: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "GPG-feil: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3094,31 +3042,23 @@ 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:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"Klarte ikke å finne en fil for pakken %s. Det kan bety at du må ordne denne "
-"pakken selv."
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, 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:1879
-msgid "Size mismatch"
-msgstr "Feil størrelse"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Klarer ikke å fortolke Release-fila %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Ingen avsnitt i Release-fila %s"
@@ -3263,32 +3203,32 @@ msgstr "Klarte ikke finne autentiseringsoppføring for: %s"
msgid "Hash mismatch for: %s"
msgstr "Hashsummen stemmer ikke for: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Utgave «%s» av «%s» ble ikke funnet"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Versjon «%s» av «%s» ble ikke funnet"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Klarte ikke å finne oppgave «%s»"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Klarte ikke finne noen pakken med regex «%s»"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "Klarte ikke velge versjoner fra pakken «%s» siden den er kun virtuell"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3297,20 +3237,20 @@ msgstr ""
"Klarte ikke velge installert eller kandidatversjon fra pakken «%s» siden den "
"har ingen av dem"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Klarte ikke velge nyeste versjon fra pakken «%s» siden den er kun virtuell"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Klarte ikke velge kandidatversjon fra pakken «%s» siden den ikke har noen "
"kandidat"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3337,109 +3277,132 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Kjører dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Klarte ikke å laste ned alle oversiktfilene. De ble ignorerte, eller gamle "
+"ble brukt isteden. "
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Installerer %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Setter opp %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Fjerner %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "Fjerner %s fullstendig"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Legger merke til at %s forsvinner"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Kjører etter-installasjonsutløser %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Mappa «%s» mangler"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Klarte ikke åpne fila «%s»"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Forbereder %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Pakker ut %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Forbereder oppsett av %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Installerte %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Forbereder fjerning av %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Fjernet %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Forbereder å fullstendig slette %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Fjernet %s fullstendig"
-#: apt-pkg/deb/dpkgpm.cc:1243
-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:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Kan ikke skrive til %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Kjører dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "Ingen apport-rapport skrevet for MaxReports allerede er nådd"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "avhengighetsproblemer - lar den være uoppsatt"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3447,7 +3410,7 @@ msgstr ""
"Ingen apport-rapport skrevet fordi feilmeldingen indikerer at den er en "
"følgefeil fra en tidligere feil."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3455,7 +3418,7 @@ msgstr ""
"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-"
"feil"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3463,7 +3426,16 @@ msgstr ""
"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «tom for "
"minne»-feil"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-"
+"feil"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3494,6 +3466,95 @@ msgstr "dpkg ble avbrutt. Du må kjøre «%s» manuelt for å rette problemet,"
msgid "Not locked"
msgstr "Ikke låst"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Merk, velger «%s» for oppgaven «%s»\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Merk, velger «%s» for det regulære uttrykket «%s»\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Pakken %s er en virtuell pakke, som oppfylt av:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Ikke versjonskandidat]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Du må velge en pakke som skal installeres."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Pakken %s er ikke tilgjengelig, men en annen pakke henviser til den.\n"
+#~ "Dette kan bety at pakken mangler, er utgått, eller bare finnes \n"
+#~ "tilgjengelig fra en annen kilde.\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Følgende pakker erstatter den imidlertid:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Pakken «%s» har ingen installasjonskandidat"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Virtuelle pakker som «%s» kan ikke fjernes\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Merk, velger «%s» istedenfor «%s»\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "Omgår %s - den er allerede installert eller ikke satt til oppgradering.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Hopper over %s siden den ikke er installert eller kun oppgraderinger er "
+#~ "ønsket.\n"
+
+#~ 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"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s er allerede nyeste versjon.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Utvalgt versjon «%s» (%s) for «%s»\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Utvalgt versjon «%s» (%s) for «%s»\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Ignorer utilgjengelig målutgave «%s» av pakke «%s»"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Dette er ikke et gyldig DEB-arkiv, det har ikke noe «%s»-, «%s»- eller "
+#~ "«%s»-medlem"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Feil MD5sum"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Klarte ikke å finne en fil for pakken %s. Det kan bety at du må ordne "
+#~ "denne pakken selv."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "Klarte ikke skrive logg, openpty() feilet (/dev/pts ikke montert?)\n"
+
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Hopper over den ikke-eksisterende fila %s"
diff --git a/po/ne.po b/po/ne.po
index f54af4fa9..7686c7c8e 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt_po\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2006-06-12 14:35+0545\n"
"Last-Translator: Shiva Pokharel <pokharelshiva@hotmail.com>\n"
"Language-Team: Nepali <info@mpp.org.np>\n"
@@ -17,154 +17,156 @@ msgstr ""
"Plural-Forms: nplurals=2;plural=(n!=1)\n"
"X-Generator: KBabel 1.10.2\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s संसà¥à¤•à¤°à¤£ %s संग à¤à¤‰à¤Ÿà¤¾ नभेटिà¤à¤•à¥‹ dep छ:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "कूल पà¥à¤¯à¤¾à¤•à¥‡à¤œ नामहरू :"
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "कूल पà¥à¤¯à¤¾à¤•à¥‡à¤œ नामहरू :"
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " सामानà¥à¤¯ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚:"
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr "शà¥à¤¦à¥à¤§ अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚:"
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " à¤à¤•à¤² अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚:"
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " मिशà¥à¤°à¤¿à¤¤ अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚:"
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " हराइरहेको:"
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "कूल भिनà¥à¤¨ संसà¥à¤•à¤°à¤£à¤¹à¤°à¥‚:"
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
#, fuzzy
msgid "Total distinct descriptions: "
msgstr "कूल भिनà¥à¤¨ संसà¥à¤•à¤°à¤£à¤¹à¤°à¥‚:"
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "कूल निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚:"
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "जमà¥à¤®à¤¾ ver/file समà¥à¤¬à¤¨à¥à¤§à¤¹à¤°à¥‚: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
#, fuzzy
msgid "Total Desc/File relations: "
msgstr "जमà¥à¤®à¤¾ ver/file समà¥à¤¬à¤¨à¥à¤§à¤¹à¤°à¥‚: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "कूल उपलबà¥à¤§ मानचितà¥à¤°à¤£à¤¹à¤°à¥‚:"
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "कूल विशà¥à¤µà¤µà¥à¤¯à¤¾à¤ªà¥€ सà¥à¤Ÿà¥à¤°à¤¿à¤™à¥à¤—हरू:"
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "कूल निरà¥à¤­à¤°à¤¤à¤¾ संसà¥à¤•à¤°à¤£ खाली ठाऊà¤:"
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "कूल शिथिल खाली ठाऊà¤:"
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "को लागि कूल खाली ठाऊठलेखांकन:"
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ फाइल %s sync भनà¥à¤¦à¤¾ बाहिर छ ।"
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "कà¥à¤¨à¥ˆ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ फेला परेन"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "तपाईà¤à¤²à¥‡ à¤à¤‰à¤Ÿà¤¾ वासà¥à¤¤à¤µà¤¿à¤• बानà¥à¤•à¥€ दिनà¥à¤ªà¤°à¥à¤›"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s तोकà¥à¤¨ असकà¥à¤·à¤® भयो"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ फाइलहरू:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "कà¥à¤¯à¤¾à¤¸ sync भनà¥à¤¦à¤¾ बाहिर छ, पà¥à¤¯à¤¾à¤•à¥‡à¤œ फाइल x-ref गरà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "पिन गरिà¤à¤•à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(फेला परेन)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो:"
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " उमेदà¥à¤µà¤¾à¤°:"
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(कà¥à¤¨à¥ˆ पनि होइन)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ पिन:"
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " संसà¥à¤•à¤°à¤£ तालिका:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, fuzzy, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s को लागि %s %s, %s %s मा कमà¥à¤ªà¤¾à¤à¤² गरिà¤à¤•à¥‹ छ\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -239,36 +241,36 @@ msgstr ""
"धेरै जानकारीकोप लागि apt-cache(8) र apt.conf(5) मà¥à¤¯à¤¾à¤¨à¥à¤² पृषà¥à¤Ÿà¤¹à¤°à¥‚ हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
#, 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:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "कृपया डà¥à¤°à¤¾à¤‡à¤­à¤®à¤¾ डिसà¥à¤• घà¥à¤¸à¤¾à¤‰à¤¨à¥à¤¹à¥‹à¤¸à¥ र इनà¥à¤Ÿà¤° थिचà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr " %s मा %s पà¥à¤¨:नामकरण असफल भयो"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "तपाईà¤à¤•à¥‹ सेटमा बाà¤à¤•à¥€ सि डि हरà¥à¤•à¥‹ लागि यो पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ फेरी गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । "
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "तरà¥à¤•à¤¹à¤°à¥‚ जोडामा छैन"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -296,599 +298,62 @@ msgstr ""
" -c=? यो कनफिगरेसन फाइल पढà¥à¤¨à¥à¤¹à¥‹à¤¸à¥\n"
" -o=? à¤à¤‰à¤Ÿà¤¾ सà¥à¤µà¥‡à¤šà¥à¤›à¤¾à¤šà¤¾à¤°à¥€ कनफिगरेसन विकलà¥à¤ª सेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥, जसà¥à¤¤à¥ˆ -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr ""
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "संकलन तà¥à¤°à¥à¤Ÿà¤¿ रिजेकà¥à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥à¤²à¥‡ निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚ भेटेननà¥:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾à¤¯à¥‹à¤—à¥à¤¯ छैन"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "तर यो अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•à¥‡à¤œ होइन"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भà¤à¤¨"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨ गइरहेको छैन"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr "वा"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ हटाइनेछनà¥:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ पछाडि राखिनेछनà¥:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¤à¤° वृदà¥à¤§à¤¿ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¤à¤°à¤•à¤® गरिनेछनà¥:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "निमà¥à¤¨ भइरहेको पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ परिवरà¥à¤¤à¤¨ हà¥à¤¨à¥‡à¤›à¥ˆà¤¨:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (%s कारणले) "
-
-#: cmdline/apt-get.cc:600
-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"
-"तपाईठके गरिरहेको यकिन नभà¤à¤¸à¤®à¥à¤® यो काम गरिने छैन!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu सà¥à¤¤à¤° वृदà¥à¤§à¤¿ गरियो, %lu नयाठसà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu पà¥à¤¨: सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरियो, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu सà¥à¤¤à¤° कम गरियो, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu हटाउन र %lu सà¥à¤¤à¤° वृदà¥à¤§à¤¿ गरिà¤à¤¨ ।\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu पूरà¥à¤£à¤°à¥à¤ªà¤²à¥‡ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भà¤à¤¨ र हटाइà¤à¤¨ ।\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "दà¥à¤°à¤·à¥à¤Ÿà¤¬à¥à¤¯, रिजेकà¥à¤¸ '%s' को लागि %s चयन गरिदैछ\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "दà¥à¤°à¤·à¥à¤Ÿà¤¬à¥à¤¯, रिजेकà¥à¤¸ '%s' को लागि %s चयन गरिदैछ\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s ...दà¥à¤µà¤¾à¤°à¤¾ उपलबà¥à¤§ गराइà¤à¤•à¥‹ अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•à¥‡à¤œ हो:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "उमेदà¥à¤µà¤¾à¤° संसà¥à¤•à¤°à¤£à¤¹à¤°à¥‚"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "तपाईà¤à¤²à¥‡ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरà¥à¤¨ सà¥à¤ªà¤·à¥à¤Ÿ रà¥à¤ªà¤®à¤¾ à¤à¤‰à¤Ÿà¤¾ चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।"
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s उपलबà¥à¤§ छैन, तर अरà¥à¤•à¥‹ पà¥à¤¯à¤¾à¤•à¥‡à¤œ दà¥à¤µà¤¾à¤°à¤¾ सिफारिस पà¥à¤¯à¤¾à¤•à¥‡à¤œ हो ।\n"
-"यसको मतलब पà¥à¤¯à¤¾à¤•à¥‡à¤œ हराइरहेको पà¥à¤¯à¤¾à¤•à¥‡à¤œ, बेकायम भयो\n"
-" अरà¥à¤•à¥‹ सà¥à¤°à¥‹à¤¤à¤¬à¤¾à¤Ÿ मातà¥à¤° उपलबà¥à¤§ हà¥à¤¨à¥à¤›\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "जे भठपनि निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ले यसलाई बदलà¥à¤›:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s संग कà¥à¤¨à¥ˆ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ उमेदà¥à¤µà¤¾à¤° छैन"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भà¤à¤¨, तà¥à¤¯à¤¸à¥ˆà¤²à¥‡ हटेन\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भà¤à¤¨, तà¥à¤¯à¤¸à¥ˆà¤²à¥‡ हटेन\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "दà¥à¤°à¤·à¥à¤Ÿà¤¬à¥à¤¯, %s को सटà¥à¤Ÿà¤¾ %s चयन भइरहेछ\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "%s फडà¥à¤•à¤¿à¤¦à¥ˆà¤›, यो पहिलà¥à¤¯à¥ˆ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो र सà¥à¤¤à¤°à¤µà¥ƒà¤¦à¥à¤§à¤¿ सेट भà¤à¤•à¥‹ छैन ।\n"
-
-#: cmdline/apt-get.cc:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "%s फडà¥à¤•à¤¿à¤¦à¥ˆà¤›, यो पहिलà¥à¤¯à¥ˆ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो र सà¥à¤¤à¤°à¤µà¥ƒà¤¦à¥à¤§à¤¿ सेट भà¤à¤•à¥‹ छैन ।\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr " %s को पà¥à¤¨: सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ समà¥à¤­à¤µ छैन, यो डाउनलोड हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨ ।\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s पहिलà¥à¤¯à¥ˆ नयाठसंसà¥à¤•à¤°à¤£ हो ।\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, fuzzy, c-format
-msgid "%s set to manually installed.\n"
-msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "%s को लागि चयन भà¤à¤•à¥‹ संसà¥à¤•à¤°à¤£ %s (%s)\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "%s को लागि चयन भà¤à¤•à¥‹ संसà¥à¤•à¤°à¤£ %s (%s)\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤° गरिदैछ..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr "असफल भयो ।"
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤° गरà¥à¤¨ असकà¥à¤·à¤® भयो"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "सà¥à¤¤à¤° वृदà¥à¤§à¤¿ सेटलाई नà¥à¤¯à¥‚नतम गरà¥à¤¨ असकà¥à¤·à¤® भयो"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr "काम भयो"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "यी सà¥à¤§à¤¾à¤° गरà¥à¤¨ तपाईà¤à¤²à¥‡ 'apt-get -f install' चलाउन परà¥à¤› ।"
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "नभेटिà¤à¤•à¤¾ निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚ । -f पà¥à¤°à¤¯à¥‹à¤— गरेर पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।"
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "चेतावनी: निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¤²à¥‡à¤œà¤¹à¤°à¥‚ पà¥à¤°à¤£à¤¾à¤£à¥€à¤•à¤°à¤£ हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨! "
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "पà¥à¤°à¤®à¤¾à¤£à¤¿à¤•à¤°à¤£ चेतावनी अधिलेखन भयो ।\n"
-
-#: cmdline/apt-get.cc:1108
-#, fuzzy
-msgid "Install these packages without verification?"
-msgstr "यी पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ रूजू बिना सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› [y/N]? "
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "केही पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ पà¥à¤°à¤®à¤¾à¤£à¥€à¤•à¤°à¤£ हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "तà¥à¤¯à¤¹à¤¾à¤ समसà¥à¤¯à¤¾à¤¹à¤°à¥‚ छनॠर हà¥à¤¨à¥à¤›à¤²à¤¾à¤ˆ जोड नगरिकन -y को पà¥à¤°à¤¯à¥‹à¤— भयो"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿, सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥à¤²à¤¾à¤ˆ भाà¤à¤šà¤¿à¤à¤•à¥‹ पà¥à¤¯à¤¾à¤•à¥‡à¤œ भनिनà¥à¤¥à¥à¤¯à¥‹!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ हटà¥à¤¨ चाहदैछनॠतर हटाई अकà¥à¤·à¤® भइरहेछ ।"
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿, आदेश समापà¥à¤¤ भà¤à¤•à¥‹ छैन"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "कसà¥à¤¤à¥‹ नमिलेको.. साइजहरू मेल खाà¤à¤¨, apt@packages.debian.org इमेल गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•à¥‹ %sB/%sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• ।\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•à¥‹ %sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• ।\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, fuzzy, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "अनपà¥à¤¯à¤¾à¤• गरिसके पछि थप डिसà¥à¤• खाली ठाउà¤à¤•à¥‹ %sB पà¥à¤°à¤¯à¥‹à¤— हà¥à¤¨à¥‡à¤› ।\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, fuzzy, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "%sB अनपà¥à¤¯à¤¾à¤• गरिसके पछि डिसà¥à¤• खाली ठाउठखाली हà¥à¤¨à¥‡à¤› ।\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr " %s मा खाली ठाऊठनिरà¥à¤§à¤¾à¤°à¤£ गरà¥à¤¨ सकिà¤à¤¨"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "तपाईठसंग %s मा परà¥à¤¯à¤¾à¤ªà¥à¤¤ खाली ठाऊठछैन ।"
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "तà¥à¤°à¤¿à¤­à¤¿à¤¯à¤² मातà¥à¤° निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरिà¤à¤•à¥‹ छ तर यो तà¥à¤°à¤¿à¤­à¤¿à¤¯à¤² सञà¥à¤šà¤¾à¤²à¤¨ होइन ।"
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "हो,मैले भने जसà¥à¤¤à¥ˆ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"तपाईà¤à¤²à¥‡ केही संभवत: हानिकारक काम गरà¥à¤¨à¥à¤ªà¤°à¥à¤› ।\n"
-"निरनà¥à¤¤à¤°à¤¤à¤¾ दिन '%s' वाकà¥à¤¯à¤¾à¤‚शमा टाइप गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ \n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "परितà¥à¤¯à¤¾à¤— गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।"
-
-#: cmdline/apt-get.cc:1313
-#, fuzzy
-msgid "Do you want to continue?"
-msgstr "के तपाईठनिरनà¥à¤¤à¤°à¤¤à¤¾ दिन चाहनà¥à¤¹à¥à¤¨à¥à¤› [Y/n]? "
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "%s %s तानà¥à¤¨ असफल भयो\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "केही फाइलहरू डाउनलोड गरà¥à¤¨ असफल भयो"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "डाउनलोड समापà¥à¤¤ भयो र डाउनलोडमा मोड मातà¥à¤°à¥ˆ छ"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"केही संगà¥à¤°à¤¹à¤¹à¤°à¥‚ तानà¥à¤¨ असकà¥à¤·à¤® भयो,apt-get अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• चलिरहेछ वा हराइरहेको --fix-संगै पà¥à¤°à¤¯à¤¾à¤¸ "
-"गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› ?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "हराइरहेको --fix-र सà¥à¤µà¤¾à¤ª भइरहेको मेडिया हाल समरà¥à¤¥à¤¿à¤¤ भइरहेको छैन"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "हराइरहेको पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤°à¥à¤¨ असकà¥à¤·à¤® भयो ।"
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ परितà¥à¤¯à¤¾à¤— गरिदैछ ।"
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, fuzzy, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "सà¥à¤°à¥‹à¤¤ पà¥à¤¯à¤¾à¤•à¥‡à¤œ सूची %s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ सकिà¤à¤¨ "
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• आदेशले कà¥à¤¨à¥ˆ तरà¥à¤•à¤¹à¤°à¥‚ लिदैन"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "निमà¥à¤¨ सूचनाले अवसà¥à¤¥à¤¾à¤²à¤¾à¤ˆ हल गरà¥à¤¨ मदà¥à¤¦à¤¤ गरà¥à¤¨à¥‡à¤›: "
-
-#: cmdline/apt-get.cc:1853
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿,समसà¥à¤¯à¤¾ हलकरà¥à¤¤à¤¾à¤²à¥‡ उतà¥à¤¤à¤® गà¥à¤£ भाà¤à¤šà¥à¤¯à¥‹ "
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
-msgstr[1] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
-msgstr[1] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿,सबै सà¥à¤¤à¤°à¤µà¥ƒà¤¦à¥à¤§à¤¿à¤²à¥‡ उतà¥à¤¤à¤® गà¥à¤£ नषà¥à¤Ÿ गरà¥à¤¦à¤›"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "तपाईठयसलाई सà¥à¤§à¤¾à¤° गरà¥à¤¨ 'apt-get -f install' चलाउन चाहनà¥à¤¹à¥à¤¨à¥à¤›:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"नभेटिà¤à¤•à¤¾ निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚ । पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ बिना 'apt-get -f install' पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ( वा "
-"समाधान निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥) ।"
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"केही पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨ । यसको मतलब तपाईà¤à¤²à¥‡\n"
-" à¤à¤‰à¤Ÿà¤¾ असमà¥à¤­à¤µ अवासà¥à¤¥à¤¾à¤•à¥‹ अनà¥à¤°à¥‹à¤§ गरà¥à¤¨à¥ भà¤à¤•à¥‹ छ वा यदि तपाईà¤à¤²à¥‡ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨à¥ भइरहेको केहि "
-"पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥à¤•à¥‹ आवशà¥à¤¯à¤•à¤¤à¤¾ परà¥à¤¨à¥‡ असà¥à¤¥à¤¿à¤°\n"
-" वितरण अहिले समà¥à¤® सिरà¥à¤œà¤¨à¤¾\n"
-" भà¤à¤•à¥‹ छैन वा आवगमन विनानै सरà¥à¤¯à¥‹ ।"
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "भाà¤à¤šà¤¿à¤à¤•à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "निमà¥à¤¨ अतिरिकà¥à¤¤ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "सà¥à¤à¤¾à¤µ दिà¤à¤•à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "सिफारिस गरिà¤à¤•à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ फेला पारà¥à¤¨ सकिà¤à¤¨ %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "सà¥à¤¤à¤° वृदà¥à¤§à¤¿ गणना गरिदैछ..."
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "असफल भयो"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "काम भयो"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿,समसà¥à¤¯à¤¾ हलकरà¥à¤¤à¤¾à¤²à¥‡ उतà¥à¤¤à¤® गà¥à¤£ भाà¤à¤šà¥à¤¯à¥‹ "
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "डाउनलोड डाइरेकà¥à¤Ÿà¥à¤°à¥€ तालà¥à¤šà¤¾ मारà¥à¤¨ असकà¥à¤·à¤®"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "को लागि सà¥à¤°à¥‹à¤¤ तानà¥à¤¨ कमà¥à¤¤à¤¿à¤®à¤¾ à¤à¤‰à¤Ÿà¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œ निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤ªà¤°à¥à¤›"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "%s को लागि सà¥à¤°à¥‹à¤¤ पà¥à¤¯à¤¾à¤•à¥‡à¤œ फेला पारà¥à¤¨ असफल भयो"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -896,104 +361,114 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "पहिलà¥à¤¯à¥ˆ डाउनलोड भà¤à¤•à¤¾ फाइलहरॠफडà¥à¤•à¤¾à¤‡à¤¦à¥ˆà¤› '%s'\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr " %s मा खाली ठाऊठनिरà¥à¤§à¤¾à¤°à¤£ गरà¥à¤¨ सकिà¤à¤¨"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "तपाईठसंग %s मा परà¥à¤¯à¤¾à¤ªà¥à¤¤ खाली ठाऊठछैन"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "सà¥à¤°à¥‹à¤¤ संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•à¥‹ %sB/%sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• छ ।\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "सà¥à¤°à¥‹à¤¤ संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•à¥‹ %sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• छ ।\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "सà¥à¤°à¥‹à¤¤ फडà¥à¤•à¤¾à¤‰à¤¨à¥à¤¹à¥‹à¤¸à¥ %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "केही संगà¥à¤°à¤¹ फडà¥à¤•à¤¾à¤‰à¤¨ असफल भयो ।"
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "डाउनलोड समापà¥à¤¤ भयो र डाउनलोडमा मोड मातà¥à¤°à¥ˆ छ"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr " %s मा पहिलà¥à¤¯à¥ˆ अनपà¥à¤¯à¤¾à¤• गरिà¤à¤•à¤¾ सà¥à¤°à¥‹à¤¤à¤•à¥‹ अनपà¥à¤¯à¤¾à¤• फडà¥à¤•à¤¾à¤‡à¤¦à¥ˆà¤›\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "अनपà¥à¤¯à¤¾à¤• आदेश '%s' असफल भयो ।\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "जाà¤à¤šà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ यदि 'dpkg-dev' पà¥à¤¯à¤¾à¤•à¥‡à¤œ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो ।\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "निरà¥à¤®à¤¾à¤£ आदेश '%s' असफल भयो ।\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "शाखा पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ असफल भयो"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr "को लागि builddeps जाà¤à¤šà¥à¤¨ कमà¥à¤¤à¤¿à¤®à¤¾ à¤à¤‰à¤Ÿà¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œ निरà¥à¤¦à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤ªà¤°à¥à¤›"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "%s को लागि निरà¥à¤®à¤¾à¤£-निरà¥à¤­à¤°à¤¤à¤¾ सूचना पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ असकà¥à¤·à¤® भयो"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s कà¥à¤¨à¥ˆ निरà¥à¤®à¤¾à¤£à¤®à¤¾ आधारित हà¥à¤¦à¥ˆà¤¨ ।\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
"packages"
msgstr "%s को लागि %s निरà¥à¤­à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ हà¥à¤¨ सकेन किनभने पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s फेला पारà¥à¤¨ सकिà¤à¤¨"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, 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:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr "%s को लागि %s निरà¥à¤­à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ पारà¥à¤¨ असफल भयो: सà¥à¤¥à¤¾à¤ªà¤¿à¤¤ पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s अति नयाठछ"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1002,37 +477,37 @@ msgstr ""
"%sको लागि %s निरà¥à¤­à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ हà¥à¤¨ सकेन किन भने पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s को कà¥à¤¨à¥ˆ उपलबà¥à¤§ संसà¥à¤•à¤°à¤£à¤²à¥‡ संसà¥à¤•à¤°à¤£ "
"आवशà¥à¤¯à¤•à¤¤à¤¾à¤¹à¤°à¥à¤²à¤¾à¤ˆ सनà¥à¤¤à¥à¤·à¥à¤Ÿ पारà¥à¤¨ सकेन "
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
"version"
msgstr "%s को लागि %s निरà¥à¤­à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ हà¥à¤¨ सकेन किनभने पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s फेला पारà¥à¤¨ सकिà¤à¤¨"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "%s को लागि %s निरà¥à¤­à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ गरà¥à¤¨ असफल: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "%s को लागि निरà¥à¤®à¤¾à¤£ निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚ सनà¥à¤¤à¥à¤·à¥à¤Ÿ गरà¥à¤¨ सकिà¤à¤¨ । "
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "निरà¥à¤®à¤¾à¤£ निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ गरà¥à¤¨ असफल"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "%s (%s) मा जडान गरिदैछ"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "समरà¥à¤¥à¤¿à¤¤ मोडà¥à¤¯à¥à¤²à¤¹à¤°à¥‚:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1117,98 +592,53 @@ msgstr ""
"pages हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।\n"
" APT संग सà¥à¤ªà¤° काउ शकà¥à¤¤à¤¿à¤¹à¤°à¥‚ छ ।\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "हानà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%s (%sB/s) मा %sB मा तानियो\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [काम गरिरहेको]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"मेडिया परिवरà¥à¤¤à¤¨: कृपया डिसà¥à¤• लेबà¥à¤² डà¥à¤°à¤¾à¤‡à¤­ '%s' मा घà¥à¤¸à¤¾à¤‰à¤¨à¥à¤¹à¥‹à¤¸à¥\n"
-" '%s'\n"
-"र इनà¥à¤Ÿà¤° थिचà¥à¤¨à¥à¤¹à¥‹à¤¸à¥\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भà¤à¤¨"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s पहिलà¥à¤¯à¥ˆ नयाठसंसà¥à¤•à¤°à¤£ हो ।\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s पहिलà¥à¤¯à¥ˆ नयाठसंसà¥à¤•à¤°à¤£ हो ।\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr " %s को लागि परà¥à¤–िरहेको तर यो तà¥à¤¯à¤¹à¤¾à¤ छैन"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "%s खोलà¥à¤¨ असफल"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1230,6 +660,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1327,8 +774,8 @@ msgstr "जडान समय सकियो"
msgid "Server closed the connection"
msgstr "सरà¥à¤­à¤°à¤²à¥‡ जडान बनà¥à¤¦ गरà¥à¤¯à¥‹"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "तà¥à¤°à¥à¤Ÿà¤¿ पढà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
@@ -1341,8 +788,8 @@ msgid "Protocol corruption"
msgstr "पà¥à¤°à¥‹à¤Ÿà¥‹à¤•à¤² दूषित"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "तà¥à¤°à¥à¤Ÿà¤¿ लेखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
@@ -1354,6 +801,10 @@ msgstr "à¤à¤‰à¤Ÿà¤¾ सकेट सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¨ सकेà¤
msgid "Could not connect data socket, connection timed out"
msgstr "डेटा सकेट जडान गरà¥à¤¨ सकिà¤à¤¨, जडान समय सकियो"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "असफल भयो"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "निसà¥à¤•à¥à¤°à¤¿à¤¯ सकेट जडान गरà¥à¤¨ सकिà¤à¤¨"
@@ -1396,7 +847,7 @@ msgstr "डेटा सकेटको जडान समय सकियो"
msgid "Unable to accept connection"
msgstr "जडान सà¥à¤µà¥€à¤•à¤¾à¤° गरà¥à¤¨ असकà¥à¤·à¤® भयो"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "समसà¥à¤¯à¤¾ दà¥à¤°à¥à¤¤à¤¾à¤¨à¥à¤µà¥‡à¤·à¤£ फाइल"
@@ -1525,81 +976,592 @@ msgstr "निमà¥à¤¨ हसà¥à¤¤à¤¾à¤•à¥à¤·à¤°à¤¹à¤°à¥‚ रूजू हà¥
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "फाइलमा तà¥à¤°à¥à¤Ÿà¤¿ लेखिदैछ"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "सरà¥à¤­à¤°à¤¬à¤¾à¤Ÿ तà¥à¤°à¥à¤Ÿà¤¿ पढिदैछ । दूर गनà¥à¤¤à¤¬à¥à¤¯ बनà¥à¤¦ जडान"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "सरà¥à¤­à¤°à¤¬à¤¾à¤Ÿ तà¥à¤°à¥à¤Ÿà¤¿ पढिदैछ"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "फाइलमा तà¥à¤°à¥à¤Ÿà¤¿ लेखिदैछ"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "असफल चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "जडान समय सकियो"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "निरà¥à¤—ात फाइलमा तà¥à¤°à¥à¤Ÿà¤¿ लेखिदैछ"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "हेडरहरà¥à¤•à¥‹ लागि परà¥à¤–िदैछ"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "खराब हेडर लाइन"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "HTTP सरà¥à¤­à¤°à¤²à¥‡ अवैध जवाफ हेडर पठायो"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "HTTP सरà¥à¤­à¤°à¤²à¥‡ अवैध सामगà¥à¤°à¥€-लमà¥à¤¬à¤¾à¤ˆ हेडर पठायो"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "HTTP सरà¥à¤­à¤°à¤²à¥‡ अवैध सामगà¥à¤°à¥€-दायरा हेडर पठायो"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "HTTP सरà¥à¤­à¤° संग भाà¤à¤šà¤¿à¤à¤•à¥‹ दायरा समरà¥à¤¥à¤¨ छ"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "अजà¥à¤žà¤¾à¤¤ मिति ढाà¤à¤šà¤¾"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "असफल चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "खराब हेडर डेटा"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "जडान समय सकियो"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "जडान असफल भयो"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "निरà¥à¤—ात फाइलमा तà¥à¤°à¥à¤Ÿà¤¿ लेखिदैछ"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "फाइलमा तà¥à¤°à¥à¤Ÿà¤¿ लेखिदैछ"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "फाइलमा तà¥à¤°à¥à¤Ÿà¤¿ लेखिदैछ"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿, सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥à¤²à¤¾à¤ˆ भाà¤à¤šà¤¿à¤à¤•à¥‹ पà¥à¤¯à¤¾à¤•à¥‡à¤œ भनिनà¥à¤¥à¥à¤¯à¥‹!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "सरà¥à¤­à¤°à¤¬à¤¾à¤Ÿ तà¥à¤°à¥à¤Ÿà¤¿ पढिदैछ । दूर गनà¥à¤¤à¤¬à¥à¤¯ बनà¥à¤¦ जडान"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ हटà¥à¤¨ चाहदैछनॠतर हटाई अकà¥à¤·à¤® भइरहेछ ।"
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "सरà¥à¤­à¤°à¤¬à¤¾à¤Ÿ तà¥à¤°à¥à¤Ÿà¤¿ पढिदैछ"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿, आदेश समापà¥à¤¤ भà¤à¤•à¥‹ छैन"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "खराब हेडर डेटा"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "कसà¥à¤¤à¥‹ नमिलेको.. साइजहरू मेल खाà¤à¤¨, apt@packages.debian.org इमेल गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "जडान असफल भयो"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•à¥‹ %sB/%sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• ।\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•à¥‹ %sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• ।\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "अनपà¥à¤¯à¤¾à¤• गरिसके पछि थप डिसà¥à¤• खाली ठाउà¤à¤•à¥‹ %sB पà¥à¤°à¤¯à¥‹à¤— हà¥à¤¨à¥‡à¤› ।\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "%sB अनपà¥à¤¯à¤¾à¤• गरिसके पछि डिसà¥à¤• खाली ठाउठखाली हà¥à¤¨à¥‡à¤› ।\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "तपाईठसंग %s मा परà¥à¤¯à¤¾à¤ªà¥à¤¤ खाली ठाऊठछैन ।"
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "तà¥à¤¯à¤¹à¤¾à¤ समसà¥à¤¯à¤¾à¤¹à¤°à¥‚ छनॠर हà¥à¤¨à¥à¤›à¤²à¤¾à¤ˆ जोड नगरिकन -y को पà¥à¤°à¤¯à¥‹à¤— भयो"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "तà¥à¤°à¤¿à¤­à¤¿à¤¯à¤² मातà¥à¤° निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरिà¤à¤•à¥‹ छ तर यो तà¥à¤°à¤¿à¤­à¤¿à¤¯à¤² सञà¥à¤šà¤¾à¤²à¤¨ होइन ।"
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "हो,मैले भने जसà¥à¤¤à¥ˆ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"तपाईà¤à¤²à¥‡ केही संभवत: हानिकारक काम गरà¥à¤¨à¥à¤ªà¤°à¥à¤› ।\n"
+"निरनà¥à¤¤à¤°à¤¤à¤¾ दिन '%s' वाकà¥à¤¯à¤¾à¤‚शमा टाइप गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ \n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "परितà¥à¤¯à¤¾à¤— गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।"
+
+#: apt-private/private-install.cc:254
+#, fuzzy
+msgid "Do you want to continue?"
+msgstr "के तपाईठनिरनà¥à¤¤à¤°à¤¤à¤¾ दिन चाहनà¥à¤¹à¥à¤¨à¥à¤› [Y/n]? "
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "केही फाइलहरू डाउनलोड गरà¥à¤¨ असफल भयो"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"केही संगà¥à¤°à¤¹à¤¹à¤°à¥‚ तानà¥à¤¨ असकà¥à¤·à¤® भयो,apt-get अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• चलिरहेछ वा हराइरहेको --fix-संगै पà¥à¤°à¤¯à¤¾à¤¸ "
+"गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› ?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "हराइरहेको --fix-र सà¥à¤µà¤¾à¤ª भइरहेको मेडिया हाल समरà¥à¤¥à¤¿à¤¤ भइरहेको छैन"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "हराइरहेको पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤°à¥à¤¨ असकà¥à¤·à¤® भयो ।"
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ परितà¥à¤¯à¤¾à¤— गरिदैछ ।"
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "निमà¥à¤¨ सूचनाले अवसà¥à¤¥à¤¾à¤²à¤¾à¤ˆ हल गरà¥à¤¨ मदà¥à¤¦à¤¤ गरà¥à¤¨à¥‡à¤›: "
+
+#: apt-private/private-install.cc:517
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿,समसà¥à¤¯à¤¾ हलकरà¥à¤¤à¤¾à¤²à¥‡ उतà¥à¤¤à¤® गà¥à¤£ भाà¤à¤šà¥à¤¯à¥‹ "
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
+msgstr[1] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
+msgstr[1] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "तपाईठयसलाई सà¥à¤§à¤¾à¤° गरà¥à¤¨ 'apt-get -f install' चलाउन चाहनà¥à¤¹à¥à¤¨à¥à¤›:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"नभेटिà¤à¤•à¤¾ निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚ । पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ बिना 'apt-get -f install' पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ( वा "
+"समाधान निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥) ।"
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"केही पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨ । यसको मतलब तपाईà¤à¤²à¥‡\n"
+" à¤à¤‰à¤Ÿà¤¾ असमà¥à¤­à¤µ अवासà¥à¤¥à¤¾à¤•à¥‹ अनà¥à¤°à¥‹à¤§ गरà¥à¤¨à¥ भà¤à¤•à¥‹ छ वा यदि तपाईà¤à¤²à¥‡ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨à¥ भइरहेको केहि "
+"पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥à¤•à¥‹ आवशà¥à¤¯à¤•à¤¤à¤¾ परà¥à¤¨à¥‡ असà¥à¤¥à¤¿à¤°\n"
+" वितरण अहिले समà¥à¤® सिरà¥à¤œà¤¨à¤¾\n"
+" भà¤à¤•à¥‹ छैन वा आवगमन विनानै सरà¥à¤¯à¥‹ ।"
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "भाà¤à¤šà¤¿à¤à¤•à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "निमà¥à¤¨ अतिरिकà¥à¤¤ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "सà¥à¤à¤¾à¤µ दिà¤à¤•à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "सिफारिस गरिà¤à¤•à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "चेतावनी: निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¤²à¥‡à¤œà¤¹à¤°à¥‚ पà¥à¤°à¤£à¤¾à¤£à¥€à¤•à¤°à¤£ हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨! "
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "पà¥à¤°à¤®à¤¾à¤£à¤¿à¤•à¤°à¤£ चेतावनी अधिलेखन भयो ।\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "केही पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ पà¥à¤°à¤®à¤¾à¤£à¥€à¤•à¤°à¤£ हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨"
+
+#: apt-private/private-download.cc:46
+#, fuzzy
+msgid "Install these packages without verification?"
+msgstr "यी पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ रूजू बिना सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› [y/N]? "
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "%s %s तानà¥à¤¨ असफल भयो\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥à¤²à¥‡ निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚ भेटेननà¥:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾à¤¯à¥‹à¤—à¥à¤¯ छैन"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "तर यो अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•à¥‡à¤œ होइन"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भà¤à¤¨"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨ गइरहेको छैन"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr "वा"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ हटाइनेछनà¥:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ पछाडि राखिनेछनà¥:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¤à¤° वृदà¥à¤§à¤¿ हà¥à¤¨à¥‡à¤›à¤¨à¥:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¤à¤°à¤•à¤® गरिनेछनà¥:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "निमà¥à¤¨ भइरहेको पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ परिवरà¥à¤¤à¤¨ हà¥à¤¨à¥‡à¤›à¥ˆà¤¨:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (%s कारणले) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"चेतावनी: निमà¥à¤¨ आवशà¥à¤¯à¤• पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ हटाइनेछनॠ।\n"
+"तपाईठके गरिरहेको यकिन नभà¤à¤¸à¤®à¥à¤® यो काम गरिने छैन!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu सà¥à¤¤à¤° वृदà¥à¤§à¤¿ गरियो, %lu नयाठसà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu पà¥à¤¨: सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरियो, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu सà¥à¤¤à¤° कम गरियो, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu हटाउन र %lu सà¥à¤¤à¤° वृदà¥à¤§à¤¿ गरिà¤à¤¨ ।\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu पूरà¥à¤£à¤°à¥à¤ªà¤²à¥‡ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भà¤à¤¨ र हटाइà¤à¤¨ ।\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr ""
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "संकलन तà¥à¤°à¥à¤Ÿà¤¿ रिजेकà¥à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤° गरिदैछ..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr "असफल भयो ।"
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤° गरà¥à¤¨ असकà¥à¤·à¤® भयो"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "सà¥à¤¤à¤° वृदà¥à¤§à¤¿ सेटलाई नà¥à¤¯à¥‚नतम गरà¥à¤¨ असकà¥à¤·à¤® भयो"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr "काम भयो"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "यी सà¥à¤§à¤¾à¤° गरà¥à¤¨ तपाईà¤à¤²à¥‡ 'apt-get -f install' चलाउन परà¥à¤› ।"
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "नभेटिà¤à¤•à¤¾ निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥‚ । -f पà¥à¤°à¤¯à¥‹à¤— गरेर पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।"
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• आदेशले कà¥à¤¨à¥ˆ तरà¥à¤•à¤¹à¤°à¥‚ लिदैन"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "सà¥à¤¤à¤° वृदà¥à¤§à¤¿ गणना गरिदैछ..."
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿,सबै सà¥à¤¤à¤°à¤µà¥ƒà¤¦à¥à¤§à¤¿à¤²à¥‡ उतà¥à¤¤à¤® गà¥à¤£ नषà¥à¤Ÿ गरà¥à¤¦à¤›"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "काम भयो"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr " %s मा %s पà¥à¤¨:नामकरण असफल भयो"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "हानà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%s (%sB/s) मा %sB मा तानियो\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [काम गरिरहेको]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"मेडिया परिवरà¥à¤¤à¤¨: कृपया डिसà¥à¤• लेबà¥à¤² डà¥à¤°à¤¾à¤‡à¤­ '%s' मा घà¥à¤¸à¤¾à¤‰à¤¨à¥à¤¹à¥‹à¤¸à¥\n"
+" '%s'\n"
+"र इनà¥à¤Ÿà¤° थिचà¥à¤¨à¥à¤¹à¥‹à¤¸à¥\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "%s पढà¥à¤¨ असफल भयो"
@@ -1658,34 +1620,34 @@ msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾à¤®à¤¾ IPC पाइप सà¤
msgid "Connection closed prematurely"
msgstr "जडान असमायिक बनà¥à¤¦ भयो"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "खराब पूरà¥à¤µà¤¨à¤¿à¤°à¥à¤§à¤¾à¤°à¤£ सेटिङà¥à¤—!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "निरनà¥à¤¤à¤°à¤¤à¤¾ दिन इनà¥à¤Ÿà¤° थिचà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।"
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr ""
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "अनपà¥à¤¯à¤¾à¤• गरà¥à¤¦à¤¾ केही तà¥à¤°à¥à¤Ÿà¤¿à¤¹à¤°à¥‚ देखा परà¥à¤¯à¥‹ । म कनफिगर गरà¥à¤¨ गइरहेको छà¥"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भà¤à¤•à¥‹ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ । यसले नकà¥à¤•à¤²à¥€ तà¥à¤°à¥à¤Ÿà¤¿à¤¹à¤°à¥à¤®à¤¾ नतिजा गरà¥à¤¨ सकà¥à¤›"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "वा तà¥à¤°à¥à¤Ÿà¤¿ हरटाइरहेको निरà¥à¤­à¤°à¤¤à¤¾à¤¹à¤°à¥à¤²à¥‡ गरेको हो । यो ठीक छ, मातà¥à¤° तà¥à¤°à¥à¤Ÿà¤¿à¤¹à¤°à¥‚"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1936,36 +1898,36 @@ msgstr "लिङà¥à¤• पढà¥à¤¨ असफल %s"
msgid "Failed to unlink %s"
msgstr "अनलिङà¥à¤• गरà¥à¤¨ असफल %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** %s मा %s लिङà¥à¤• असफल भयो"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr "यस %sB हिटको डि लिङà¥à¤• सिमा।\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "संगà¥à¤°à¤¹ संग कà¥à¤¨à¥ˆ पà¥à¤¯à¤¾à¤•à¥‡à¤œ फाà¤à¤Ÿ छैन"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s संग कà¥à¤¨à¥ˆ अधिलेखन पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿà¤¿ छैन\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s संभारकरà¥à¤¤à¤¾ %s हो %s होइन\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, fuzzy, c-format
msgid " %s has no source override entry\n"
msgstr " %s संग कà¥à¤¨à¥ˆ अधिलेखन पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿà¤¿ छैन\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, fuzzy, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s संग कà¥à¤¨à¥ˆ अधिलेखन पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿà¤¿ छैन\n"
@@ -2044,7 +2006,7 @@ msgstr "समसà¥à¤¯à¤¾ अनलिङà¥à¤• भइरहेछ %s"
msgid "Failed to rename %s to %s"
msgstr " %s मा %s पà¥à¤¨:नामकरण असफल भयो"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2113,7 +2075,7 @@ msgstr "संगà¥à¤°à¤¹ दूषित भयो"
msgid "Tar checksum failed, archive corrupted"
msgstr "टार चेकसम असफल भयो, संगà¥à¤°à¤¹ दूषित भयो"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "अजà¥à¤žà¤¾à¤¤ टार हेडर पà¥à¤°à¤•à¤¾à¤° %u, सदसà¥à¤¯ %s"
@@ -2237,22 +2199,17 @@ msgid "Unable to stat %s"
msgstr "%s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असकà¥à¤·à¤® भयो"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "यो वैध DEB संगà¥à¤°à¤¹ होइन, '%s' सदसà¥à¤¯ हराइरहेछ"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, fuzzy, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "यो वैध DEB संगà¥à¤°à¤¹ होइन, यो संग '%s' वा '%s' सदसà¥à¤¯ छैन"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "आनà¥à¤¤à¤°à¥€à¤• तà¥à¤°à¥à¤Ÿà¤¿, सदसà¥à¤¯ तोकà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨ %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "पद वरà¥à¤£à¤¨ गरà¥à¤¨ नसकिने नियनà¥à¤¤à¥à¤°à¤£ फाइल"
@@ -2310,85 +2267,85 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "चयन %s फेला पारà¥à¤¨ सकिà¤à¤¨"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "नचिनिà¤à¤•à¥‹ टाइप संकà¥à¤·à¤¿à¤ªà¥à¤¤ रà¥à¤ª: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "कनफिगरेसन फाइल खोलिदैछ %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: बनà¥à¤¦ कà¥à¤¨à¥ˆ नाम बिना सà¥à¤°à¥‚ हà¥à¤¨à¥à¤› ।"
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: वैरà¥à¤ª गरिà¤à¤•à¥‹ टà¥à¤¯à¤¾à¤—"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: मान पछाडि अतिरिकà¥à¤¤ जंक"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: निरà¥à¤¦à¥‡à¤¶à¤¨à¤¹à¤°à¥‚ माथिलà¥à¤²à¥‹ तहबाट मातà¥à¤° हà¥à¤¨à¥à¤›"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: अति धेरै नेसà¥à¤Ÿà¥‡à¤¡ समावेश गरà¥à¤¦à¤›"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: यहाठबाट समावेश गरेको"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: समरà¥à¤¥à¤¨ नभà¤à¤•à¥‹ डाइरेकà¥à¤Ÿà¤¿à¤­ '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: निरà¥à¤¦à¥‡à¤¶à¤¨à¤¹à¤°à¥‚ माथिलà¥à¤²à¥‹ तहबाट मातà¥à¤° हà¥à¤¨à¥à¤›"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u:फाइलको अनà¥à¤¤à¥à¤¯à¤®à¤¾ अतिरिकà¥à¤¤ जंक"
@@ -2413,48 +2370,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... गरियो"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "आदेश लाइन विकलà¥à¤ª '%c' [%s बाट] जà¥à¤žà¤¾à¤¤ छैन ।"
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "आदेश लाइन विकलà¥à¤ª %s बà¥à¤à¤¿à¤à¤¨"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "आदेश लाइन विकलà¥à¤ª %s बूलियन छैन"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "विकलà¥à¤ª %s लाई à¤à¤‰à¤Ÿà¤¾ तरà¥à¤•à¤•à¥‹ आवशà¥à¤¯à¤•à¤¤à¤¾ परà¥à¤¦à¤› ।"
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "विकलà¥à¤ª %s: कनफिगरेसन वसà¥à¤¤à¥ विशिषà¥à¤Ÿà¤¿à¤•à¤°à¤£ संग à¤à¤‰à¤Ÿà¤¾ =<val> हà¥à¤¨à¥à¤ªà¤°à¥à¤› ।"
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "विकलà¥à¤ª %s लाई à¤à¤‰à¤Ÿà¤¾ इनà¥à¤Ÿà¤¿à¤œà¤° तरà¥à¤•à¤•à¥‹ आवशà¥à¤¯à¤• परà¥à¤¦à¤›, '%s' होइन"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "विकलà¥à¤ª '%s' अति लामो छ"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "अरà¥à¤¥ %s बà¥à¤à¤¿à¤à¤¨, सतà¥à¤¯ वा à¤à¥‚ठो पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।"
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "अवैध सञà¥à¤šà¤¾à¤²à¤¨ %s"
@@ -2468,116 +2425,116 @@ msgstr "माउनà¥à¤Ÿ बिनà¥à¤¦à¥ %s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ à¤
msgid "Failed to stat the cdrom"
msgstr "सिडी रोम सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असफल भयो"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "फाइल बनà¥à¤¦ गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "तालà¥à¤šà¤¾ मारिà¤à¤•à¥‹ फाइल मातà¥à¤° पढà¥à¤¨à¤•à¥‹ लागि तालà¥à¤šà¤¾ मारà¥à¤¨ पà¥à¤°à¤¯à¥‹à¤— गरिà¤à¤•à¥‹ छैन %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "तालà¥à¤šà¤¾ मारिà¤à¤•à¥‹ फाइल खोलà¥à¤¨ सकिà¤à¤¨ %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "nfs माउनà¥à¤Ÿ गरिà¤à¤•à¥‹ लक फाइलको लागि लक पà¥à¤°à¤¯à¥‹à¤— गरिà¤à¤•à¥‹ छैन %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "तालà¥à¤šà¤¾ पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ सकिà¤à¤¨ %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ %s ले खणà¥à¤¡à¤¿à¤•à¤°à¤£ गलà¥à¤¤à¤¿ पà¥à¤°à¤¾à¤ªà¥à¤¤ भयो ।"
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ %s ले खणà¥à¤¡à¤¿à¤•à¤°à¤£ गलà¥à¤¤à¤¿ पà¥à¤°à¤¾à¤ªà¥à¤¤ भयो ।"
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ %s ले à¤à¤‰à¤Ÿà¤¾ तà¥à¤°à¥à¤Ÿà¤¿ कोड फरà¥à¤•à¤¾à¤¯à¥‹ (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ %s अनपेकà¥à¤·à¤¿à¤¤ बनà¥à¤¦ भयो"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "फाइल %s खोलà¥à¤¨ सकिà¤à¤¨"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "%s को लागि पाइप खोलà¥à¤¨ सकिà¤à¤¨"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ IPC सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¨ असफल"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "सङà¥à¤•à¥à¤šà¤¨à¤•à¤°à¥à¤¤à¤¾ कारà¥à¤¯à¤¾à¤¨à¥à¤µà¤¯à¤¨ गरà¥à¤¨ असफल भयो"
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "पडà¥à¤¨à¥à¤¹à¥‹à¤¸à¥, अहिले समà¥à¤® %lu पढà¥à¤¨ छ तर कà¥à¤¨à¥ˆ बाà¤à¤•à¥€ छैन"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "लेखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥, अहिले समà¥à¤® %lu लेखà¥à¤¨ छ तर सकिदैन "
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "फाइल बनà¥à¤¦ गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "फाइल गà¥à¤ªà¥à¤¤à¤¿à¤•à¤°à¤£ गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "फाइल अनलिङà¥à¤• गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "फाइल गà¥à¤ªà¥à¤¤à¤¿à¤•à¤°à¤£ गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾"
@@ -2696,12 +2653,12 @@ msgstr "%s खोलà¥à¤¨ असफल"
msgid "Failed to write temporary StateFile %s"
msgstr "फाइल %s लेखà¥à¤¨ असफल भयो"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ फाइल पद वरà¥à¤£à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® %s (१)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ फाइल पद वरà¥à¤£à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® %s (२)"
@@ -2776,19 +2733,19 @@ msgstr "वैरà¥à¤ªà¥à¤¯ लाइन %u सà¥à¤°à¥‹à¤¤ सूचिमा
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "सà¥à¤°à¥‹à¤¤ सूची %s भितà¥à¤° %u लाइनमा टाइप '%s' जà¥à¤žà¤¾à¤¤ छैन"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "फाइल %s खोलà¥à¤¨ सकिà¤à¤¨"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2810,7 +2767,7 @@ msgid ""
"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s पà¥à¤¨:सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨ चाहनà¥à¤›, तर यसको लागि मैले à¤à¤‰à¤Ÿà¤¾ संगà¥à¤°à¤¹ फेला पारà¥à¤¨ सकिन ।"
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2818,19 +2775,10 @@ msgstr ""
"तà¥à¤°à¥à¤Ÿà¤¿, pkgProblemResolver:: समाधानले विचà¥à¤›à¥‡à¤¦à¤¨ सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¦à¤›, यो भइरहेको पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥à¤•à¥‹ "
"कारणले गरà¥à¤¦à¤¾ हो ।"
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "समसà¥à¤¯à¤¾à¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤°à¥à¤¨ असकà¥à¤·à¤® भयो, तपाईà¤à¤²à¥‡ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥ भाà¤à¤šà¥à¤¨à¥à¤­à¤¯à¥‹ ।"
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"केही अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•à¤¾ फाइलहरू डाउनलोड गरà¥à¤¨ असफल भयो, तिनीहरू उपेकà¥à¤·à¤¿à¤¤ भà¤, वा सटà¥à¤Ÿà¤¾à¤®à¤¾ पà¥à¤°à¤¾à¤¨à¥‹ "
-"à¤à¤‰à¤Ÿà¤¾ पà¥à¤°à¤¯à¥‹à¤— गरियो ।"
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2873,12 +2821,12 @@ msgstr "विधि %s सही रà¥à¤ªà¤²à¥‡ सà¥à¤°à¥‚ हà¥à¤¨ सकà
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "कृपया डिसà¥à¤• लेबà¥à¤²: '%s' डà¥à¤°à¤¾à¤‡à¤­ '%s'मा घà¥à¤¸à¤‰à¤¨à¥à¤¹à¥‹à¤¸à¥ र इनà¥à¤Ÿà¤° थिचà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । "
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "पà¥à¤¯à¤¾à¤•à¤¿à¤™à¥à¤— पà¥à¤°à¤£à¤¾à¤²à¥€ '%s' समरà¥à¤¥à¤¿à¤¤ छैन"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "उपयà¥à¤•à¥à¤¤ पà¥à¤¯à¤¾à¤•à¤¿à¤™à¥à¤— पà¥à¤°à¤£à¤¾à¤²à¥€ पà¥à¤°à¤•à¤¾à¤° निरà¥à¤§à¤¾à¤°à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® भयो"
@@ -2910,17 +2858,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "पà¥à¤°à¤¾à¤¥à¤®à¤¿à¤•à¤¤à¤¾ फाइलमा अवैध रेकरà¥à¤¡, कà¥à¤¨à¥ˆ पà¥à¤¯à¤¾à¤•à¥‡à¤œ हेडर छैन"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "पिन टाइप %s बà¥à¤à¥à¤¨ सकिà¤à¤¨ "
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "पिनको लागि कà¥à¤¨à¥ˆ पà¥à¤°à¤¾à¤¥à¤®à¤¿à¤•à¤¤à¤¾ (वा शूनà¥à¤¯) निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ छैन"
@@ -2988,45 +2936,49 @@ msgstr "सà¥à¤°à¥‹à¤¤ कà¥à¤¯à¤¾à¤¸ बचत गरà¥à¤¦à¤¾ IO तà¥à¤°à¥
msgid "rename failed, %s (%s -> %s)."
msgstr "पà¥à¤¨:नामकरण असफल गरियो, %s (%s -> %s) ।"
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum मेल भà¤à¤¨"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
#, fuzzy
msgid "Hash Sum mismatch"
msgstr "MD5Sum मेल भà¤à¤¨"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "साइज मेल खाà¤à¤¨"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "अवैध सञà¥à¤šà¤¾à¤²à¤¨ %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ फाइल पद वरà¥à¤£à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® %s (१)"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "निमà¥à¤¨ कà¥à¤žà¥à¤œà¥€ IDs को लागि कà¥à¤¨à¥ˆ सारà¥à¤µà¤œà¤¨à¤¿à¤• कà¥à¤žà¥à¤œà¥€ उपलबà¥à¤§ छैन:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3034,12 +2986,12 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3048,31 +3000,23 @@ msgstr ""
"%s पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤•à¥‹ लागि मैले फाइल सà¥à¤¥à¤¿à¤¤ गरà¥à¤¨ सकिन । यसको मतलब तपाईà¤à¤²à¥‡ मà¥à¤¯à¤¾à¤¨à¥à¤²à¥à¤²à¥€ यो पà¥à¤¯à¤¾à¤•à¥‡à¤œ "
"निशà¥à¤šà¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । (arch हराà¤à¤°à¤¹à¥‡à¤•à¥‹ कारणले) "
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"%s पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤•à¥‹ लागि मैले फाइल सà¥à¤¥à¤¿à¤¤ गरà¥à¤¨ सकिन । यसको मतलब तपाईà¤à¤²à¥‡ मà¥à¤¯à¤¾à¤¨à¥à¤²à¥à¤²à¥€ यो पà¥à¤¯à¤¾à¤•à¥‡à¤œ "
-"निशà¥à¤šà¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•à¤¾ फाइलहरू दूषित भठ। पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s को लागि कà¥à¤¨à¥ˆ फाइलनाम: फाà¤à¤Ÿ छैन ।"
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "साइज मेल खाà¤à¤¨"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ फाइल पद वरà¥à¤£à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® %s (१)"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "दà¥à¤°à¤·à¥à¤Ÿà¤¬à¥à¤¯, %s को सटà¥à¤Ÿà¤¾ %s चयन भइरहेछ\n"
@@ -3214,49 +3158,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "MD5Sum मेल भà¤à¤¨"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr " '%s' को लागि '%s' निषà¥à¤•à¤¾à¤¶à¤¨ फेला पारà¥à¤¨ सकिà¤à¤¨"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr " '%s' को लागि '%s' संसà¥à¤•à¤°à¤£ फेला पारà¥à¤¨ सकिà¤à¤¨"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ फेला पारà¥à¤¨ सकिà¤à¤¨ %s"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ फेला पारà¥à¤¨ सकिà¤à¤¨ %s"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3281,127 +3225,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"केही अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•à¤¾ फाइलहरू डाउनलोड गरà¥à¤¨ असफल भयो, तिनीहरू उपेकà¥à¤·à¤¿à¤¤ भà¤, वा सटà¥à¤Ÿà¤¾à¤®à¤¾ पà¥à¤°à¤¾à¤¨à¥‹ "
+"à¤à¤‰à¤Ÿà¤¾ पà¥à¤°à¤¯à¥‹à¤— गरियो ।"
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, fuzzy, c-format
msgid "Installing %s"
msgstr " %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr " %s कनफिगर गरिदैछ"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr " %s हटाइदैछ"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr " %s पूरà¥à¤£ रà¥à¤ªà¤²à¥‡ हटà¥à¤¯à¥‹"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr ""
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, fuzzy, c-format
msgid "Directory '%s' missing"
msgstr "आंशिक सूचिहरà¥à¤•à¥‹ डाइरेकà¥à¤Ÿà¥à¤°à¥€ %s हराइरहेछ ।"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "फाइल %s खोलà¥à¤¨ सकिà¤à¤¨"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr " %s तयार गरिदैछ"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr " %s अनपà¥à¤¯à¤¾à¤• गरिदैछ"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr " %s कनफिगर गरà¥à¤¨ तयार गरिदैछ"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr " %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr " %s हटाउन तयार गरिदैछ"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr " %s हटà¥à¤¯à¥‹"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr " %s पूरà¥à¤£ रà¥à¤ªà¤²à¥‡ हटाउन तयार गरिदैछ"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr " %s पूरà¥à¤£ रà¥à¤ªà¤²à¥‡ हटà¥à¤¯à¥‹"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr " %s मा लेखà¥à¤¨ असकà¥à¤·à¤®"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3431,6 +3404,87 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "दà¥à¤°à¤·à¥à¤Ÿà¤¬à¥à¤¯, रिजेकà¥à¤¸ '%s' को लागि %s चयन गरिदैछ\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "दà¥à¤°à¤·à¥à¤Ÿà¤¬à¥à¤¯, रिजेकà¥à¤¸ '%s' को लागि %s चयन गरिदैछ\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s ...दà¥à¤µà¤¾à¤°à¤¾ उपलबà¥à¤§ गराइà¤à¤•à¥‹ अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•à¥‡à¤œ हो:\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "उमेदà¥à¤µà¤¾à¤° संसà¥à¤•à¤°à¤£à¤¹à¤°à¥‚"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "तपाईà¤à¤²à¥‡ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरà¥à¤¨ सà¥à¤ªà¤·à¥à¤Ÿ रà¥à¤ªà¤®à¤¾ à¤à¤‰à¤Ÿà¤¾ चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।"
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s उपलबà¥à¤§ छैन, तर अरà¥à¤•à¥‹ पà¥à¤¯à¤¾à¤•à¥‡à¤œ दà¥à¤µà¤¾à¤°à¤¾ सिफारिस पà¥à¤¯à¤¾à¤•à¥‡à¤œ हो ।\n"
+#~ "यसको मतलब पà¥à¤¯à¤¾à¤•à¥‡à¤œ हराइरहेको पà¥à¤¯à¤¾à¤•à¥‡à¤œ, बेकायम भयो\n"
+#~ " अरà¥à¤•à¥‹ सà¥à¤°à¥‹à¤¤à¤¬à¤¾à¤Ÿ मातà¥à¤° उपलबà¥à¤§ हà¥à¤¨à¥à¤›\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "जे भठपनि निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ले यसलाई बदलà¥à¤›:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s संग कà¥à¤¨à¥ˆ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ उमेदà¥à¤µà¤¾à¤° छैन"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भà¤à¤¨, तà¥à¤¯à¤¸à¥ˆà¤²à¥‡ हटेन\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भà¤à¤¨, तà¥à¤¯à¤¸à¥ˆà¤²à¥‡ हटेन\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "दà¥à¤°à¤·à¥à¤Ÿà¤¬à¥à¤¯, %s को सटà¥à¤Ÿà¤¾ %s चयन भइरहेछ\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "%s फडà¥à¤•à¤¿à¤¦à¥ˆà¤›, यो पहिलà¥à¤¯à¥ˆ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो र सà¥à¤¤à¤°à¤µà¥ƒà¤¦à¥à¤§à¤¿ सेट भà¤à¤•à¥‹ छैन ।\n"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "%s फडà¥à¤•à¤¿à¤¦à¥ˆà¤›, यो पहिलà¥à¤¯à¥ˆ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ भयो र सà¥à¤¤à¤°à¤µà¥ƒà¤¦à¥à¤§à¤¿ सेट भà¤à¤•à¥‹ छैन ।\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr " %s को पà¥à¤¨: सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ समà¥à¤­à¤µ छैन, यो डाउनलोड हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨ ।\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s पहिलà¥à¤¯à¥ˆ नयाठसंसà¥à¤•à¤°à¤£ हो ।\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "%s को लागि चयन भà¤à¤•à¥‹ संसà¥à¤•à¤°à¤£ %s (%s)\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "%s को लागि चयन भà¤à¤•à¥‹ संसà¥à¤•à¤°à¤£ %s (%s)\n"
+
+#, fuzzy
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "यो वैध DEB संगà¥à¤°à¤¹ होइन, यो संग '%s' वा '%s' सदसà¥à¤¯ छैन"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum मेल भà¤à¤¨"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "%s पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤•à¥‹ लागि मैले फाइल सà¥à¤¥à¤¿à¤¤ गरà¥à¤¨ सकिन । यसको मतलब तपाईà¤à¤²à¥‡ मà¥à¤¯à¤¾à¤¨à¥à¤²à¥à¤²à¥€ यो पà¥à¤¯à¤¾à¤•à¥‡à¤œ "
+#~ "निशà¥à¤šà¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।"
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "कनफिगरेसन फाइल खोलिदैछ %s"
diff --git a/po/nl.po b/po/nl.po
index 11422b003..54225fbaf 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.8.15.9\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2011-12-05 17:10+0100\n"
"Last-Translator: Jeroen Schot <schot@a-eskwadraat.nl>\n"
"Language-Team: Debian l10n Dutch <debian-l10n-dutch@lists.debian.org>\n"
@@ -21,150 +21,152 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Pakket %s versie %s heeft een niet-voldane vereiste:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Totaal aantal pakketnamen: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Totaal aantal pakketstructuren: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Normale pakketten: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Zuiver virtuele pakketten: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Losstaande virtuele pakketten: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Gemengde virtuele pakketten: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Ontbrekend: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Totaal aantal verschillende versies: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Totaal aantal verschillende beschrijvingen: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Totaal aantal vereisten: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Totaal aantal versie/bestand-relaties: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Totaal aantal Beschrijving/bestand-relaties: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Totaal aantal 'Voorziet'-toewijzingen "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Totaal aantal geglobde strings: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Totale hoeveelheid vereisten-versieruimte: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Totale onbenutte ruimte: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Totale hoeveelheid verantwoorde ruimte: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Pakketbestand %s is niet meer gesynchroniseerd."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Geen pakketten gevonden"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "U dient precies één zoekpatroon op te geven"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Kan pakket %s niet vinden"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Pakketbestanden:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Cache loopt niet synchroon, kan pakketbestand niet 'x-ref'-en"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Vastgepinde pakketten:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(niet gevonden)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Geïnstalleerd: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Kandidaat: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(geen)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Pakketpin: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Versietabel:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s voor %s gecompileerd op %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -239,37 +241,37 @@ msgstr ""
"Zie de man-pagina's van apt-cache(8) en apt.conf(5) voor meer informatie.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
"Gelieve een naam voor deze schijf op te geven, bijvoorbeeld 'Debian 5.0.3 "
"Schijf 1'"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Aankoppelen van '%s' op '%s' is mislukt"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Dit proces dient herhaald te worden voor alle CD's in uw set."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argumenten niet in paren"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -298,608 +300,57 @@ msgstr ""
" -c=? Lees dit configuratiebestand.\n"
" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[J/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[j/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "J"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Regex-compilatiefout - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "De volgende pakketten hebben niet-voldane vereisten:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "maar %s is geïnstalleerd"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "maar %s zal geïnstalleerd worden"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "maar het is niet installeerbaar"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "maar het is een virtueel pakket"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "maar het is niet geïnstalleerd"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "maar het zal niet geïnstalleerd worden"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " of"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "De volgende pakketten zullen VERWIJDERD worden:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "De volgende pakketten zijn achtergehouden:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "De volgende pakketten zullen opgewaardeerd worden:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "De volgende pakketten zullen GEDEGRADEERD worden:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "De volgende vastgehouden pakketten zullen gewijzigd worden:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (vanwege %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"WAARSCHUWING: De volgende essentiële pakketten zullen verwijderd worden.\n"
-"Dit dient NIET gedaan te worden tenzij u precies weet wat u doet!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu pakketten opgewaardeerd, %lu pakketten nieuw geïnstalleerd, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu opnieuw geïnstalleerd, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu gedegradeerd, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Let op, '%s' wordt geselecteerd omwille van de taak '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, 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:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Geïnstalleerd]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr "[Niet de kandidaat-versie]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "U dient er één expliciet te selecteren voor installatie."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Pakket %s is niet beschikbaar, hoewel er naar verwezen wordt door\n"
-"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:729
-msgid "However the following packages replace it:"
-msgstr "Echter, de volgende pakketten vervangen dit:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Pakket '%s' heeft geen kandidaat voor installatie"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Virtuele pakketten zoals '%s' kunnen niet worden verwijderd\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n"
-
-#: cmdline/apt-get.cc:817
-#, 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:847
-#, 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:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"%s wordt overgeslagen, het is niet geïnstalleerd en alleen opwaardering is "
-"gevraagd.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s is reeds de nieuwste versie.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s is ingesteld voor handmatige installatie.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Versie '%s' (%s) geselecteerd voor '%s'\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Versie '%s' (%s) geselecteerd voor '%s'\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Vereisten worden gecorrigeerd..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " mislukt."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Kan vereisten niet corrigeren"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Kon de verzameling op te waarderen pakketten niet minimaliseren"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Klaar"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Er zijn vereisten waaraan niet voldaan is. Probeer -f te gebruiken."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr ""
-"WAARSCHUWING: De volgende pakketten kunnen niet geauthentificeerd worden:"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Authentificatiewaarschuwing is genegeerd.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Wilt u deze pakketten installeren zonder verificatie?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Sommige pakketten konden niet geauthentificeerd worden"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Interne fout, InstallPackages is aangeroepen met defecte pakketten!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Interne fout, rangschikken is niet voltooid"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Merkwaardig... De groottes kwamen niet overeen, gelieve apt@packages.debian."
-"org te mailen"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Er moeten %sB/%sB aan archieven opgehaald worden.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Er moeten %sB aan archieven opgehaald worden.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Door deze operatie zal er %sB extra schijfruimte gebruikt worden.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "U heeft onvoldoende vrije schijfruimte op %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "'Trivial Only' is opgegeven, dit is echter geen triviale bewerking."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Ja, doe wat ik zeg!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"U staat op het punt om iets te doen wat mogelijk schadelijk is.\n"
-"Als u wilt doorgaan, dient u de zin '%s' in te typen.\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Afbreken."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Wilt u doorgaan?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Ophalen van %s is mislukt %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Ophalen van sommige bestanden is mislukt"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Ophalen klaar en alleen-ophalen-modus staat aan"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --"
-"fix-missing proberen?"
-
-#: cmdline/apt-get.cc:1414
-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:1419
-msgid "Unable to correct missing packages."
-msgstr "Geen oplossing voor de missende pakketten gevonden."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Installatie wordt afgebroken."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Het volgende pakket is van uw systeem verdwenen omdat\n"
-"alle bestanden zijn overschreven door andere pakketten:"
-msgstr[1] ""
-"De volgende pakketten zijn van uw systeem verdwenen omdat\n"
-"alle bestanden zijn overschreven door andere pakketten:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Let op: Dit wordt automatische en bewust door dpkg gedaan."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Negeer niet beschikbare doelrelease '%s' van pakket '%s'"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "'%s' wordt genomen als bronpakket in plaats van '%s'\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Negeer niet beschikbare versie '%s' van pakket '%s'"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "De opdracht 'update' aanvaard geen argumenten"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, het lijkt erop dat de AutoRemover iets vernietigd heeft, dit zou\n"
-"niet mogen kunnen. Gelieve een bug-rapport voor apt in te sturen."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "De volgende informatie helpt u mogelijk verder:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Het volgende pakket is automatisch geïnstalleerd en is niet langer nodig:"
-msgstr[1] ""
-"De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer "
-"nodig:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "%lu pakket is automatisch geïnstalleerd en is niet langer nodig.\n"
-msgstr[1] ""
-"%lu pakketten zijn automatisch geïnstalleerd en zijn niet langer nodig.\n"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "U kunt deze verwijderen via 'apt-get autoremove'."
-msgstr[1] "U kunt deze verwijderen via 'apt-get autoremove'."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Interne fout, AllUpgrade heeft dingen stukgemaakt"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Er zijn niet-voldane vereisten. U kunt best 'apt-get -f install' uitvoeren "
-"zonder pakketten op te geven, (of u kunt zelf een oplossing specificeren)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Sommige pakketten konden niet geïnstalleerd worden. Dit kan betekenen dat u\n"
-"een onmogelijke situatie gevraagd hebt of dat u de 'unstable'-distributie \n"
-"gebruikt en sommige benodigde pakketten nog vastzitten in 'incoming'."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Niet-werkende pakketten:"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "De volgende extra pakketten zullen geïnstalleerd worden:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Voorgestelde pakketten:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Aanbevolen pakketten:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Kon pakket %s niet vinden"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s is ingesteld voor handmatige installatie.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s is ingesteld op automatische geïnstalleerd.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Opwaardering wordt doorgerekend... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Mislukt"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Klaar"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Kon de ophaalmap niet vergrendelen"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Kan geen bronpakket vinden voor %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -909,7 +360,7 @@ msgstr ""
"'%s' op:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, fuzzy, c-format
msgid ""
"Please use:\n"
@@ -921,87 +372,97 @@ msgstr ""
"om de nieuwste (mogelijk nog niet uit uitgebrachte) versie van het pakket op "
"te halen.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "U heeft niet voldoende vrije schijfruimte op %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Moet %sB aan bronarchieven ophalen.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Ophalen bron %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Ophalen van sommige archieven is mislukt."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Ophalen klaar en alleen-ophalen-modus staat aan"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Uitpakopdracht '%s' is mislukt.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Bouwopdracht '%s' is mislukt.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Dochterproces is mislukt"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s heeft geen bouwvereisten.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1010,7 +471,7 @@ msgstr ""
"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s "
"onvindbaar is"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1019,14 +480,14 @@ msgstr ""
"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s "
"onvindbaar is"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1035,7 +496,7 @@ msgstr ""
"De vereiste %s van pakket %s kan niet voldaan worden omdat er geen "
"beschikbare versies zijn van pakket %s die aan de versievereisten voldoen"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1044,30 +505,30 @@ msgstr ""
"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s "
"onvindbaar is"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Bouwvereisten voor %s konden niet voldaan worden."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Verwerken van de bouwvereisten is mislukt"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Er wordt verbinding gemaakt met %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Ondersteunde modules:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1156,102 +617,53 @@ msgstr ""
"voor meer informatie en opties.\n"
" Deze APT heeft Super Koe kracht.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"OPMERKING: Dit is een simulatie!\n"
-" Voor daadwerkelijke uitvoering heeft apt-get beheerdersrechten nodig.\n"
-" Houd er ook rekening mee ook dat vergrendeling is uitgeschakeld en\n"
-" vertrouw dus niet op de relevantie voor de werkelijke huidige situatie!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Geraakt "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Ophalen:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Genegeerd "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Fout "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%sB opgehaald in %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Bezig]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Medium wisselen: Gelieve de schijf met label\n"
-" '%s'\n"
-"in het station '%s' te plaatsen en op 'enter' te drukken\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "maar het is niet geïnstalleerd"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s is ingesteld voor handmatige installatie.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s is ingesteld op automatische geïnstalleerd.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s is reeds de nieuwste versie.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s is reeds de nieuwste versie.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Er is gewacht op %s, maar die kwam niet"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s is ingesteld voor handmatige installatie.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Openen van %s is mislukt"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1273,6 +685,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1371,8 +800,8 @@ msgstr "Verbinding is verlopen"
msgid "Server closed the connection"
msgstr "Verbinding is verbroken door de server"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Leesfout"
@@ -1385,8 +814,8 @@ msgid "Protocol corruption"
msgstr "Protocolcorruptie"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Schrijffout"
@@ -1398,6 +827,10 @@ msgstr "Kon geen socket aanmaken"
msgid "Could not connect data socket, connection timed out"
msgstr "Kon de datasocket niet verbinden, de verbinding verliep"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Mislukt"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Kon de passieve socket niet verbinden."
@@ -1440,7 +873,7 @@ msgstr "Datasocket verbinding is verlopen"
msgid "Unable to accept connection"
msgstr "Kan de verbinding niet aanvaarden"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Probleem bij het hashen van het bestand"
@@ -1574,84 +1007,609 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Fout bij het schrijven naar het bestand"
+
+#: methods/http.cc:533
+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:535
+msgid "Error reading from server"
+msgstr "Fout bij het lezen van de server"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Fout bij het schrijven naar bestand"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Selectie is mislukt"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Verbinding verliep"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Fout bij het schrijven naar het uitvoerbestand"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Wachtend op de kopteksten"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Foute koptekstregel"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "Er is door de HTTP server een ongeldige 'reply'-koptekst verstuurd"
-#: methods/http.cc:606
+#: methods/server.cc:176
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:621
+#: methods/server.cc:199
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:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "De bereik-ondersteuning van deze HTTP-server werkt niet"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Onbekend datumformaat"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Selectie is mislukt"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Foute koptekstdata"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Verbinding verliep"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Verbinding mislukt"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Fout bij het schrijven naar het uitvoerbestand"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Interne fout"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Fout bij het schrijven naar bestand"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Fout bij het schrijven naar het bestand"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Interne fout, InstallPackages is aangeroepen met defecte pakketten!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld."
+
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Interne fout, rangschikken is niet voltooid"
+
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
-"Fout bij het lezen van de server, andere kant heeft de verbinding gesloten"
+"Merkwaardig... De groottes kwamen niet overeen, gelieve apt@packages.debian."
+"org te mailen"
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Fout bij het lezen van de server"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Er moeten %sB/%sB aan archieven opgehaald worden.\n"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Foute koptekstdata"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Er moeten %sB aan archieven opgehaald worden.\n"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Verbinding mislukt"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, 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"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Interne fout"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Door deze operatie zal er %sB schijfruimte vrijkomen.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "U heeft onvoldoende vrije schijfruimte op %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Er zijn problemen en -y was gebruikt zonder --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "'Trivial Only' is opgegeven, dit is echter geen triviale bewerking."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Ja, doe wat ik zeg!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"U staat op het punt om iets te doen wat mogelijk schadelijk is.\n"
+"Als u wilt doorgaan, dient u de zin '%s' in te typen.\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Afbreken."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Wilt u doorgaan?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Ophalen van sommige bestanden is mislukt"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --"
+"fix-missing proberen?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing en medium wisselen wordt op dit moment niet ondersteund"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Geen oplossing voor de missende pakketten gevonden."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Installatie wordt afgebroken."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Het volgende pakket is van uw systeem verdwenen omdat\n"
+"alle bestanden zijn overschreven door andere pakketten:"
+msgstr[1] ""
+"De volgende pakketten zijn van uw systeem verdwenen omdat\n"
+"alle bestanden zijn overschreven door andere pakketten:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Let op: Dit wordt automatische en bewust door dpkg gedaan."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "We mogen geen dingen verwijderen, kan AutoRemover niet starten"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, het lijkt erop dat de AutoRemover iets vernietigd heeft, dit zou\n"
+"niet mogen kunnen. Gelieve een bug-rapport voor apt in te sturen."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "De volgende informatie helpt u mogelijk verder:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Het volgende pakket is automatisch geïnstalleerd en is niet langer nodig:"
+msgstr[1] ""
+"De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer "
+"nodig:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "%lu pakket is automatisch geïnstalleerd en is niet langer nodig.\n"
+msgstr[1] ""
+"%lu pakketten zijn automatisch geïnstalleerd en zijn niet langer nodig.\n"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "U kunt deze verwijderen via 'apt-get autoremove'."
+msgstr[1] "U kunt deze verwijderen via 'apt-get autoremove'."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+"U wilt waarschijnlijk 'apt-get -f install' uitvoeren om volgende op te "
+"lossen:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Er zijn niet-voldane vereisten. U kunt best 'apt-get -f install' uitvoeren "
+"zonder pakketten op te geven, (of u kunt zelf een oplossing specificeren)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Sommige pakketten konden niet geïnstalleerd worden. Dit kan betekenen dat u\n"
+"een onmogelijke situatie gevraagd hebt of dat u de 'unstable'-distributie \n"
+"gebruikt en sommige benodigde pakketten nog vastzitten in 'incoming'."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Niet-werkende pakketten:"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "De volgende extra pakketten zullen geïnstalleerd worden:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Voorgestelde pakketten:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Aanbevolen pakketten:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr ""
+"WAARSCHUWING: De volgende pakketten kunnen niet geauthentificeerd worden:"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Authentificatiewaarschuwing is genegeerd.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Sommige pakketten konden niet geauthentificeerd worden"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Wilt u deze pakketten installeren zonder verificatie?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Ophalen van %s is mislukt %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Geïnstalleerd]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Geïnstalleerd]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Geïnstalleerd]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "De volgende pakketten hebben niet-voldane vereisten:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "maar %s is geïnstalleerd"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "maar %s zal geïnstalleerd worden"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "maar het is niet installeerbaar"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "maar het is een virtueel pakket"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "maar het is niet geïnstalleerd"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "maar het zal niet geïnstalleerd worden"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " of"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "De volgende pakketten zullen VERWIJDERD worden:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "De volgende pakketten zijn achtergehouden:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "De volgende pakketten zullen opgewaardeerd worden:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "De volgende pakketten zullen GEDEGRADEERD worden:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "De volgende vastgehouden pakketten zullen gewijzigd worden:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (vanwege %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"WAARSCHUWING: De volgende essentiële pakketten zullen verwijderd worden.\n"
+"Dit dient NIET gedaan te worden tenzij u precies weet wat u doet!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu pakketten opgewaardeerd, %lu pakketten nieuw geïnstalleerd, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu opnieuw geïnstalleerd, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu gedegradeerd, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[J/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[j/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "J"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Regex-compilatiefout - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Vereisten worden gecorrigeerd..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " mislukt."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Kan vereisten niet corrigeren"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Kon de verzameling op te waarderen pakketten niet minimaliseren"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Klaar"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "U kunt 'apt-get -f install' uitvoeren om dit op te lossen."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Er zijn vereisten waaraan niet voldaan is. Probeer -f te gebruiken."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "De opdracht 'update' aanvaard geen argumenten"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Opwaardering wordt doorgerekend... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Interne fout, AllUpgrade heeft dingen stukgemaakt"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Klaar"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"OPMERKING: Dit is een simulatie!\n"
+" Voor daadwerkelijke uitvoering heeft apt-get beheerdersrechten nodig.\n"
+" Houd er ook rekening mee ook dat vergrendeling is uitgeschakeld en\n"
+" vertrouw dus niet op de relevantie voor de werkelijke huidige situatie!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Hernoemen van %s naar %s is mislukt"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Geraakt "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Ophalen:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Genegeerd "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Fout "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%sB opgehaald in %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Bezig]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Medium wisselen: Gelieve de schijf met label\n"
+" '%s'\n"
+"in het station '%s' te plaatsen en op 'enter' te drukken\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Kan %s niet lezen"
@@ -1714,37 +1672,37 @@ msgstr "Aanmaken van IPC-pijp naar subproces is mislukt"
msgid "Connection closed prematurely"
msgstr "Verbinding werd voortijdig afgebroken"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Foute standaardinstelling!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Druk 'enter' om door te gaan."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Wilt u alle eerder opgehaalde '.deb'-bestanden verwijderen?"
# Note to translators: The following four messages belong together. It doesn't
# matter where sentences start, but it has to fit in just these four lines, and
# at only 80 characters per line, if possible.
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
"Er zijn fouten opgetreden tijdens het uitpakken. Geïnstalleerde pakketten"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "worden geconfigureerd. Hierbij kunnen fouten meerdere malen optreden"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"of veroorzaakt worden door niet-voldane vereisten. Dit is Ok, enkel de fouten"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1999,36 +1957,36 @@ msgstr "readlink op %s is mislukt"
msgid "Failed to unlink %s"
msgstr "Ontlinken van %s is mislukt"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Linken van %s aan %s is mislukt"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Ontlinklimiet van %sB bereikt.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Archief heeft geen 'package'-veld"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s heeft geen voorrangsingang\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s beheerder is %s, niet %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s heeft geen voorrangsingang voor bronpakketten\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s heeft ook geen voorrangsingang voor binaire pakketten\n"
@@ -2107,7 +2065,7 @@ msgstr "Probleem bij het ontlinken van %s"
msgid "Failed to rename %s to %s"
msgstr "Hernoemen van %s naar %s is mislukt"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2177,7 +2135,7 @@ msgstr "Beschadigd archief"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar controlesom klopt niet, het pakket is beschadigd"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Onbekende TAR-kopteksttype %u, onderdeel %s"
@@ -2301,23 +2259,17 @@ msgid "Unable to stat %s"
msgstr "Kan de status van %s niet opvragen"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Dit is geen geldig DEB-archief, het onderdeel '%s' mankeert"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Dit is geen geldig DEB-archief, het bevat geen '%s', '%s', of '%s' onderdeel"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Interne fout, kon onderdeel %s niet vinden"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Niet-ontleedbaar 'control'-bestand"
@@ -2378,88 +2330,88 @@ msgstr ""
"door de gebruiker is uitgeschakeld."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr "%lid %liu %limin %lis"
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%liu %limin %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Selectie %s niet gevonden"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Onbekende type-afkorting '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Configuratiebestand %s wordt geopend"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Syntaxfout %s:%u: Verkeerd gevormde markering"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Syntaxfout %s:%u: Extra rommel na waarde"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Syntaxfout %s:%u: Teveel geneste invoegingen"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Syntaxfout %s:%u: Vanaf hier ingevoegd"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Syntaxfout %s:%u: Niet-ondersteunde richtlijn '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Syntaxfout %s:%u: De richtlijn 'clear' vereist een optieboom als argument"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, 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"
@@ -2484,50 +2436,50 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Klaar"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Commandoregel-optie '%c' [van %s] is onbekend."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Commandoregel-optie %s wordt niet begrepen"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Commandoregel-optie %s is niet booleaans"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Optie %s vereist een argument."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"Optie %s: De specificatie van het configuratie-item dient een =<waarde> te "
"bevatten."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Optie %s vereist een integer getal als argument, niet '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Optie '%s' is te lang"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Waarde %s wordt niet begrepen, probeer 'true' of 'false'."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Ongeldige operatie %s"
@@ -2541,119 +2493,119 @@ msgstr "Kan de status van het aanhechtpunt %s niet opvragen"
msgid "Failed to stat the cdrom"
msgstr "stat op de CD-ROM is mislukt"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Probleem bij het afsluiten van het gzip-bestand %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
"Er wordt geen vergrendeling gebruikt voor het alleen-lezen-"
"vergrendelingsbestand %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Kon het vergrendelingsbestand '%s' niet openen"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
"Het via nfs aangekoppelde vergrendelingsbestand %s wordt niet vergrendeld"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Kon vergrendeling %s niet verkrijgen"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Subproces %s ontving een segmentatiefout."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Subproces %s ontving signaal %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "Subproces %s gaf de foutcode %u terug"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Subproces %s sloot onverwacht af"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Kon het bestand %s niet openen"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Kon de bestandsindicator %d niet openen"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Aanmaken subproces-IPC is mislukt"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Uitvoeren van de compressor is mislukt "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "lees, de laatste te lezen %lu zijn niet beschikbaar"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "schrijf, de laatste %lu konden niet weggeschreven worden"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Probleem bij het afsluiten van het bestand %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Probleem bij het hernoemen van '%s' naar '%s'"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Probleem bij het ontlinken van het bestand %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Probleem bij het synchroniseren van het bestand"
@@ -2771,12 +2723,12 @@ msgstr "Openen van StateFile %s is mislukt"
msgid "Failed to write temporary StateFile %s"
msgstr "Wegschrijven van tijdelijke StateFile %s is mislukt"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Kon pakketbestand %s niet ontleden (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Kon pakketbestand %s niet ontleden (2)"
@@ -2852,7 +2804,7 @@ msgstr "Misvormde regel %u in bronlijst %s (type)"
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "Type '%s' op regel %u in bronlijst %s is onbekend"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2861,12 +2813,12 @@ msgstr ""
"Kon onmiddellijke configuratie van '%s' niet uitvoeren. Voor details zie "
"'man 5 apt.conf', onder APT::Immediate-Configure. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Kon het bestand '%s' niet openen"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2891,7 +2843,7 @@ msgstr ""
"Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor "
"gevonden worden."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2899,19 +2851,10 @@ msgstr ""
"Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan "
"veroorzaakt worden door vastgehouden pakketten."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Ophalen van sommige indexbestanden is mislukt, deze zijn of genegeerd, of er "
-"zijn oudere versies van gebruikt."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2956,12 +2899,12 @@ msgstr ""
"Gelieve de schijf met label '%s' in het station '%s' te plaatsen en op "
"'enter' te drukken."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Pakketbeheersysteem '%s' wordt niet ondersteund"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Kan geen geschikt pakketsysteemtype bepalen"
@@ -2998,18 +2941,18 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr ""
"Ongeldige record in het voorkeurenbestand %s, 'Package' koptekst ontbreekt"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Pintype %s wordt niet begrepen"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Er is geen prioriteit (of nul) opgegeven voor deze pin"
@@ -3080,45 +3023,49 @@ msgstr "Invoer/Uitvoer-fout tijdens wegschrijven bronpakket-cache"
msgid "rename failed, %s (%s -> %s)."
msgstr "herbenoeming is mislukt, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5-som komt niet overeen"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Hash-som komt niet overeen"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Grootte komt niet overeen"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Ongeldige operatie %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Kon Release-bestand %s niet ontleden"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Conflicterende distributie: %s (verwachtte %s, maar kreeg %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3129,12 +3076,12 @@ msgstr ""
"%s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "GPG-fout: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3143,16 +3090,12 @@ msgstr ""
"Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u "
"dit pakket handmatig moet repareren (wegens missende architectuur)"
-#: apt-pkg/acquire-item.cc:1722
-#, fuzzy, 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."
+#: apt-pkg/acquire-item.cc:1771
+#, c-format
+msgid "Can't find a source to download version '%s' of '%s'"
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:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3160,16 +3103,12 @@ msgstr ""
"De pakketindex-bestanden zijn beschadigd. Er is geen 'Filename:'-veld voor "
"pakket %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Grootte komt niet overeen"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Kon Release-bestand %s niet ontleden"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Geen secties in Release-bestand %s"
@@ -3316,33 +3255,33 @@ msgstr "Kan geen authenticatierecord vinden voor: %s"
msgid "Hash mismatch for: %s"
msgstr "Hash-som komt niet overeen voor: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Release '%s' voor '%s' is niet gevonden"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Versie '%s' voor '%s' is niet gevonden"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Kon taak '%s' niet vinden"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Kon geen enkel pakket vinden bij regex '%s'"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, fuzzy, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
"Kan geen versies selecteren voor pakket '%s' omdat deze zuiver virtueel is"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3351,21 +3290,21 @@ msgstr ""
"Kan noch de geïnstalleerde, noch de kandidaat-versie van het pakket '%s' "
"selecteren omdat deze geen van beide heeft"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Kan de nieuwste versie van het pakket '%s' niet selecteren omdat deze zuiver "
"virtueel is"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Kan de kandidaat-versie van het pakket %s niet selecteren omdat deze geen "
"kandidaat heeft"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3392,113 +3331,134 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "dpkg wordt uitgevoerd"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Ophalen van sommige indexbestanden is mislukt, deze zijn of genegeerd, of er "
+"zijn oudere versies van gebruikt."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "%s wordt geïnstalleerd"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "%s wordt geconfigureerd"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "%s wordt verwijderd"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "%s wordt volledig verwijderd"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "De verdwijning van %s wordt opgemerkt"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Post-installatie-trigger %s wordt uitgevoerd"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Map '%s' ontbreekt"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Kon het bestand '%s' niet openen"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "%s wordt voorbereid"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "%s wordt uitgepakt"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Configuratie van %s wordt voorbereid"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s is geïnstalleerd"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Verwijdering van %s wordt voorbereid"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s is verwijderd"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Volledige verwijdering van %s wordt voorbereid"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s is volledig verwijderd"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Kan niet naar %s schrijven"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Kon logbestand niet wegschrijven, openpty() is mislukt (/dev/pts niet "
-"aangekoppeld?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "dpkg wordt uitgevoerd"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
"Er is geen apport-verslag weggeschreven omdat het maximum aantal verslagen "
"(MaxReports) al is bereikt"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "problemen met vereisten - wordt niet geconfigureerd"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3506,7 +3466,7 @@ msgstr ""
"Er is geen apport-verslag weggeschreven omdat de foutmelding volgt op een "
"eerdere mislukking."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3514,7 +3474,7 @@ msgstr ""
"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is "
"over een volle schijf."
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3522,7 +3482,16 @@ msgstr ""
"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is "
"over onvoldoende-geheugen."
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is "
+"over een volle schijf."
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3556,6 +3525,99 @@ msgstr ""
msgid "Not locked"
msgstr "Niet vergrendeld"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Let op, '%s' wordt geselecteerd omwille van de taak '%s'\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Let op, '%s' wordt geselecteerd omwille van de regex '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Pakket %s is een virtueel pakket voorzien door:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr "[Niet de kandidaat-versie]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "U dient er één expliciet te selecteren voor installatie."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Pakket %s is niet beschikbaar, hoewel er naar verwezen wordt door\n"
+#~ "een ander pakket. Mogelijk betekent dit dat het pakket ontbreekt,\n"
+#~ "verouderd is, of enkel beschikbaar is van een andere bron\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Echter, de volgende pakketten vervangen dit:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Pakket '%s' heeft geen kandidaat voor installatie"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Virtuele pakketten zoals '%s' kunnen niet worden verwijderd\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Let op, '%s' wordt geselecteerd in plaats van '%s'\n"
+
+#~ 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"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "%s wordt overgeslagen, het is niet geïnstalleerd en alleen opwaardering "
+#~ "is gevraagd.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr ""
+#~ "Herinstallatie van %s is niet mogelijk daar het niet opgehaald kan "
+#~ "worden.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s is reeds de nieuwste versie.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Versie '%s' (%s) geselecteerd voor '%s'\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Versie '%s' (%s) geselecteerd voor '%s'\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Negeer niet beschikbare doelrelease '%s' van pakket '%s'"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Dit is geen geldig DEB-archief, het bevat geen '%s', '%s', of '%s' "
+#~ "onderdeel"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5-som komt niet overeen"
+
+#, fuzzy
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat "
+#~ "u dit pakket handmatig moet repareren."
+
+#~ 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"
+
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Niet-bestaand bestand %s wordt overgeslagen"
diff --git a/po/nn.po b/po/nn.po
index 1be347da0..ea564db50 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt_nn\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2005-02-14 23:30+0100\n"
"Last-Translator: Havard Korsvoll <korsvoll@skulelinux.no>\n"
"Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n"
@@ -19,154 +19,156 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Pakken %s versjon %s har eit krav som ikkje er oppfylt:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Tal på pakkenamn: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "Tal på pakkenamn: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Vanlege pakkar: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Reine virtuelle pakkar: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Enkle virtuelle pakkar: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Samansette virtuelle pakkar: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Manglar: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Tal på einskildversjonar: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
#, fuzzy
msgid "Total distinct descriptions: "
msgstr "Tal på einskildversjonar: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Tal på krav: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Tal på ver./fil-forhold: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
#, fuzzy
msgid "Total Desc/File relations: "
msgstr "Tal på ver./fil-forhold: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Tal på tilbyr-forhold: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Tal på strengar med jokerteikn: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Storleik på kravs- og versjonsrom: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Slingringsmon: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Brukt plass i alt: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Pakkefila %s er ute av takt."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Fann ingen pakkar"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "Du må oppgi nøyaktig eitt mnster"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Finn ikkje pakken %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Pakkefiler:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Mellomlageret er ute av takt, kan ikkje x-referera ei pakkefil"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Spikra pakkar:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(ikkje funne)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Installert: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Kandidat: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ingen)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Pakke spikra til: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Versjonstabell:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, fuzzy, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s for %s %s kompilert på %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -240,18 +242,18 @@ msgstr ""
"Du finn meir informasjon på manualsidene apt-cache(8) og apt.conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
#, fuzzy
msgid "Please insert a Disc in the drive and press enter"
msgstr ""
@@ -259,20 +261,20 @@ msgstr ""
" «%s»\n"
"i stasjonen «%s» og trykk Enter.\n"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Klarte ikkje endra namnet på %s til %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr ""
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Ikkje parvise argument"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -300,606 +302,63 @@ msgstr ""
" -c=? Les denne oppsettsfila.\n"
" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[J/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[j/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "J"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Regex-kompileringsfeil - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Følgjande pakkar har krav som ikkje er oppfylte:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "men %s er installert"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "men %s skal installerast"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "men lèt seg ikkje installera"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "men er ein virtuell pakke"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "men er ikkje installert"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "men skal ikkje installerast"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " eller"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Dei følgjande NYE pakkane vil verta installerte:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Dei følgjande pakkane vil verta FJERNA:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Dei følgjande pakkane er haldne tilbake:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Dei følgjande pakkane vil verta oppgraderte:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Dei følgjande pakkane vil verta NEDGRADERTE:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Dei følgjande pakkane som er haldne tilbake vil verta endra:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (fordi %s) "
-
-#: cmdline/apt-get.cc:600
-#, fuzzy
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"ÅTVARING: Dei følgjande nødvendige pakkane vil verta fjerna.\n"
-"Dette bør IKKJE gjerast utan at du er fullstendig klar over kva du gjer!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu oppgraderte, %lu nyleg installerte, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu installerte på nytt, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu nedgraderte, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu ikkje fullstendig installerte eller fjerna.\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Merk, vel %s i staden for regex «%s»\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Merk, vel %s i staden for regex «%s»\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Installert]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "Kandidatversjonar"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Du må velja ein som skal installerast."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Det finst ingen tilgjengeleg versjon av pakken %s, men han er nemnt\n"
-"av ein annan pakke. Dette tyder at pakket manglar, er gjort overflødig\n"
-"eller er berre tilgjengeleg frå ei anna kjelde\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Dei følgjande pakkane kan brukast i staden:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Det finst ingen installasjonskandidat for pakken %s"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Merk, vel %s i staden for %s\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"Hoppar over %s, for den er installert frå før og ikkje sett til "
-"oppgradering.\n"
-
-#: cmdline/apt-get.cc:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"Hoppar over %s, for den er installert frå før og ikkje sett til "
-"oppgradering.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "Den nyaste versjonen av %s er installert frå før.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, fuzzy, c-format
-msgid "%s set to manually installed.\n"
-msgstr "men %s skal installerast"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Vald versjon %s (%s) for %s\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Vald versjon %s (%s) for %s\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Rettar på krav ..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " mislukkast."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Klarte ikkje retta på krav"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Klarte ikkje minimera oppgraderingsmengda"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Ferdig"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr ""
-"Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Nokre krav er ikkje oppfylte. Prøv med «-f»."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ÅTVARING: Klarer ikkje autentisere desse pakkane."
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr ""
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Installer desse pakkane utan verifikasjon?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Nokre pakkar kunne ikkje bli autentisert"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Nokre pakkar må fjernast, men fjerning er slått av."
-
-#: cmdline/apt-get.cc:1180
-#, fuzzy
-msgid "Internal error, Ordering didn't finish"
-msgstr "Intern feil ved tilleggjing av avleiing"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Må henta %sB/%sB med arkiv.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Må henta %sB med arkiv.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, fuzzy, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Etter utpakking vil %sB meir diskplass verta brukt.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, fuzzy, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Du har ikkje nok ledig plass i %s"
-
-#: cmdline/apt-get.cc:1270
-#, 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:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"«Trivial Only» var spesifisert, men dette er ikkje noka triviell handling."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Ja, gjer som eg seier!"
-
-#: cmdline/apt-get.cc:1292
-#, fuzzy, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Du er i ferd med å utføra ei handling som kan vera skadeleg.\n"
-"For å halda fram, må du skriva nøyaktig «%s».\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Avbryt."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Vil du halda fram?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Klarte ikkje henta %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Klarte ikkje henta nokre av filene"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Nedlastinga er ferdig i nedlastingsmodus"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Klarte ikkje henta nokre av arkiva. Du kan prøva med «apt-get update» eller "
-"«--fix-missing»."
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "«--fix-missing» og byte av medium er ikkje støtta for tida"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Klarte ikkje retta opp manglande pakkar."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Avbryt installasjon."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, fuzzy, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Klarte ikkje få status på kjeldepakkelista %s"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Oppdateringskommandoen tek ingen argument"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Følgjande informasjon kan hjelpa med å løysa situasjonen:"
-
-#: cmdline/apt-get.cc:1853
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Intern feil. AllUpgrade øydelagde noko"
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "Dei følgjande NYE pakkane vil verta installerte:"
-msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "Dei følgjande NYE pakkane vil verta installerte:"
-msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Intern feil. AllUpgrade øydelagde noko"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr ""
-"Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»."
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Nokre krav er ikkje oppfylte. Du kan prøva «apt-get -f install» (eller velja "
-"ei løysing)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Nokre av pakkane kunne ikkje installerast. Dette kan koma av at du har\n"
-"valt ein umogleg situasjon. Dersom du brukar den ustabile utgåva av\n"
-"distribusjonen, kan det òg henda at nokre av pakkane som trengst ikkje\n"
-"er laga enno eller at dei framleis ligg i «Incoming»."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Øydelagde pakkar"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Dei følgjande tilleggspakkane vil verta installerte:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Føreslåtte pakkar:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Tilrådde pakkar"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Fann ikkje pakken %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "men %s skal installerast"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "men %s skal installerast"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Reknar ut oppgradering ... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Mislukkast"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Ferdig"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
#, fuzzy
msgid "Internal error, problem resolver broke stuff"
msgstr "Intern feil. AllUpgrade øydelagde noko"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Klarte ikkje låsa nedlastingskatalogen"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Finn ingen kjeldepakke for %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -907,105 +366,115 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, fuzzy, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, fuzzy, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Du har ikkje nok ledig plass i %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Du har ikkje nok ledig plass i %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Må henta %sB/%sB med kjeldekodearkiv.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Må henta %sB med kjeldekodearkiv.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Hent kjeldekode %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Klarte ikkje henta nokre av arkiva."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Nedlastinga er ferdig i nedlastingsmodus"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Utpakkingskommandoen «%s» mislukkast.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr ""
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Byggjekommandoen «%s» mislukkast.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Barneprosessen mislukkast"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Klarte ikkje henta byggjekrav for %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s har ingen byggjekrav.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
"packages"
msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, 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:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1014,37 +483,37 @@ msgstr ""
"Kravet %s for %s kan ikkje oppfyllast fordi det ikkje finst nokon "
"tilgjengelege versjonar av pakken %s som oppfyller versjonskrava"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
"version"
msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Klarte ikkje oppfylla kravet %s for %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Byggjekrav for %s kunne ikkje tilfredstillast."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Klarte ikkje behandla byggjekrava"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Koplar til %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Støtta modular:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1130,98 +599,53 @@ msgstr ""
"til apt-get(8), sources.list(5) og apt.conf(5).\n"
" APT har superku-krefter.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Treff "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Hent:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Feil "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Henta %sB på %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Arbeider]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Skifte av medum: Set inn plata merkt\n"
-" «%s»\n"
-"i stasjonen «%s» og trykk Enter.\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "men er ikkje installert"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "men %s skal installerast"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "men %s skal installerast"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "Den nyaste versjonen av %s er installert frå før.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "Den nyaste versjonen av %s er installert frå før.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Venta på %s, men den fanst ikkje"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "men %s skal installerast"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Klarte ikkje opna %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1243,6 +667,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1342,8 +783,8 @@ msgstr "Tidsavbrot på samband"
msgid "Server closed the connection"
msgstr "Tenaren lukka sambandet"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Lesefeil"
@@ -1356,8 +797,8 @@ msgid "Protocol corruption"
msgstr "Protokolløydeleggjing"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Skrivefeil"
@@ -1369,6 +810,10 @@ msgstr "Klarte ikkje oppretta sokkel"
msgid "Could not connect data socket, connection timed out"
msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot på sambandet"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Mislukkast"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Klarte ikkje kopla til passiv sokkel."
@@ -1411,7 +856,7 @@ msgstr "Tidsavbrot på tilkopling til datasokkel"
msgid "Unable to accept connection"
msgstr "Klarte ikkje godta tilkoplinga"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problem ved oppretting av nøkkel for fil"
@@ -1540,81 +985,594 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Feil ved skriving til fila"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Feil ved lesing frå tenaren"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Feil ved skriving til fil"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Utvalet mislukkast"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Tidsavbrot på sambandet"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Feil ved skriving til utfil"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Ventar på hovud"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Øydelagd hovudlinje"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "HTTP-tenaren sende eit ugyldig svarhovud"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "HTTP-tenaren sende eit ugyldig «Content-Length»-hovud"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "HTTP-tenaren sende eit ugyldig «Content-Range»-hovud"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Denne HTTP-tenaren har øydelagd støtte for område"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Ukjend datoformat"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Utvalet mislukkast"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Øydelagde hovuddata"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Tidsavbrot på sambandet"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Sambandet mislukkast"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Feil ved skriving til utfil"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Intern feil"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Feil ved skriving til fil"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Feil ved skriving til fila"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Nokre pakkar må fjernast, men fjerning er slått av."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Feil ved lesing frå tenaren"
+#: apt-private/private-install.cc:121
+#, fuzzy
+msgid "Internal error, Ordering didn't finish"
+msgstr "Intern feil ved tilleggjing av avleiing"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Øydelagde hovuddata"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Sambandet mislukkast"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Må henta %sB/%sB med arkiv.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Intern feil"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Må henta %sB med arkiv.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Etter utpakking vil %sB meir diskplass verta brukt.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Etter utpakking vil %sB meir diskplass verta frigjort.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Du har ikkje nok ledig plass i %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Det oppstod problem, og «-y» vart brukt utan «--force-yes»"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"«Trivial Only» var spesifisert, men dette er ikkje noka triviell handling."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Ja, gjer som eg seier!"
+
+#: apt-private/private-install.cc:233
+#, fuzzy, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Du er i ferd med å utføra ei handling som kan vera skadeleg.\n"
+"For å halda fram, må du skriva nøyaktig «%s».\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Avbryt."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Vil du halda fram?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Klarte ikkje henta nokre av filene"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Klarte ikkje henta nokre av arkiva. Du kan prøva med «apt-get update» eller "
+"«--fix-missing»."
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "«--fix-missing» og byte av medium er ikkje støtta for tida"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Klarte ikkje retta opp manglande pakkar."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Avbryt installasjon."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Følgjande informasjon kan hjelpa med å løysa situasjonen:"
+
+#: apt-private/private-install.cc:517
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Intern feil. AllUpgrade øydelagde noko"
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "Dei følgjande NYE pakkane vil verta installerte:"
+msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "Dei følgjande NYE pakkane vil verta installerte:"
+msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+"Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»."
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Nokre krav er ikkje oppfylte. Du kan prøva «apt-get -f install» (eller velja "
+"ei løysing)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Nokre av pakkane kunne ikkje installerast. Dette kan koma av at du har\n"
+"valt ein umogleg situasjon. Dersom du brukar den ustabile utgåva av\n"
+"distribusjonen, kan det òg henda at nokre av pakkane som trengst ikkje\n"
+"er laga enno eller at dei framleis ligg i «Incoming»."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Øydelagde pakkar"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Dei følgjande tilleggspakkane vil verta installerte:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Føreslåtte pakkar:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Tilrådde pakkar"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ÅTVARING: Klarer ikkje autentisere desse pakkane."
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr ""
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Nokre pakkar kunne ikkje bli autentisert"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Installer desse pakkane utan verifikasjon?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Klarte ikkje henta %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Installert]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Installert]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Installert]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Følgjande pakkar har krav som ikkje er oppfylte:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "men %s er installert"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "men %s skal installerast"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "men lèt seg ikkje installera"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "men er ein virtuell pakke"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "men er ikkje installert"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "men skal ikkje installerast"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " eller"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Dei følgjande NYE pakkane vil verta installerte:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Dei følgjande pakkane vil verta FJERNA:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Dei følgjande pakkane er haldne tilbake:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Dei følgjande pakkane vil verta oppgraderte:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Dei følgjande pakkane vil verta NEDGRADERTE:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Dei følgjande pakkane som er haldne tilbake vil verta endra:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (fordi %s) "
+
+#: apt-private/private-output.cc:625
+#, fuzzy
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ÅTVARING: Dei følgjande nødvendige pakkane vil verta fjerna.\n"
+"Dette bør IKKJE gjerast utan at du er fullstendig klar over kva du gjer!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu oppgraderte, %lu nyleg installerte, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu installerte på nytt, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu nedgraderte, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu ikkje fullstendig installerte eller fjerna.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[J/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[j/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "J"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Regex-kompileringsfeil - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Rettar på krav ..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " mislukkast."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Klarte ikkje retta på krav"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Klarte ikkje minimera oppgraderingsmengda"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Ferdig"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr ""
+"Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Nokre krav er ikkje oppfylte. Prøv med «-f»."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Oppdateringskommandoen tek ingen argument"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Reknar ut oppgradering ... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Intern feil. AllUpgrade øydelagde noko"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Ferdig"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Klarte ikkje endra namnet på %s til %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Treff "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Hent:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Feil "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Henta %sB på %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Arbeider]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Skifte av medum: Set inn plata merkt\n"
+" «%s»\n"
+"i stasjonen «%s» og trykk Enter.\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Klarte ikkje lesa %s"
@@ -1673,34 +1631,34 @@ msgstr "Klarte ikkje oppretta IPC-røyr til underprosessen"
msgid "Connection closed prematurely"
msgstr "Sambandet vart uventa stengd"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Dårleg standardinnstilling"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Trykk Enter for å halda fram."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr ""
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Nokre feil oppstod ved utpakking. Dei installerte pakkane vert no"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "sette opp. Dette kan føra til følgjefeil eller feil på grunn av"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "krav som ikkje er oppfylte. Det gjer ikkje noko, berre feila ovanfor"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "er viktige. Rett opp dei feila og [i]nstaller på nytt."
@@ -1946,36 +1904,36 @@ msgstr "Klarte ikkje lesa lenkja %s"
msgid "Failed to unlink %s"
msgstr "Klarte ikkje oppheva lenkja %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Klarte ikkje lenkja %s til %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " DeLink-grensa på %sB er nådd.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Arkivet har ikkje noko pakkefelt"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s har inga overstyringsoppføring\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s-vedlikehaldaren er %s, ikkje %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, fuzzy, c-format
msgid " %s has no source override entry\n"
msgstr " %s har inga overstyringsoppføring\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, fuzzy, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s har inga overstyringsoppføring\n"
@@ -2054,7 +2012,7 @@ msgstr "Problem ved oppheving av lenkje til %s"
msgid "Failed to rename %s to %s"
msgstr "Klarte ikkje endra namnet på %s til %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2123,7 +2081,7 @@ msgstr "Øydelagt arkiv"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar-sjekksummen mislukkast, arkivet er øydelagt"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Ukjend TAR-hovud type %u, medlem %s"
@@ -2247,23 +2205,17 @@ msgid "Unable to stat %s"
msgstr "Klarte ikkje få status til %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Dette er ikkje eit gyldig DEB-arkiv, manglar «%s»-medlemmen"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, fuzzy, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Dette er ikkje eit gyldig DEB-arkiv, det har ingen «%s» eller «%s»-medlem"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Intern feil, fann ikkje medlemmen %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Kontrollfila kan ikkje tolkast"
@@ -2321,85 +2273,85 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Fann ikkje utvalet %s"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Ukjend typeforkorting: «%c»"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Opnar oppsettsfila %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Syntaksfeil %s:%u: Misforma tagg"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Syntaksfeil %s:%u: Ekstra rot etter verdien"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det øvste nivået"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Syntaksfeil %s:%u: For mange nøsta inkluderte filer"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Syntaksfeil %s:%u: Inkludert herifrå"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikkje støtta"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det øvste nivået"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Syntaksfeil %s:%u: Ekstra rot til slutt i fila"
@@ -2424,48 +2376,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s ... Ferdig"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Kjenner ikkje kommandolinjevalet «%c» (frå %s)."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Skjønar ikkje kommandolinjevalet %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Kommandolinjevalet %s er ikkje boolsk"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Valet %s krev eit argument."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Val %s: Spesifikasjonen av oppsettselementet må ha ein =<verdi>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Valet %s må ha eit heiltalsargument, ikkje «%s»"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Valet «%s» er for langt"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Skjønar ikkje %s. Prøv «true» eller «false»."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Ugyldig operasjon %s"
@@ -2479,116 +2431,116 @@ msgstr "Klarte ikkje få status til monteringspunktet %s"
msgid "Failed to stat the cdrom"
msgstr "Klarte ikkje få status til CD-ROM"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problem ved låsing av fila"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Brukar ikkje låsing for den skrivebeskytta låsefila %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Klarte ikkje opna låsefila %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Brukar ikkje låsing for den nfs-monterte låsefila %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Klarte ikkje låsa %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Underprosessen %s mottok ein segmenteringsfeil."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "Underprosessen %s mottok ein segmenteringsfeil."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "Underprosessen %s returnerte ein feilkode (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Underprosessen %s avslutta uventa"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Klarte ikkje opna fila %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "Klarte ikkje opna røyr for %s"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Klarte ikkje oppretta underprosessen IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Klarte ikkje køyra komprimeringa "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "lese, har framleis %lu att å lesa, men ingen att"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "skrive, har framleis %lu att å skrive, men klarte ikkje"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "Problem ved låsing av fila"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problem ved synkronisering av fila"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "Problem ved oppheving av lenkje til fila"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problem ved synkronisering av fila"
@@ -2707,12 +2659,12 @@ msgstr "Klarte ikkje opna %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Klarte ikkje skriva fila %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Klarte ikkje tolka pakkefila %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Klarte ikkje tolka pakkefila %s (2)"
@@ -2787,19 +2739,19 @@ msgstr "Misforma linje %u i kjeldelista %s (type)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Klarte ikkje opna fila %s"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2822,7 +2774,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:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2830,20 +2782,11 @@ msgstr ""
"Feil, «pkgProblemResolver::Resolve» har laga brot. Dette kan skuldast pakkar "
"som er haldne tilbake."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
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:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Klarte ikkje lasta ned nokre av indeksfilene. Dei er ignorerte, eller gamle "
-"filer er brukte i staden."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2889,12 +2832,12 @@ msgstr ""
" «%s»\n"
"i stasjonen «%s» og trykk Enter.\n"
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Pakkesystemet «%s» er ikkje støtta"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Klarte ikkje avgjera ein eigna pakkesystemtype"
@@ -2927,17 +2870,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Ugyldig oppslag i innstillingsfila, manglar pakkehovud"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Skjønar ikkje spikringstypen %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Ingen prioritet (eller null) oppgitt for spiker"
@@ -3005,45 +2948,49 @@ msgstr "IU-feil ved lagring av kjeldelager"
msgid "rename failed, %s (%s -> %s)."
msgstr "endring av namn mislukkast, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Feil MD5-sum"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
#, fuzzy
msgid "Hash Sum mismatch"
msgstr "Feil MD5-sum"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Feil storleik"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Ugyldig operasjon %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Klarte ikkje tolka pakkefila %s (1)"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3051,12 +2998,12 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3065,31 +3012,24 @@ msgstr ""
"Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv "
"(fordi arkitekturen manglar)."
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv."
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, 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:1879
-msgid "Size mismatch"
-msgstr "Feil storleik"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "Klarte ikkje tolka pakkefila %s (1)"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "Merk, vel %s i staden for %s\n"
@@ -3231,49 +3171,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "Feil MD5-sum"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Fann ikkje utgåva «%s» av «%s»"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Fann ikkje versjonen «%s» av «%s»"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "Fann ikkje pakken %s"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Fann ikkje pakken %s"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3298,127 +3238,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Klarte ikkje lasta ned nokre av indeksfilene. Dei er ignorerte, eller gamle "
+"filer er brukte i staden."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, fuzzy, c-format
msgid "Installing %s"
msgstr " Installert: "
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, fuzzy, c-format
msgid "Configuring %s"
msgstr "Koplar til %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Opnar %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "Klarte ikkje fjerna %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr ""
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, fuzzy, c-format
msgid "Directory '%s' missing"
msgstr "Listekatalogen %spartial manglar."
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "Klarte ikkje opna fila %s"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, fuzzy, c-format
msgid "Preparing %s"
msgstr "Opnar %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, fuzzy, c-format
msgid "Unpacking %s"
msgstr "Opnar %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, fuzzy, c-format
msgid "Preparing to configure %s"
msgstr "Opnar oppsettsfila %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, fuzzy, c-format
msgid "Installed %s"
msgstr " Installert: "
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, fuzzy, c-format
msgid "Removed %s"
msgstr "Tilrådingar"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, fuzzy, c-format
msgid "Preparing to completely remove %s"
msgstr "Opnar oppsettsfila %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, fuzzy, c-format
msgid "Completely removed %s"
msgstr "Klarte ikkje fjerna %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Klarte ikkje skriva til %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3448,6 +3417,93 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Merk, vel %s i staden for regex «%s»\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Merk, vel %s i staden for regex «%s»\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Pakken %s er ein virtuell pakke, tilbydd av:\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "Kandidatversjonar"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Du må velja ein som skal installerast."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Det finst ingen tilgjengeleg versjon av pakken %s, men han er nemnt\n"
+#~ "av ein annan pakke. Dette tyder at pakket manglar, er gjort overflødig\n"
+#~ "eller er berre tilgjengeleg frå ei anna kjelde\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Dei følgjande pakkane kan brukast i staden:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Det finst ingen installasjonskandidat for pakken %s"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Merk, vel %s i staden for %s\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "Hoppar over %s, for den er installert frå før og ikkje sett til "
+#~ "oppgradering.\n"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Hoppar over %s, for den er installert frå før og ikkje sett til "
+#~ "oppgradering.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr ""
+#~ "%s kan ikkje installerast på nytt, for pakken kan ikkje lastast ned.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "Den nyaste versjonen av %s er installert frå før.\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Vald versjon %s (%s) for %s\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Vald versjon %s (%s) for %s\n"
+
+#, fuzzy
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Dette er ikkje eit gyldig DEB-arkiv, det har ingen «%s» eller «%s»-medlem"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Feil MD5-sum"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken "
+#~ "sjølv."
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Opnar oppsettsfila %s"
diff --git a/po/pl.po b/po/pl.po
index 17e6804ce..32bb01a5d 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.9.7.3\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-07-28 21:53+0200\n"
"Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n"
"Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n"
@@ -23,152 +23,154 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Pakiet %s w wersji %s ma niespełnione zależności:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Liczba nazw pakietów: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Liczba wszystkich typów pakietów: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Zwykłych pakietów: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Czysto wirtualnych pakietów: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Pojedynczych pakietów wirtualnych: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Mieszanych pakietów wirtualnych: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " BrakujÄ…cych: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "W sumie różnych wersji: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "W sumie różnych opisów: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "W sumie zależności: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "W sumie zależności wersja/plik: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "W sumie zależności opis/plik: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "W sumie mapowań zapewnień: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "W sumie dopasowanych napisów: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Sumaryczny rozmiar obszaru zależności od wersji: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Sumaryczny rozmiar niewykorzystanego miejsca: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Całkowity rozmiar: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Plik pakietu %s jest przestarzały."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Nie znaleziono żadnych pakietów"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Należy podać przynajmniej jeden wzorzec"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr "To polecenie jest przestarzałe. Prosimy używać \"apt-mark showauto\"."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Nie udało się odnaleźć pakietu %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Plików pakietów:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"Magazyn podręczny jest przestarzały, nie można odwołać się (x-ref) do pliku "
"pakietu."
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Przypięte pakiety:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(nie znaleziono)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Zainstalowana: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " KandydujÄ…ca: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(brak)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Sposób przypięcia: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Tabela wersji:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s dla %s skompilowany %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -240,35 +242,35 @@ msgstr ""
"oraz apt.conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Proszę wprowadzić nazwę dla tej płyty, np. \"Debian 5.0.3 Disk 1\""
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Nie udało się zamontować \"%s\" w \"%s\""
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Należy powtórzyć ten proces dla reszty płyt."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argumenty nie sÄ… w parach"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -296,574 +298,32 @@ msgstr ""
" -c=? Czyta wskazany plik konfiguracyjny.\n"
" -o=? Ustawia dowolnÄ… opcjÄ™ konfiguracji, np. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[T/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[t/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "T"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Błąd kompilacji wyrażenia regularnego - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Następujące pakiety mają niespełnione zależności:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "ale %s jest zainstalowany"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "ale %s ma zostać zainstalowany"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "ale nie da się go zainstalować"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "ale jest pakietem wirtualnym"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "ale nie jest zainstalowany"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "ale nie zostanie zainstalowany"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " lub"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Zostaną zainstalowane następujące NOWE pakiety:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Następujące pakiety zostaną USUNIĘTE:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Następujące pakiety zostały zatrzymane:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Następujące pakiety zostaną zaktualizowane:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Zostaną zainstalowane STARE wersje następujących pakietów:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Zostaną zmienione następujące zatrzymane pakiety:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (z powodu %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"UWAGA: Zostaną usunięte następujące istotne pakiety.\n"
-"NIE należy kontynuować, jeśli nie jest się pewnym tego co się robi!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu aktualizowanych, %lu nowo instalowanych, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu ponownie instalowanych, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu cofniętych wersji, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu usuwanych i %lu nieaktualizowanych.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu nie w pełni zainstalowanych lub usuniętych.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Uwaga, wybieranie %s dla zadania \"%s\"\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Uwaga, wybieranie %s dla wyrażenia \"%s\"\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Zainstalowany]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Brak wersji kandydujÄ…cej]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Należy jednoznacznie wybrać jeden z nich do instalacji."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Pakiet %s nie ma dostępnej wersji, ale odnosi się do niego inny pakiet.\n"
-"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:729
-msgid "However the following packages replace it:"
-msgstr "Jednak następujące pakiety go zastępują:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Pakiet %s nie ma kandydata do instalacji"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Pakiety wirtualne, takie jak \"%s\" nie mogą być usunięte\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"Pakiet %s nie jest zainstalowany, więc nie zostanie usunięty. Czy chodziło o "
-"\"%s\"?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, 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:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Uwaga, wybieranie \"%s\" zamiast \"%s\"\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"Pomijanie %s, nie jest zainstalowane, a wybrano wyłącznie aktualizacje.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s jest już w najnowszej wersji.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s zaznaczony jako zainstalowany ręcznie.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Wybrano wersjÄ™ \"%s\" (%s) pakietu \"%s\"\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Wybrano wersjÄ™ \"%s\" (%s) pakietu \"%s\", z powodu \"%s\"\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Naprawianie zależności..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " nie udało się."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Nie udało się naprawić zależności"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Nie udało się zminimalizować zbioru aktualizacji"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Gotowe"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Niespełnione zależności. Proszę spróbować użyć -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "UWAGA: Następujące pakiety nie mogą zostać zweryfikowane!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Zignorowano ostrzeżenie uwierzytelniania.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Zainstalować te pakiety bez weryfikacji?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Niektóre pakiety nie mogły zostać zweryfikowane"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Wystąpiły problemy, a użyto -y bez --force-yes"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Błąd wewnętrzny, użyto InstallPackages z uszkodzonymi pakietami!"
-
-#: cmdline/apt-get.cc:1169
-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:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Błąd wewnętrzny, sortowanie niezakończone"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Wystąpił dziwny błąd - rozmiary się nie zgadzają. Proszę to zgłosić pod "
-"apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Konieczne pobranie %sB/%sB archiwów.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Konieczne pobranie %sB archiwów.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Po tej operacji zostanie dodatkowo użyte %sB miejsca na dysku.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, 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:1270
-#, 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:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Nakazano wykonywać tylko trywialne operacje, a ta do nich nie należy."
-
-# Bezpieczniej jest nie używać tu polskich znaków.
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Tak, jestem pewien!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Zaraz stanie siÄ™ coÅ› potencjalnie szkodliwego.\n"
-"Aby kontynuować proszę napisać zdanie \"%s\"\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Przerwane."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Kontynuować?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Nie udało się pobrać %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Nie udało się pobrać niektórych plików"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Ukończono pobieranie w trybie samego pobierania"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Nie udało się pobrać niektórych archiwów, proszę spróbować uruchomić apt-get "
-"update lub użyć opcji --fix-missing."
-
-#: cmdline/apt-get.cc:1414
-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:1419
-msgid "Unable to correct missing packages."
-msgstr "Nie udało się poprawić brakujących pakietów."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Przerywanie instalacji"
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Następujący pakiet zniknął z tego systemu, ponieważ wszystkie jego pliki "
-"zostały nadpisane przez inne pakiety:"
-msgstr[1] ""
-"Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki "
-"zostały nadpisane przez inne pakiety:"
-msgstr[2] ""
-"Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki "
-"zostały nadpisane przez inne pakiety:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Uwaga: dpkg wykonał to automatycznie i celowo."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Ignorowanie niedostępnego wydania docelowego %s pakietu %s"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Zmieniono wybrany pakiet źródłowy na \"%s\" z \"%s\"\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Ignorowanie niedostępnej wersji \"%s\" pakietu \"%s\""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Polecenie update nie wymaga żadnych argumentów"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Wygląda na to, że AutoRemover coś uszkodził, a to naprawdę nie\n"
-"powinno się zdarzyć. Prosimy o zgłoszenie błędu w pakiecie apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-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:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Błąd wewnętrzny spowodowany przez AutoRemover"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Następujący pakiet został zainstalowany automatycznie i nie jest już więcej "
-"wymagany:"
-msgstr[1] ""
-"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej "
-"wymagane:"
-msgstr[2] ""
-"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej "
-"wymagane:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"%lu pakiet został zainstalowany automatycznie i nie jest już więcej "
-"wymagany.\n"
-msgstr[1] ""
-"%lu pakiety zostały zainstalowane automatycznie i nie są już więcej "
-"wymagane.\n"
-msgstr[2] ""
-"%lu pakietów zostało zainstalowanych automatycznie i nie są już więcej "
-"wymagane.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Aby go usunąć należy użyć \"apt-get autoremove\"."
-msgstr[1] "Aby je usunąć należy użyć \"apt-get autoremove\"."
-msgstr[2] "Aby je usunąć należy użyć \"apt-get autoremove\"."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Błąd wewnętrzny spowodowany przez AllUpgrade"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr ""
-"Należy uruchomić \"apt-get -f install\", aby naprawić poniższe problemy:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Niespełnione zależności. Proszę spróbować wykonać \"apt-get -f install\" bez "
-"pakietów (lub podać rozwiązanie)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Nie udało się zainstalować niektórych pakietów. Może to oznaczać,\n"
-"że zażądano niemożliwej sytuacji lub użyto dystrybucji niestabilnej,\n"
-"w której niektóre pakiety nie zostały jeszcze utworzone lub przeniesione\n"
-"z katalogu Incoming (\"PrzychodzÄ…ce\")."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Pakiety sÄ… uszkodzone"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Zostaną zainstalowane następujące dodatkowe pakiety:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Sugerowane pakiety:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Polecane pakiety:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Nie udało się odnaleźć pakietu %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s zaznaczony jako zainstalowany ręcznie.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s zaznaczony jako zainstalowany automatycznie.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -871,48 +331,26 @@ msgstr ""
"To polecenie jest przestarzałe. Prosimy używać \"apt-mark auto\" i \"apt-"
"mark manual\"."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Obliczanie aktualizacji..."
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Nie udało się"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Gotowe"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Błąd wewnętrzny, spowodowany przez moduł rozwiązywania problemów"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Nie udało się zablokować katalogu pobierania"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "Nie można znaleźć źródła do pobrania wersji \"%s\" pakietu \"%s\""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "Pobieranie %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, 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:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -922,7 +360,7 @@ msgstr ""
"pod adresem:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -934,70 +372,80 @@ msgstr ""
"by pobrać najnowsze (prawdopodobnie jeszcze niewydane) poprawki tego "
"pakietu.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Pomijanie już pobranego pliku \"%s\"\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, 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:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "W %s nie ma wystarczającej ilości wolnego miejsca"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Konieczne pobranie %sB/%sB archiwów źródeł.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Konieczne pobranie %sB archiwów źródeł.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Pobieranie źródeł %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Nie udało się pobrać niektórych archiwów."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Ukończono pobieranie w trybie samego pobierania"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Polecenie rozpakowania \"%s\" zawiodło.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Polecenie budowania \"%s\" zawiodło.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Proces potomny zawiódł"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"Należy podać przynajmniej jeden pakiet, dla którego mają zostać sprawdzone "
"zależności dla budowania"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -1006,17 +454,17 @@ msgstr ""
"Nie znaleziono informacji o architekturze dla %s. Proszę zapoznać się z apt."
"conf(5) APT::Architectures"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Nie udało się pobrać informacji o zależnościach dla budowania %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s nie ma zależności dla budowania.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1025,7 +473,7 @@ msgstr ""
"Zależność %s od %s nie może zostać spełniona, ponieważ %s nie jest dozwolone "
"w pakietach \"%s\""
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1034,14 +482,14 @@ msgstr ""
"Zależność %s od %s nie może zostać spełniona, ponieważ nie znaleziono "
"pakietu %s"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1050,7 +498,7 @@ msgstr ""
"Zależność %s od %s nie może zostać spełniona, ponieważ kandydująca wersja "
"pakietu %s nie spełnia wymagań wersji"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1059,30 +507,30 @@ msgstr ""
"Zależność %s od %s nie może zostać spełniona, ponieważ pakiet %s nie ma "
"wersji kandydujÄ…cej"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Nie udało się spełnić zależności dla budowania %s."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Nie udało się przetworzyć zależności dla budowania"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Dziennik zmian %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Obsługiwane moduły:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1170,107 +618,55 @@ msgstr ""
"apt-get(8), sources.list(5) i apt.conf(5).\n"
" Ten APT ma moce Super Krowy.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"UWAGA: To jest tylko symulacja!\n"
-" apt-get wymaga do normalnego działania uprawnień administratora.\n"
-" Aktualnie blokowanie jest wyłączone, więc nie należy polegać\n"
-" na zwiÄ…zku z rzeczywistÄ… sytuacjÄ…!"
-
-# Ujednolicono z aptitude
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Stary "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Pobieranie:"
-
-# Wyrównane do Hit i Err.
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign. "
-
-# Wyrównane do Hit i Ign.
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "BÅ‚Ä…d "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Pobrano %sB w %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Pracuje]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Zmiana nośnika: Proszę włożyć dysk oznaczony\n"
-" \"%s\"\n"
-"do napędu \"%s\" i nacisnąć enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s nie może zostać oznaczony, ponieważ nie jest zainstalowany.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s został już ustawiony jako zainstalowany ręcznie.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s został już ustawiony jako zainstalowany automatycznie.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s został już zatrzymany.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s został już odznaczony jako zatrzymany.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Oczekiwano na proces %s, ale nie było go"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s został zatrzymany.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "Odznaczono zatrzymanie %s\n"
# Musi pasować do su i sudo.
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
"Uruchomienie dpkg nie powiodło się. Czy użyto uprawnień administratora?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1313,6 +709,23 @@ msgstr ""
"Proszę zapoznać się ze stronami podręcznika systemowego apt-mark(8)\n"
"i apt.conf(5), aby uzyskać więcej informacji."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1412,8 +825,8 @@ msgstr "Przekroczenie czasu połączenia"
msgid "Server closed the connection"
msgstr "Serwer zamknął połączenie"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "BÅ‚Ä…d odczytu"
@@ -1426,8 +839,8 @@ msgid "Protocol corruption"
msgstr "Naruszenie zasad protokołu"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "BÅ‚Ä…d zapisu"
@@ -1439,6 +852,10 @@ msgstr "Nie udało się utworzyć gniazda"
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:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Nie udało się"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Nie udało się połączyć pasywnego gniazda."
@@ -1481,7 +898,7 @@ msgstr "Przekroczony czas połączenia gniazda danych"
msgid "Unable to accept connection"
msgstr "Nie udało się przyjąć połączenia"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Nie udało się obliczyć skrótu pliku"
@@ -1614,81 +1031,622 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Puste pliki nie mogą być prawidłowymi archiwami"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "BÅ‚Ä…d przy pisaniu do pliku"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Błąd czytania z serwera: Zdalna strona zamknęła połączenie"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "BÅ‚Ä…d czytania z serwera"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "BÅ‚Ä…d przy pisaniu do pliku"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Operacja select nie powiodła się"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Przekroczenie czasu połączenia"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Błąd przy pisaniu do pliku wyjściowego"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Oczekiwanie na nagłówki"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Nieprawidłowa linia nagłówka"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek odpowiedzi"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Length"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Range"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Ten serwer HTTP nieprawidłowo obsługuje zakresy (ranges)"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Nieznany format daty"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Operacja select nie powiodła się"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Błędne dane nagłówka"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Przekroczenie czasu połączenia"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Połączenie nie powiodło się"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Błąd przy pisaniu do pliku wyjściowego"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Błąd wewnętrzny"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "BÅ‚Ä…d przy pisaniu do pliku"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "BÅ‚Ä…d przy pisaniu do pliku"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Błąd wewnętrzny, użyto InstallPackages z uszkodzonymi pakietami!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Błąd czytania z serwera: Zdalna strona zamknęła połączenie"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pakiety powinny zostać usunięte, ale Remove jest wyłączone."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "BÅ‚Ä…d czytania z serwera"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Błąd wewnętrzny, sortowanie niezakończone"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Błędne dane nagłówka"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Wystąpił dziwny błąd - rozmiary się nie zgadzają. Proszę to zgłosić pod "
+"apt@packages.debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Połączenie nie powiodło się"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Konieczne pobranie %sB/%sB archiwów.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Błąd wewnętrzny"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Konieczne pobranie %sB archiwów.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Po tej operacji zostanie dodatkowo użyte %sB miejsca na dysku.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Po tej operacji zostanie zwolnione %sB miejsca na dysku.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Niestety w %s nie ma wystarczającej ilości wolnego miejsca."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Wystąpiły problemy, a użyto -y bez --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Nakazano wykonywać tylko trywialne operacje, a ta do nich nie należy."
+
+# Bezpieczniej jest nie używać tu polskich znaków.
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Tak, jestem pewien!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Zaraz stanie siÄ™ coÅ› potencjalnie szkodliwego.\n"
+"Aby kontynuować proszę napisać zdanie \"%s\"\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Przerwane."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Kontynuować?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Nie udało się pobrać niektórych plików"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Nie udało się pobrać niektórych archiwów, proszę spróbować uruchomić apt-get "
+"update lub użyć opcji --fix-missing."
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing i zamiana nośników nie są obecnie obsługiwane"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Nie udało się poprawić brakujących pakietów."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Przerywanie instalacji"
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Następujący pakiet zniknął z tego systemu, ponieważ wszystkie jego pliki "
+"zostały nadpisane przez inne pakiety:"
+msgstr[1] ""
+"Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki "
+"zostały nadpisane przez inne pakiety:"
+msgstr[2] ""
+"Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki "
+"zostały nadpisane przez inne pakiety:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Uwaga: dpkg wykonał to automatycznie i celowo."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Nic nie powinno być usuwane, AutoRemover nie zostanie uruchomiony"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Wygląda na to, że AutoRemover coś uszkodził, a to naprawdę nie\n"
+"powinno się zdarzyć. Prosimy o zgłoszenie błędu w pakiecie apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Następujące informacje mogą pomóc rozwiązać sytuację:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Błąd wewnętrzny spowodowany przez AutoRemover"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Następujący pakiet został zainstalowany automatycznie i nie jest już więcej "
+"wymagany:"
+msgstr[1] ""
+"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej "
+"wymagane:"
+msgstr[2] ""
+"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej "
+"wymagane:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"%lu pakiet został zainstalowany automatycznie i nie jest już więcej "
+"wymagany.\n"
+msgstr[1] ""
+"%lu pakiety zostały zainstalowane automatycznie i nie są już więcej "
+"wymagane.\n"
+msgstr[2] ""
+"%lu pakietów zostało zainstalowanych automatycznie i nie są już więcej "
+"wymagane.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Aby go usunąć należy użyć \"apt-get autoremove\"."
+msgstr[1] "Aby je usunąć należy użyć \"apt-get autoremove\"."
+msgstr[2] "Aby je usunąć należy użyć \"apt-get autoremove\"."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+"Należy uruchomić \"apt-get -f install\", aby naprawić poniższe problemy:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Niespełnione zależności. Proszę spróbować wykonać \"apt-get -f install\" bez "
+"pakietów (lub podać rozwiązanie)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Nie udało się zainstalować niektórych pakietów. Może to oznaczać,\n"
+"że zażądano niemożliwej sytuacji lub użyto dystrybucji niestabilnej,\n"
+"w której niektóre pakiety nie zostały jeszcze utworzone lub przeniesione\n"
+"z katalogu Incoming (\"PrzychodzÄ…ce\")."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Pakiety sÄ… uszkodzone"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Zostaną zainstalowane następujące dodatkowe pakiety:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Sugerowane pakiety:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Polecane pakiety:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "UWAGA: Następujące pakiety nie mogą zostać zweryfikowane!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Zignorowano ostrzeżenie uwierzytelniania.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Niektóre pakiety nie mogły zostać zweryfikowane"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Zainstalować te pakiety bez weryfikacji?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Nie udało się pobrać %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Zainstalowany]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Zainstalowany]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Zainstalowany]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Następujące pakiety mają niespełnione zależności:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "ale %s jest zainstalowany"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "ale %s ma zostać zainstalowany"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "ale nie da się go zainstalować"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "ale jest pakietem wirtualnym"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "ale nie jest zainstalowany"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "ale nie zostanie zainstalowany"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " lub"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Zostaną zainstalowane następujące NOWE pakiety:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Następujące pakiety zostaną USUNIĘTE:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Następujące pakiety zostały zatrzymane:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Następujące pakiety zostaną zaktualizowane:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Zostaną zainstalowane STARE wersje następujących pakietów:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Zostaną zmienione następujące zatrzymane pakiety:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (z powodu %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"UWAGA: Zostaną usunięte następujące istotne pakiety.\n"
+"NIE należy kontynuować, jeśli nie jest się pewnym tego co się robi!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu aktualizowanych, %lu nowo instalowanych, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu ponownie instalowanych, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu cofniętych wersji, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu usuwanych i %lu nieaktualizowanych.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu nie w pełni zainstalowanych lub usuniętych.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[T/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[t/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "T"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Błąd kompilacji wyrażenia regularnego - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Naprawianie zależności..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " nie udało się."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Nie udało się naprawić zależności"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Nie udało się zminimalizować zbioru aktualizacji"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Gotowe"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Należy uruchomić \"apt-get -f install\", aby je naprawić."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Niespełnione zależności. Proszę spróbować użyć -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Polecenie update nie wymaga żadnych argumentów"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Obliczanie aktualizacji..."
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Błąd wewnętrzny spowodowany przez AllUpgrade"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Gotowe"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"UWAGA: To jest tylko symulacja!\n"
+" apt-get wymaga do normalnego działania uprawnień administratora.\n"
+" Aktualnie blokowanie jest wyłączone, więc nie należy polegać\n"
+" na zwiÄ…zku z rzeczywistÄ… sytuacjÄ…!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Nie udało się zmienić nazwy %s na %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+# Ujednolicono z aptitude
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Stary "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Pobieranie:"
+
+# Wyrównane do Hit i Err.
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign. "
+
+# Wyrównane do Hit i Ign.
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "BÅ‚Ä…d "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Pobrano %sB w %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Pracuje]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Zmiana nośnika: Proszę włożyć dysk oznaczony\n"
+" \"%s\"\n"
+"do napędu \"%s\" i nacisnąć enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Nie można czytać %s"
@@ -1751,36 +1709,36 @@ msgstr "Nie udało się utworzyć potoku IPC do podprocesu"
msgid "Connection closed prematurely"
msgstr "Połączenie zostało przedwcześnie zamknięte"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Nieprawidłowe ustawienie domyślne!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Proszę nacisnąć enter, aby kontynuować."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Czy usunąć wszystkie pobrane wcześniej pliki .deb?"
# Note to translators: The following four messages belong together. It doesn't
# matter where sentences start, but it has to fit in just these four lines, and
# at only 80 characters per line, if possible.
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Wystąpiły problemy przy rozpakowywaniu. Zainstalowane pakiety zostaną"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "skonfigurowane. Może to spowodować podwójne błędy lub błędy"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"spowodowane brakującymi zależnościami. Jest to normalne. Tylko błędy nad tym"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -2032,36 +1990,36 @@ msgstr "Nie udało się odczytać dowiązania %s"
msgid "Failed to unlink %s"
msgstr "Nie udało się usunąć %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Nie udało się dowiązać %s do %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Osiągnięto ograniczenie odłączania %sB.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Archiwum nie posiadało pola pakietu"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s nie posiada wpisu w pliku override\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " opiekunem %s jest %s, a nie %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s nie posiada wpisu w pliku override źródeł\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s nie posiada również wpisu w pliku override binariów\n"
@@ -2140,7 +2098,7 @@ msgstr "Problem przy usuwaniu %s"
msgid "Failed to rename %s to %s"
msgstr "Nie udało się zmienić nazwy %s na %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2209,7 +2167,7 @@ msgstr "Uszkodzone archiwum"
msgid "Tar checksum failed, archive corrupted"
msgstr "Niepoprawna suma kontrolna tar, archiwum jest uszkodzone"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Nieznany typ nagłówka TAR %u, składnik %s"
@@ -2333,24 +2291,17 @@ msgid "Unable to stat %s"
msgstr "Nie można wykonać operacji stat na %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "To nie jest poprawne archiwum DEB, brakuje składnika \"%s\""
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"To nie jest poprawne archiwum DEB, brakuje składnika \"%s\", \"%s\" lub \"%s"
-"\""
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Błąd wewnętrzny, nie udało się odnaleźć składnika %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Plik kontrolny nie może zostać poprawnie zinterpretowany"
@@ -2411,87 +2362,87 @@ msgstr ""
"zostało wyłączone przez użytkownika."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr "%lidni %lig %limin %lis"
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lig %limin %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Nie odnaleziono wyboru %s"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Nierozpoznany skrót typu: \"%c\""
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Otwieranie pliku konfiguracyjnego %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Błąd składniowy %s:%u: Błędny znacznik"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, 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:869
+#: apt-pkg/contrib/configuration.cc:881
#, 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:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Błąd składniowy %s:%u: czysta dyrektywa wymaga drzewa opcji jako argumentu"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, 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"
@@ -2516,48 +2467,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Gotowe"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Opcja linii poleceń \"%c\" [z %s] jest nieznana."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Niezrozumiała opcja linii poleceń %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Opcja linii poleceń %s nie jest typu logicznego"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Opcja %s wymaga argumentu."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Opcja %s: Specyfikacja elementu konfiguracji musi zawierać =<wartość>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Opcja %s wymaga argumentu typu całkowitego, nie \"%s\""
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Opcja \"%s\" jest zbyt długa"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Znaczenie %s jest nieznane, proszę spróbować true lub false."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Nieprawidłowa operacja %s"
@@ -2571,50 +2522,50 @@ msgstr "Nie udało się wykonać operacji stat na punkcie montowania %s"
msgid "Failed to stat the cdrom"
msgstr "Nie udało się wykonać operacji stat na CDROM-ie"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problem przy zamykaniu pliku gzip %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Dla pliku blokady %s tylko do odczytu nie zostanie użyta blokada"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Nie udało się otworzyć pliku blokady %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Dla pliku blokady %s montowanego przez NFS nie zostanie użyta blokada"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Nie udało się uzyskać blokady %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
"Lista plików nie może zostać stworzona, ponieważ \"%s\" nie jest katalogiem"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "Ignorowanie \"%s\" w katalogu \"%s\", ponieważ nie jest to zwykły plik"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
"Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ nie ma on rozszerzenia "
"pliku"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
@@ -2622,70 +2573,70 @@ msgstr ""
"Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ ma on nieprawidłowe "
"rozszerzenie pliku"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Podproces %s spowodował naruszenie ochrony pamięci."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Podproces %s otrzymał sygnał %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Podproces %s zakończył się niespodziewanie"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Nie udało się otworzyć pliku %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Nie udało się otworzyć deskryptora pliku %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Nie udało się utworzyć IPC z podprocesem"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Nie udało się uruchomić kompresora "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "należało przeczytać jeszcze %llu, ale nic nie zostało"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "należało zapisać jeszcze %llu, ale nie udało się to"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Problem przy zamykaniu pliku %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problem przy zapisywaniu pliku %s w %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Problem przy odlinkowywaniu pliku %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problem przy zapisywaniu pliku na dysk"
@@ -2802,12 +2753,12 @@ msgstr "Nie udało się otworzyć pliku stanu %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Nie udało się zapisać tymczasowego pliku stanu %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Nie udało się zanalizować pliku pakietu %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Nie udało się zanalizować pliku pakietu %s (2)"
@@ -2884,7 +2835,7 @@ msgstr "Nieprawidłowa linia %u w liście źródeł %s (typ)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2894,12 +2845,12 @@ msgstr ""
"5 apt.conf\" i zapoznać się z wpisem APT::Immediate-Configure aby dowiedzieć "
"się więcej. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "Nie udało się skonfigurować \"%s\". "
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2924,7 +2875,7 @@ msgstr ""
"Pakiet %s ma zostać ponownie zainstalowany, ale nie można znaleźć jego "
"archiwum."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2932,18 +2883,10 @@ msgstr ""
"Błąd, pkgProblemResolver::Resolve zwrócił błąd, może to być spowodowane "
"zatrzymanymi pakietami."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
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:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Nie udało się pobrać niektórych plików indeksu, zostały one zignorowane lub "
-"użyto ich starszej wersji."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2986,12 +2929,12 @@ msgstr "Metoda %s nie uruchomiła się poprawnie"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Proszę włożyć do napędu \"%s\" dysk o nazwie: \"%s\" i nacisnąć enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "System pakietów \"%s\" nie jest obsługiwany"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Nie udało się określić odpowiedniego typu systemu pakietów"
@@ -3025,17 +2968,17 @@ msgstr ""
"Wartość %s jest nieprawidłowa dla APT::Default-Release, ponieważ takie "
"wydanie nie jest dostępne w źródłach"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Nieprawidłowe informacje w pliku ustawień %s, brak nagłówka Package"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Nierozpoznany typ przypinania %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Brak (lub zerowy) priorytet przypięcia"
@@ -3103,16 +3046,20 @@ msgstr "BÅ‚Ä…d wejÅ›cia/wyjÅ›cia przy zapisywaniu podrÄ™cznego magazynu źródeÅ
msgid "rename failed, %s (%s -> %s)."
msgstr "nie udało się zmienić nazwy, %s (%s -> %s)"
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Błędna suma MD5"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Błędna suma kontrolna"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Błędny rozmiar"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Nieprawidłowa operacja %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3121,16 +3068,16 @@ msgstr ""
"Nie udało się znaleźć oczekiwanego wpisu \"%s\" w pliku Release "
"(nieprawidłowy wpis sources.list lub nieprawidłowy plik)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Nie udało się znaleźć sumy kontrolnej \"%s\" w pliku Release"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3139,12 +3086,12 @@ msgstr ""
"Plik Release dla %s wygasnął (nieprawidłowy od %s). Aktualizacje z tego "
"repozytorium nie będą wykonywane."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Nieprawidłowa dystrybucja: %s (oczekiwano %s, a otrzymano %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3154,12 +3101,12 @@ msgstr ""
"w dalszym ciągu będą używane poprzednie pliki indeksu. Błąd GPG %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "BÅ‚Ä…d GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3168,32 +3115,24 @@ 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:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"Nie udało się odnaleźć pliku dla pakietu %s. Może to oznaczać, że trzeba "
-"będzie ręcznie naprawić ten pakiet."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "Nie można znaleźć źródła do pobrania wersji \"%s\" pakietu \"%s\""
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, 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:1879
-msgid "Size mismatch"
-msgstr "Błędny rozmiar"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Nie udało się przeanalizować pliku Release %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Brak sekcji w pliku Release %s"
@@ -3338,35 +3277,35 @@ msgstr "Nie udało się znaleźć wpisu uwierzytelnienia dla: %s"
msgid "Hash mismatch for: %s"
msgstr "Błędna suma kontrolna dla: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Wydanie \"%s\" dla \"%s\" nie zostało znalezione"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Wersja \"%s\" dla \"%s\" nie została znaleziona"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Nie udało się odnaleźć zadania \"%s\""
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr ""
"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\""
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
"Nie udało się wybrać wersji z pakietu \"%s\", ponieważ jest on czysto "
"wirtualny"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3375,21 +3314,21 @@ msgstr ""
"Nie udało się wybrać zainstalowanej ani kandydującej wersji pakietu \"%s\", "
"ponieważ nie ma żadnej z nich"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Nie udało się wybrać najnowszej wersji pakietu \"%s\", ponieważ jest on "
"czysto wirtualny"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Nie udało się wybrać wersji kandydującej pakietu %s, ponieważ nie ma "
"kandydata"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3418,111 +3357,131 @@ msgstr ""
msgid "Execute external solver"
msgstr "Wykonywanie zewnętrznego mechanizmu rozwiązywania zależności"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Uruchamianie dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Nie udało się pobrać niektórych plików indeksu, zostały one zignorowane lub "
+"użyto ich starszej wersji."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Instalowanie %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Konfigurowanie %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Usuwanie %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "Całkowite usuwanie %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Proszę odnotować zniknięcie %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Uruchamianie wyzwalacza post-installation %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Brakuje katalogu \"%s\""
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Nie udało się otworzyć pliku \"%s\""
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Przygotowywanie %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Rozpakowywanie %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Przygotowywanie do konfiguracji %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Pakiet %s został zainstalowany"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Przygotowywanie do usunięcia %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Pakiet %s został usunięty"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Przygotowywanie do całkowitego usunięcia %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Pakiet %s został całkowicie usunięty"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Nie udało się pisać do %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Nie można zapisać dziennika, openpty() nie powiodło się (/dev/pts nie jest "
-"zamontowane?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Uruchamianie dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "Operacja została przerwana, zanim mogła zostać zakończona"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "Brak raportu programu apport, ponieważ osiągnięto limit MaxReports"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "problemy z zależnościami - pozostawianie nieskonfigurowanego"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3530,7 +3489,7 @@ msgstr ""
"Brak raportu programu apport, ponieważ komunikat błędu wskazuje, że "
"przyczyna niepowodzenia leży w poprzednim błędzie."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3538,7 +3497,7 @@ msgstr ""
"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na "
"przepełnienie dysku"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3546,7 +3505,16 @@ msgstr ""
"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd "
"braku wolnej pamięci"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na "
+"przepełnienie dysku"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3583,6 +3551,99 @@ msgstr ""
msgid "Not locked"
msgstr "Niezablokowany"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Uwaga, wybieranie %s dla zadania \"%s\"\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Uwaga, wybieranie %s dla wyrażenia \"%s\"\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Pakiet %s jest pakietem wirtualnym zapewnianym przez:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Brak wersji kandydujÄ…cej]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Należy jednoznacznie wybrać jeden z nich do instalacji."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Pakiet %s nie ma dostępnej wersji, ale odnosi się do niego inny pakiet.\n"
+#~ "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"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Jednak następujące pakiety go zastępują:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Pakiet %s nie ma kandydata do instalacji"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Pakiety wirtualne, takie jak \"%s\" nie mogą być usunięte\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Pakiet %s nie jest zainstalowany, więc nie zostanie usunięty. Czy "
+#~ "chodziło o \"%s\"?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Pakiet \"%s\" nie jest zainstalowany, więc nie zostanie usunięty\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Uwaga, wybieranie \"%s\" zamiast \"%s\"\n"
+
+#~ 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"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Pomijanie %s, nie jest zainstalowane, a wybrano wyłącznie aktualizacje.\n"
+
+#~ 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"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s jest już w najnowszej wersji.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Wybrano wersjÄ™ \"%s\" (%s) pakietu \"%s\"\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Wybrano wersjÄ™ \"%s\" (%s) pakietu \"%s\", z powodu \"%s\"\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Ignorowanie niedostępnego wydania docelowego %s pakietu %s"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "Pobieranie %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "To nie jest poprawne archiwum DEB, brakuje składnika \"%s\", \"%s\" lub "
+#~ "\"%s\""
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Błędna suma MD5"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Nie udało się odnaleźć pliku dla pakietu %s. Może to oznaczać, że trzeba "
+#~ "będzie ręcznie naprawić ten pakiet."
+
+#~ 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 "
+#~ "jest zamontowane?)\n"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "Plik %s nie zaczyna się wiadomością podpisaną w trybie clearsign"
diff --git a/po/pt.po b/po/pt.po
index 5d4478280..45d938b19 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-06-29 15:45+0100\n"
"Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n"
"Language-Team: Portuguese <traduz@debianpt.org>\n"
@@ -18,153 +18,155 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Lokalize 1.0\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "O pacote %s versão %s tem uma dependência não satisfeita:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Total de nomes de pacotes: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Total de estruturas de pacotes: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Pacotes normais: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Pacotes virtuais puros: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Pacotes virtuais únicos: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Pacotes virtuais misturados: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Faltam: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Total de versões distintas: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Total de descrições distintas: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Total de dependências: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Total de relações ver/ficheiro: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Total de relações Desc/Ficheiro: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Total de Mapeamentos 'Provides': "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Total de strings globbed: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Espaço total de dependência de versão: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Espaço total desperdiçado: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Espaço total contabilizado: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "O ficheiro do pacote %s está dessincronizado."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Não foi encontrado nenhum pacote"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Tem de fornecer pelo menos um padrão de busca"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
"Este comando foi depreceado. Em vez disso por favor utilize 'apt-mark "
"showauto'."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Não foi possível encontrar o pacote %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Ficheiros de Pacotes :"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"A cache está dessincronizada, não pode x-referenciar um ficheiro de pacote"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Pacotes Marcados:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(não encontrado)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Instalado: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Candidato: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(nenhum)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Marcação do Pacote: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Tabela de Versão:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s para %s compilado em %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -236,36 +238,36 @@ msgstr ""
"Para mais informações veja as páginas do manual apt-cache(8) e apt.conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
"Por favor indique um nome para este Disco, tal como 'Debian 5.0.3 Disco 1'"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Falhou ao montar '%s' para '%s'"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Repita este processo para o resto dos CDs no seu conjunto."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "os argumentos não estão em pares"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -294,557 +296,32 @@ msgstr ""
" -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/"
"tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[S/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "s/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "S"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "N"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Erro de compilação de regex - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Os pacotes a seguir têm dependências não satisfeitas:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "mas %s está instalado"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "mas %s está para ser instalado"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "mas não é instalável"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "mas é um pacote virtual"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "mas não está instalado"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "mas não vai ser instalado"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " ou"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Serão instalados os seguintes NOVOS pacotes:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Serão REMOVIDOS os seguintes pacotes:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Serão mantidos em suas versões actuais os seguintes pacotes:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Serão actualizados os seguintes pacotes:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Será feito o DOWNGRADE aos seguintes pacotes:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Os seguintes pacotes mantidos serão mudados:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (devido a %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"AVISO: Os seguintes pacotes essenciais serão removidos.\n"
-"Isso NÃO deverá ser feito a menos que saiba exactamente o que está a fazer!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu pacotes actualizados, %lu pacotes novos instalados, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstalados, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu a que foi feito o downgrade, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu a remover e %lu não actualizados.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu pacotes não totalmente instalados ou removidos.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Note, a seleccionar '%s' para a tarefa '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, 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:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Instalado]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr "[Não é versão candidata]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Você deve seleccionar explicitamente um para instalar."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"O pacote %s não está disponível, mas é referenciado por outro pacote.\n"
-"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:729
-msgid "However the following packages replace it:"
-msgstr "No entanto, os seguintes pacotes substituem-no:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "O pacote '%s' não tem candidato para instalação"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Pacotes virtuais como '%s' não podem ser removidos\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"O pacote '%s' não está instalado, por isso não será removido. Queria dizer "
-"'%s'?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, 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:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Note, a seleccionar '%s' em vez de '%s'\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "Saltando %s, não está instalado e só são pedidas actualizações.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s já está na versão mais recente.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s está definido para ser instalado manualmente.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Versão seleccionada '%s' (%s) para '%s'\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Versão seleccionada '%s' (%s) para '%s' devido a '%s'\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "A corrigir dependências..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " falhou."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Não foi possível corrigir dependências"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Não foi possível minimizar o conjunto de actualizações"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Feito"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dependências não satisfeitas. Tente utilizar -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "AVISO: Os seguintes pacotes não podem ser autenticados!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Aviso de autenticação ultrapassado.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Instalar estes pacotes sem verificação?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Alguns pacotes não puderam ser autenticados"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Erro Interno, Ordering não terminou"
-
-#: cmdline/apt-get.cc:1218
-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"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "É necessário obter %sB/%sB de arquivos.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "É necessário obter %sB de arquivos.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, 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"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, 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:1270
-#, 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:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Trivial Only especificado mas isto não é uma operação trivial."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Sim, faça como eu digo!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Você está prestes a fazer algo potencialmente nocivo.\n"
-"Para continuar escreva a frase '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Abortado."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Deseja continuar?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Falhou obter %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Falhou o download de alguns ficheiros"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Download completo e em modo de fazer apenas o download"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Não foi possível obter alguns arquivos, tente talvez correr apt-get update "
-"ou tente com --fix-missing?"
-
-#: cmdline/apt-get.cc:1414
-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:1419
-msgid "Unable to correct missing packages."
-msgstr "Não foi possível corrigir os pacotes em falta."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "A abortar a instalação."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"O seguinte pacote desapareceu do seu sistema pois\n"
-"todos os ficheiros foram sobrescritos por outros pacotes:"
-msgstr[1] ""
-"Os seguintes pacotes desapareceram do seu sistema pois\n"
-"todos os ficheiros foram por outros pacotes:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Nota: Isto foi feito automaticamente e intencionalmente pelo dpkg."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Ignorar o lançamento pretendido, não disponível, '%s' do pacote '%s'"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "A escolher '%s' como pacote pacote de código fonte em vez de '%s'\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Ignorar a versão '%s', não disponível, do pacote '%s'"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "O comando update não leva argumentos"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, parece que o AutoRemover destruiu algo que realmente não deveria ter\n"
-"acontecido. Por favor arquive um relatório de bug contra o apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-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:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Erro Interno, o AutoRemover estragou coisas"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"O seguinte pacote foi instalado automaticamente e já não é necessário:"
-msgstr[1] ""
-"Os seguintes pacotes foram instalados automaticamente e já não são "
-"necessários:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "O pacote %lu foi instalado automaticamente e já não é necessário.\n"
-msgstr[1] ""
-"Os pacotes %lu foram instalados automaticamente e já não são necessários.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Utilize 'apt-get autoremove' para o remover."
-msgstr[1] "Utilize 'apt-get autoremove' para os remover."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Erro Interno, AllUpgrade estragou algo"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Dependências não satisfeitas. Tente 'apt-get -f install' sem nenhum pacote "
-"(ou especifique uma solução)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Alguns pacotes não puderam ser instalados. Isso pode significar que\n"
-"você solicitou uma situação impossível ou se você está a usar a\n"
-"distribuição unstable em que alguns pacotes pedidos ainda não foram \n"
-"criados ou foram movidos do Incoming."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Pacotes estragados"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Os seguintes pacotes extra serão instalados:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Pacotes sugeridos:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Pacotes recomendados:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Impossível encontrar o pacote %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s está definido para ser instalado manualmente.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s está definido para ser instalado automaticamente.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -852,46 +329,24 @@ msgstr ""
"Este comando foi depreceado. Em vez disso, por favor utilize 'apt-mark auto' "
"e 'apt-mark manual'."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "A calcular a actualização... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Falhou"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Pronto"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Erro Interno, o solucionador de problemas estragou coisas"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Impossível criar acesso exclusivo ao directório de downloads"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "Não conseguiu encontrar uma fonte para obter a versão '%s' de '%s'"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "A obter %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, 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:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -901,7 +356,7 @@ msgstr ""
"'%s' em:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -912,71 +367,81 @@ msgstr ""
"bzr branch %s\n"
"para obter as últimas actualizações (possivelmente por lançar) ao pacote.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, 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:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, 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:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Você não possui espaço livre suficiente em %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "É necessário obter %sB/%sB de arquivos de código fonte.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, 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:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Obter código fonte %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Falhou obter alguns arquivos."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Download completo e em modo de fazer apenas o download"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "O comando de descompactação '%s' falhou.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "O comando de compilação '%s' falhou.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "O processo filho falhou"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -985,18 +450,18 @@ msgstr ""
"Nenhuma informação de arquitectura disponível para %s. Para configuração "
"veja apt.conf(5) APT::Architectures"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s não tem dependências de compilação.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1005,7 +470,7 @@ msgstr ""
"a dependência de %s por %s não pode ser satisfeita porque %s não é permitido "
"em pacotes '%s'"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1014,14 +479,14 @@ msgstr ""
"a dependência de %s para %s não pôde ser satisfeita porque o pacote %s não "
"pôde ser encontrado"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1030,7 +495,7 @@ msgstr ""
"a dependência de %s para %s não pode ser satisfeita porque a versão "
"candidata do pacote %s não pode satisfazer os requisitos de versão"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1039,30 +504,30 @@ msgstr ""
"a dependência de %s para %s não pode ser satisfeita porque o pacote %s não "
"tem versão candidata"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, 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:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Falhou processar as dependências de compilação"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Changlog para %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Módulos Suportados:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1152,102 +617,53 @@ msgstr ""
"apt-get(8), sources.list(5) e apt.conf(5)\n"
" Este APT tem Poderes de Super Vaca.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"NOTE:\tIsto é apenas uma simulação!\n"
-"\to apt-get necessita de privilégios de root para a execução real.\n"
-"\tTenha em mente que o acesso exclusivo está desabilitado,\n"
-"\tpor isso não confie na relevância da real situação actual!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Hit "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Obter:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Obtidos %sB em %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [A trabalhar]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Troca de mídia: Por favor insira o disco chamado\n"
-" '%s'\n"
-"no leitor '%s' e pressione enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s não pode ser marcado pois não está instalado.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s já estava definido para ser instalado manualmente.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s já estava definido para ser instalado automaticamente.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s já estava marcado para manter.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s já estava para não manter.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Esperou por %s mas não estava lá"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s marcado para manter.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "Cancelou manter em %s.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "Falhou executar dpkg. É root?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1289,6 +705,23 @@ msgstr ""
"tmp\n"
"Para mais informações veja as páginas apt-mark(8) e apt.conf(5) do manual."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1386,8 +819,8 @@ msgstr "Foi atingido o tempo limite de ligação"
msgid "Server closed the connection"
msgstr "O servidor fechou a ligação"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Erro de leitura"
@@ -1400,8 +833,8 @@ msgid "Protocol corruption"
msgstr "Corrupção de protocolo"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Erro de escrita"
@@ -1413,6 +846,10 @@ msgstr "Não foi possível criar um socket"
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:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Falhou"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Não foi possível ligar socket passivo."
@@ -1455,7 +892,7 @@ msgstr "Ligação de socket de dados expirou"
msgid "Unable to accept connection"
msgstr "Impossível aceitar ligação"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problema ao calcular o hash do ficheiro"
@@ -1589,81 +1026,603 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Ficheiros vazios não podem ser arquivos válidos"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Erro ao escrever para o ficheiro"
+
+#: methods/http.cc:533
+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:535
+msgid "Error reading from server"
+msgstr "Erro ao ler do servidor"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Erro ao escrever para ficheiro"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "A selecção falhou"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "O tempo da ligação expirou"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Erro ao escrever para o ficheiro de saída"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "A aguardar por cabeçalhos"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Linha de cabeçalho errada"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido"
-#: methods/http.cc:606
+#: methods/server.cc:176
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:621
+#: methods/server.cc:199
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:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Este servidor HTTP possui suporte de range errado"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Formato de data desconhecido"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "A selecção falhou"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Dados de cabeçalho errados"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "O tempo da ligação expirou"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "A ligação falhou"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Erro ao escrever para o ficheiro de saída"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Erro interno"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Erro ao escrever para ficheiro"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Erro ao escrever para o ficheiro"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Erro ao ler do servidor. O lado remoto fechou a ligação"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Erro ao ler do servidor"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Erro Interno, Ordering não terminou"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Dados de cabeçalho errados"
+#: apt-private/private-install.cc:159
+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"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "A ligação falhou"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "É necessário obter %sB/%sB de arquivos.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Erro interno"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "É necessário obter %sB de arquivos.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, 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"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Após esta operação, será libertado %sB de espaço em disco.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Você não possui espaço livre suficiente em %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Há problemas e foi utilizado -y sem --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Trivial Only especificado mas isto não é uma operação trivial."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Sim, faça como eu digo!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Você está prestes a fazer algo potencialmente nocivo.\n"
+"Para continuar escreva a frase '%s'\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Abortado."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Deseja continuar?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Falhou o download de alguns ficheiros"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Não foi possível obter alguns arquivos, tente talvez correr apt-get update "
+"ou tente com --fix-missing?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing e troca de mídia não são suportados actualmente"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Não foi possível corrigir os pacotes em falta."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "A abortar a instalação."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"O seguinte pacote desapareceu do seu sistema pois\n"
+"todos os ficheiros foram sobrescritos por outros pacotes:"
+msgstr[1] ""
+"Os seguintes pacotes desapareceram do seu sistema pois\n"
+"todos os ficheiros foram por outros pacotes:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Nota: Isto foi feito automaticamente e intencionalmente pelo dpkg."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Não é suposto nós apagarmos coisas, não pode iniciar o AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, parece que o AutoRemover destruiu algo que realmente não deveria ter\n"
+"acontecido. Por favor arquive um relatório de bug contra o apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "A seguinte informação pode ajudar a resolver a situação:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Erro Interno, o AutoRemover estragou coisas"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"O seguinte pacote foi instalado automaticamente e já não é necessário:"
+msgstr[1] ""
+"Os seguintes pacotes foram instalados automaticamente e já não são "
+"necessários:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "O pacote %lu foi instalado automaticamente e já não é necessário.\n"
+msgstr[1] ""
+"Os pacotes %lu foram instalados automaticamente e já não são necessários.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Utilize 'apt-get autoremove' para o remover."
+msgstr[1] "Utilize 'apt-get autoremove' para os remover."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Você deve querer executar 'apt-get -f install' para corrigir estes:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Dependências não satisfeitas. Tente 'apt-get -f install' sem nenhum pacote "
+"(ou especifique uma solução)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Alguns pacotes não puderam ser instalados. Isso pode significar que\n"
+"você solicitou uma situação impossível ou se você está a usar a\n"
+"distribuição unstable em que alguns pacotes pedidos ainda não foram \n"
+"criados ou foram movidos do Incoming."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Pacotes estragados"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Os seguintes pacotes extra serão instalados:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Pacotes sugeridos:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Pacotes recomendados:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "AVISO: Os seguintes pacotes não podem ser autenticados!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Aviso de autenticação ultrapassado.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Alguns pacotes não puderam ser autenticados"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Instalar estes pacotes sem verificação?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Falhou obter %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Instalado]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Instalado]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Instalado]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Os pacotes a seguir têm dependências não satisfeitas:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "mas %s está instalado"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "mas %s está para ser instalado"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "mas não é instalável"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "mas é um pacote virtual"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "mas não está instalado"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "mas não vai ser instalado"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " ou"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Serão instalados os seguintes NOVOS pacotes:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Serão REMOVIDOS os seguintes pacotes:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Serão mantidos em suas versões actuais os seguintes pacotes:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Serão actualizados os seguintes pacotes:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Será feito o DOWNGRADE aos seguintes pacotes:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Os seguintes pacotes mantidos serão mudados:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (devido a %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"AVISO: Os seguintes pacotes essenciais serão removidos.\n"
+"Isso NÃO deverá ser feito a menos que saiba exactamente o que está a fazer!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu pacotes actualizados, %lu pacotes novos instalados, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstalados, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu a que foi feito o downgrade, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu a remover e %lu não actualizados.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu pacotes não totalmente instalados ou removidos.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[S/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "s/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "S"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "N"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Erro de compilação de regex - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "A corrigir dependências..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " falhou."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Não foi possível corrigir dependências"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Não foi possível minimizar o conjunto de actualizações"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Feito"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Você pode querer executar 'apt-get -f install' para corrigir isso."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dependências não satisfeitas. Tente utilizar -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "O comando update não leva argumentos"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "A calcular a actualização... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Erro Interno, AllUpgrade estragou algo"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Pronto"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"NOTE:\tIsto é apenas uma simulação!\n"
+"\to apt-get necessita de privilégios de root para a execução real.\n"
+"\tTenha em mente que o acesso exclusivo está desabilitado,\n"
+"\tpor isso não confie na relevância da real situação actual!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Falha ao baixar %s %s\n"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Hit "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Obter:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Obtidos %sB em %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [A trabalhar]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Troca de mídia: Por favor insira o disco chamado\n"
+" '%s'\n"
+"no leitor '%s' e pressione enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Não foi possível ler %s"
@@ -1726,36 +1685,36 @@ msgstr "Falha ao criar pipe IPC para subprocesso"
msgid "Connection closed prematurely"
msgstr "Ligação encerrada prematuramente"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Configuração pré-definida errada!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Carregue em enter para continuar."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Deseja apagar quaisquer ficheiros .deb obtidos previamente?"
# Note to translators: The following four messages belong together. It doesn't
# matter where sentences start, but it has to fit in just these four lines, and
# at only 80 characters per line, if possible.
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
"Ocorreram alguns erros ao descompactar. Os pacotes que foram instalados"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "serão configurados. Isto pode resultar em erros duplicados"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "causados por dependências em falta. Isto está OK, somente os erros"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -2007,36 +1966,36 @@ msgstr "Falhou o readlink %s"
msgid "Failed to unlink %s"
msgstr "Falhou o unlink %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Falhou ligar %s a %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Limite DeLink de %sB atingido.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Arquivo não possuía campo package"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s não possui entrada override\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " o maintainer de %s é %s, não %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s não possui fonte de entrada de 'override'\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s também não possui entrada binária de 'override'\n"
@@ -2115,7 +2074,7 @@ msgstr "Problema ao executar unlinking %s"
msgid "Failed to rename %s to %s"
msgstr "Falhou renomear %s para %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2184,7 +2143,7 @@ msgstr "Arquivo corrompido"
msgid "Tar checksum failed, archive corrupted"
msgstr "A soma de controlo do tar falhou, arquivo corrompido"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s"
@@ -2308,22 +2267,17 @@ msgid "Unable to stat %s"
msgstr "Não foi possível fazer stat %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Este não é um arquivo DEB válido, falta o membro '%s'"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "Este não é um arquivo DEB válido, não tem '%s', '%s' ou o membro '%s'"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Erro Interno, não foi possível localizar o membro %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Ficheiro de controle não interpretável"
@@ -2384,88 +2338,88 @@ msgstr ""
"está desabilitado pelo utilizador."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lih %limin %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "A selecção %s não foi encontrada"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Abreviatura de tipo desconhecida: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "A abrir o ficheiro de configuração %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Erro de sintaxe %s:%u: Tag mal formada"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, 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:869
+#: apt-pkg/contrib/configuration.cc:881
#, 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:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Erro de sintaxe %s:%u: directiva clara necessita de uma árvore de opções "
"como argumento"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, 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"
@@ -2490,48 +2444,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Pronto"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Opção '%c' da linha de comandos [de %s] é desconhecida."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Opção %s de linha de comandos não é compreendida"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Opção %s da linha de comandos não é booleana"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "A opção %s necessita de um argumento."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Opção %s: Especificação de item de configuração tem de ter um =<val>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Opção %s necessita de um número inteiro como argumento, não '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Opção '%s' é demasiado longa"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "O sentido %s não é compreendido, tente verdadeiro ou falso."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Operação %s inválida"
@@ -2545,53 +2499,53 @@ msgstr "Impossível executar stat ao ponto de montagem %s"
msgid "Failed to stat the cdrom"
msgstr "Impossível executar stat ao cdrom"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problema ao fechar o ficheiro gzip %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
"Não está a ser utilizado acesso exclusivo para apenas leitura ao ficheiro %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Não foi possível abrir ficheiro de lock %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
"Não está a ser utilizado o acesso exclusivo para o ficheiro %s, montado via "
"nfs"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Não foi possível obter acesso exclusivo a %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
"Lista de ficheiros que não podem ser criados porque '%s' não é um directório"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "A ignorar '%s' no directório '%s' porque não é um ficheiro normal"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
"A ignorar o ficheiro '%s' no directório '%s' porque não tem extensão no nome "
"do ficheiro"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
@@ -2599,70 +2553,70 @@ msgstr ""
"A ignorar o ficheiro '%s' no directório '%s' porque tem uma extensão "
"inválida no nome do ficheiro"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, 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:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "O sub-processo %s recebeu o sinal %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "O sub-processo %s terminou inesperadamente"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Não foi possível abrir ficheiro o %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Não foi possível abrir o descritor de ficheiro %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Falhou criar subprocesso IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Falhou executar compactador "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "lidos, ainda restam %llu para serem lidos mas não resta nenhum"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "escritos, ainda restam %llu para escrever mas não foi possível"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Problema ao fechar o ficheiro %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problema ao renomear o ficheiro %s para %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Problema ao remover o link do ficheiro %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problema sincronizando o ficheiro"
@@ -2779,12 +2733,12 @@ msgstr "Falhou abrir o StateFile %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Falha escrever ficheiro temporário StateFile %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Não foi possível fazer parse ao ficheiro do pacote %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Não foi possível fazer parse ao ficheiro de pacote %s (2)"
@@ -2862,7 +2816,7 @@ msgstr "Linha mal formada %u na lista de fontes %s (tipo)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2871,12 +2825,12 @@ msgstr ""
"Não foi possível proceder à configuração imediata em '%s'. Para detalhes, "
"por favor veja man 5 apt.conf em APT::Immediate-Configure. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "Não pode configurar '%s'. "
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2901,7 +2855,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:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2909,20 +2863,12 @@ msgstr ""
"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por "
"pacotes mantidos (hold)."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
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:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Falhou o download de alguns ficheiros de índice. Foram ignorados ou os "
-"antigos foram usados em seu lugar."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2966,12 +2912,12 @@ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
"Por favor insira o disco denominado: '%s' no leitor '%s' e pressione enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Sistema de empacotamento '%s' não é suportado"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr ""
"Não foi possível determinar um tipo de sistema de empacotamento adequado"
@@ -3008,17 +2954,17 @@ msgstr ""
"O valor '%s' é inválido para APT::Default-Release porque tal lançamento não "
"está disponível nas fontes"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Registo inválido no ficheiro de preferências %s, sem cabeçalho Package"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, 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:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Nenhuma prioridade (ou zero) especificada para marcação (pin)"
@@ -3091,16 +3037,20 @@ msgstr "Erro de I/O ao gravar a cache de código fonte"
msgid "rename failed, %s (%s -> %s)."
msgstr "falhou renomear, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum não coincide"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Código de verificação hash não coincide"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Tamanho incorrecto"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Operação %s inválida"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3109,18 +3059,18 @@ msgstr ""
"Incapaz de encontrar a entrada '%s' esperada no ficheiro Release (entrada "
"errada em sources.list ou ficheiro malformado)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Não foi possível encontrar hash sum para '%s' no ficheiro Release"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3129,12 +3079,12 @@ msgstr ""
"O ficheiro Release para %s está expirado (inválido desde %s). Não serão "
"aplicadas as actualizações para este repositório."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Distribuição em conflito: %s (esperado %s mas obtido %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3145,12 +3095,12 @@ msgstr ""
"GPG: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Erro GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3160,16 +3110,12 @@ msgstr ""
"significar que você precisa corrigir manualmente este pacote. (devido a "
"arquitectura em falta)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"Não foi possível localizar arquivo para o pacote %s. Isto pode significar "
-"que você precisa consertar manualmente este pacote."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "Não conseguiu encontrar uma fonte para obter a versão '%s' de '%s'"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3177,16 +3123,12 @@ msgstr ""
"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: "
"para o pacote %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Tamanho incorrecto"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Não foi possível fazer parse ao ficheiro Release %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Nenhuma secção, no ficheiro Release %s"
@@ -3333,33 +3275,33 @@ msgstr "Não foi possível encontrar registo de autenticação para: %s"
msgid "Hash mismatch for: %s"
msgstr "Hash não coincide para: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Não foi encontrado o Release '%s' para '%s'"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Não foi encontrada a versão '%s' para '%s'"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Não foi possível encontrar a tarefa '%s'"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
"Não foi possível seleccionar versões do pacote '%s' pois é puramente virtual"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3368,21 +3310,21 @@ msgstr ""
"Não pode seleccionar a versão instalada nem a versão candidata do pacote "
"'%s' pois não tem nenhuma destas"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Não foi possível seleccionar a versão mais recente a partir do pacote '%s' "
"já que é puramente virtual"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Não é possível seleccionar a versão candidata do pacote %s já que não tem "
"candidato"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3409,111 +3351,131 @@ msgstr "O resolvedor externo falhou sem uma mensagem de erro adequada"
msgid "Execute external solver"
msgstr "Executar resolvedor externo"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "A correr o dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Falhou o download de alguns ficheiros de índice. Foram ignorados ou os "
+"antigos foram usados em seu lugar."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "A instalar %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "A configurar %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "A remover %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "A remover completamente %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "A notar o desaparecimento de %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "A correr o 'trigger' de pós-instalação %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Falta o directório '%s'"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Não foi possível abrir ficheiro o '%s'"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "A preparar %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "A desempacotar %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "A preparar para configurar %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s instalado"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "A preparar a remoção de %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s removido"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "A preparar para remover completamente %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Remoção completa de %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Não conseguiu escrever para %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Não é possível escrever o registo (log), openpty() falhou (/dev/pts não está "
-"montado?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "A correr o dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "A operação foi interrompida antes de poder terminar"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "Nenhum relatório apport escrito pois MaxReports já foi atingido"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "problemas de dependências - deixando por configurar"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3521,7 +3483,7 @@ msgstr ""
"Nenhum relatório apport escrito pois a mensagem de erro indica que é um erro "
"de seguimento de um erro anterior."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3529,7 +3491,7 @@ msgstr ""
"Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco "
"cheio"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3537,7 +3499,16 @@ msgstr ""
"Nenhum relatório apport escrito pois a mensagem de erro indica um erro de "
"memória esgotada"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco "
+"cheio"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3574,6 +3545,97 @@ msgstr ""
msgid "Not locked"
msgstr "Sem acesso exclusivo"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Note, a seleccionar '%s' para a tarefa '%s'\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Note, a seleccionar '%s' para a expressão regular '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "O pacote %s é um pacote virtual disponibilizado por:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr "[Não é versão candidata]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Você deve seleccionar explicitamente um para instalar."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "O pacote %s não está disponível, mas é referenciado por outro pacote.\n"
+#~ "Isso pode significar que o pacote falta, ou ficou obsoleto, ou\n"
+#~ "está disponível somente a partir de outra fonte\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "No entanto, os seguintes pacotes substituem-no:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "O pacote '%s' não tem candidato para instalação"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Pacotes virtuais como '%s' não podem ser removidos\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "O pacote '%s' não está instalado, por isso não será removido. Queria "
+#~ "dizer '%s'?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "O pacote '%s' não está instalado, por isso não será removido\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Note, a seleccionar '%s' em vez de '%s'\n"
+
+#~ 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"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "Saltando %s, não está instalado e só são pedidas actualizações.\n"
+
+#~ 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"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s já está na versão mais recente.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Versão seleccionada '%s' (%s) para '%s'\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Versão seleccionada '%s' (%s) para '%s' devido a '%s'\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr ""
+#~ "Ignorar o lançamento pretendido, não disponível, '%s' do pacote '%s'"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "A obter %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Este não é um arquivo DEB válido, não tem '%s', '%s' ou o membro '%s'"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum não coincide"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Não foi possível localizar arquivo para o pacote %s. Isto pode significar "
+#~ "que você precisa consertar manualmente este pacote."
+
+#~ 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"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "O ficheiro %s não começa com uma mensagem assinada"
@@ -3871,9 +3933,6 @@ msgstr "Sem acesso exclusivo"
#~ msgid "Failed to stat %s%s"
#~ msgstr "Falha ao baixar %s %s\n"
-#~ msgid "Failed to open %s.new"
-#~ msgstr "Falha ao baixar %s %s\n"
-
#~ msgid "Failed to rename %s.new to %s"
#~ msgstr "Falha ao baixar %s %s\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index cd30042b7..aad505d86 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2008-11-17 02:33-0200\n"
"Last-Translator: Felipe Augusto van de Wiel (faw) <faw@debian.org>\n"
"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."
@@ -17,154 +17,156 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "O pacote %s versão %s tem uma dependência desencontrada:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Total de Nomes de Pacotes: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "Total de Nomes de Pacotes: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Pacotes normais: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Pacotes puramente virtuais: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Pacotes virtuais únicos: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Pacotes virtuais misturados: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Faltando: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Total de versões distintas: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Total de descrições distintas: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Total de dependências: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Total de relações ver/arquivo: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Total de relações Desc/Arquivo: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Total de mapeamentos \"Provides\": "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Total de strings \"globbed\": "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Total de espaço de dependência de versão: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Total de espaço frouxo: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Total de espaço contabilizado para: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "O arquivo de pacote %s está fora de sincronia."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Nenhum pacote encontrado"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "Você deve passar exatamente um padrão"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Impossível encontrar o pacote %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Arquivos de pacote:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"O cache está fora de sincronia, não foi possível fazer a referência cruzada "
"de um arquivo de pacote"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Pacotes alfinetados (\"pinned\"):"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(não encontrado)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Instalado: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Candidato: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(nenhum)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Pacote alfinetado (\"pin\"): "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Tabela de versão:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s para %s compilado em %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -240,37 +242,37 @@ msgstr ""
"Veja as páginas de manual apt-cache(8) e apt.conf(5) para mais informações.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
#, fuzzy
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr ""
"Por favor, forneça um nome para este Disco, algo como 'Debian 2.1r1 Disco 1'"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Falhou ao renomear %s para %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
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."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argumentos não estão em pares"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -300,610 +302,62 @@ msgstr ""
" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/"
"tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[S/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[s/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "S"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Erro de compilação de regex - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Os pacotes a seguir têm dependências desencontradas:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "mas %s está instalado"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "mas %s está para ser instalado"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "mas não é instalável"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "mas é um pacote virtual"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "mas não está instalado"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "mas não será instalado"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " ou"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Os NOVOS pacotes a seguir serão instalados:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Os pacotes a seguir serão REMOVIDOS:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Os pacotes a seguir serão mantidos em suas versões atuais:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Os pacotes a seguir serão atualizados:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Os pacotes a seguir serão REVERTIDOS:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Os seguintes pacotes mantidos serão mudados:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (por causa de %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"AVISO: Os pacotes essenciais a seguir serão removidos.\n"
-"Isso NÃO deveria ser feito a menos que você saiba exatamente o que você está "
-"fazendo!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu pacotes atualizados, %lu pacotes novos instalados, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstalados, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu revertidos, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu a serem removidos e %lu não atualizados.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu pacotes não totalmente instalados ou removidos.\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Nota, selecionando %s para expressão regular '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Nota, selecionando %s para expressão regular '%s'\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Instalado]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "Versões candidatas"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Você deveria selecionar explicitamente um para instalar."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"O pacote %s não está disponível, mas é referenciado por outro pacote.\n"
-"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:729
-msgid "However the following packages replace it:"
-msgstr "No entanto, os pacotes a seguir o substituem:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "O pacote %s não tem candidato para instalação"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "O pacote %s não está instalado, então não será removido\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "O pacote %s não está instalado, então não será removido\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Nota, selecionando %s ao invés de %s\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "Pulando %s, já está instalado e a atualização não está configurada.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s já é a versão mais nova.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s configurado para instalar manualmente.\n"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Versão selecionada %s (%s) para %s\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Versão selecionada %s (%s) para %s\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Corrigindo dependências..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " falhou."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Impossível corrigir dependências"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Impossível minimizar o conjunto de atualizações"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Pronto"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dependências desencontradas. Tente usar -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "AVISO: Os pacotes a seguir não podem ser autenticados!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Aviso de autenticação sobreposto.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Instalar estes pacotes sem verificação?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Alguns pacotes não puderam ser autenticados"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!"
-
-#: cmdline/apt-get.cc:1169
-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:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Erro interno, Ordenação não finalizou"
-
-#: cmdline/apt-get.cc:1218
-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"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "É preciso baixar %sB/%sB de arquivos.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "É preciso baixar %sB de arquivos.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, 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"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, 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:1270
-#, 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:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "\"Trivial Only\" especificado mas esta não é uma operação trivial."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Sim, faça o que eu digo!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Você está prestes a fazer algo potencialmente destrutivo.\n"
-"Para continuar digite a frase '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Abortar."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Você quer continuar?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Falhou ao buscar %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Alguns arquivos falharam ao baixar"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Baixar completo e no modo somente baixar (\"download only\")"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Impossível buscar alguns arquivos, talvez executar apt-get update ou tentar "
-"com --fix-missing?"
-
-#: cmdline/apt-get.cc:1414
-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:1419
-msgid "Unable to correct missing packages."
-msgstr "Impossível corrigir pacotes faltantes."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Abortando instalação."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, fuzzy, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Não foi possível executar \"stat\" na lista de pacotes fonte %s"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "O comando update não leva argumentos"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, parece que o AutoRemover destruiu algo o que realmente não deveria\n"
-"acontecer. Por favor, reporte um bug contra o apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-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:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Erro Interno, o AutoRemover quebrou coisas"
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Os seguintes pacotes foram automaticamente instalados e não são mais "
-"requeridos:"
-msgstr[1] ""
-"Os seguintes pacotes foram automaticamente instalados e não são mais "
-"requeridos:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"Os seguintes pacotes foram automaticamente instalados e não são mais "
-"requeridos:"
-msgstr[1] ""
-"Os seguintes pacotes foram automaticamente instalados e não são mais "
-"requeridos:"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Use 'apt-get autoremove' para removê-los."
-msgstr[1] "Use 'apt-get autoremove' para removê-los."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Erro interno, AllUpgrade quebrou coisas"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Dependências desencontradas. Tente 'apt-get -f install' sem nenhum pacote "
-"(ou especifique uma solução)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Alguns pacotes não puderam ser instalados. Isto pode significar que\n"
-"você solicitou uma situação impossível ou, se você está usando a\n"
-"distribuição instável, que alguns pacotes requeridos não foram\n"
-"criados ainda ou foram retirados da \"Incoming\"."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Pacotes quebrados"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Os pacotes extra a seguir serão instalados:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Pacotes sugeridos:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Pacotes recomendados:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Impossível achar pacote %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s configurado para instalar manualmente.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s configurado para instalar manualmente.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Calculando atualização... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Falhou"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Pronto"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Erro interno, o solucionador de problemas quebrou coisas"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Impossível criar trava no diretório de download"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Impossível encontrar um pacote fonte para %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -911,87 +365,97 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Pulando arquivo já baixado '%s'\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, 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:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Você não possui espaço livre suficiente em %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Preciso obter %sB/%sB de arquivos fonte.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Preciso obter %sB de arquivos fonte.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Obter fonte %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Falhou ao buscar alguns arquivos."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Baixar completo e no modo somente baixar (\"download only\")"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Comando de desempacotamento '%s' falhou.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Comando de construção '%s' falhou.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Processo filho falhou"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s não tem dependências de construção.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1000,7 +464,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:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1009,14 +473,14 @@ msgstr ""
"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não "
"pode ser encontrado"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1025,7 +489,7 @@ msgstr ""
"a dependência de %s por %s não pode ser satisfeita porque nenhuma versão "
"disponível do pacote %s pode satisfazer os requerimentos de versão"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1034,30 +498,30 @@ msgstr ""
"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não "
"pode ser encontrado"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, 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:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Falhou ao processar as dependências de construção"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Conectando em %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Módulos para os quais há suporte:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1145,98 +609,53 @@ msgstr ""
"para mais informações e opções.\n"
" Este APT tem Poderes de Super Vaca.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Atingido "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Obter:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Baixados %sB em %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Trabalhando]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Troca de mídia: por favor, insira o disco nomeado\n"
-" '%s'\n"
-"na unidade '%s' e pressione enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "mas não está instalado"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s configurado para instalar manualmente.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s configurado para instalar manualmente.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s já é a versão mais nova.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s já é a versão mais nova.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Esperado %s mas este não estava lá"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s configurado para instalar manualmente.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Falhou ao abrir %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1258,6 +677,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1355,8 +791,8 @@ msgstr "Conexão expirou"
msgid "Server closed the connection"
msgstr "Servidor fechou a conexão"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Erro de leitura"
@@ -1369,8 +805,8 @@ msgid "Protocol corruption"
msgstr "Corrupção de protocolo"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Erro de escrita"
@@ -1382,6 +818,10 @@ msgstr "Não foi possível criar um socket"
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:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Falhou"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Não foi possível conectar um socket passivo."
@@ -1424,7 +864,7 @@ msgstr "Conexão do socket de dados expirou"
msgid "Unable to accept connection"
msgstr "Impossível aceitar conexão"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problema criando o hash do arquivo"
@@ -1559,81 +999,603 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Erro escrevendo para o arquivo"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Erro lendo do servidor. Ponto remoto fechou a conexão"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Erro lendo do servidor"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Erro escrevendo para arquivo"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Seleção falhou"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Conexão expirou"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Erro escrevendo para arquivo de saída"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Aguardando por cabeçalhos"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Linha de cabeçalho ruim"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido"
-#: methods/http.cc:606
+#: methods/server.cc:176
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:621
+#: methods/server.cc:199
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:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Este servidor HTTP possui suporte a \"range\" quebrado"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Formato de data desconhecido"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Seleção falhou"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Dados de cabeçalho ruins"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Conexão expirou"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Conexão falhou"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Erro escrevendo para arquivo de saída"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Erro interno"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Erro escrevendo para arquivo"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Erro escrevendo para o arquivo"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Erro lendo do servidor. Ponto remoto fechou a conexão"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pacotes precisam ser removidos mas a remoção está desabilitada."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Erro lendo do servidor"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Erro interno, Ordenação não finalizou"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Dados de cabeçalho ruins"
+#: apt-private/private-install.cc:159
+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"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Conexão falhou"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "É preciso baixar %sB/%sB de arquivos.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Erro interno"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "É preciso baixar %sB de arquivos.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, 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"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Depois desta operação, %sB de espaço em disco serão liberados.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Você não possui espaço suficiente em %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Há problemas e -y foi usado sem --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "\"Trivial Only\" especificado mas esta não é uma operação trivial."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Sim, faça o que eu digo!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Você está prestes a fazer algo potencialmente destrutivo.\n"
+"Para continuar digite a frase '%s'\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Abortar."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Você quer continuar?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Alguns arquivos falharam ao baixar"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Impossível buscar alguns arquivos, talvez executar apt-get update ou tentar "
+"com --fix-missing?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing e troca de mídia não são suportados atualmente"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Impossível corrigir pacotes faltantes."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Abortando instalação."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Nós não deveríamos apagar coisas, impossível iniciar AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, parece que o AutoRemover destruiu algo o que realmente não deveria\n"
+"acontecer. Por favor, reporte um bug contra o apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "A informação a seguir pode ajudar a resolver a situação:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Erro Interno, o AutoRemover quebrou coisas"
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Os seguintes pacotes foram automaticamente instalados e não são mais "
+"requeridos:"
+msgstr[1] ""
+"Os seguintes pacotes foram automaticamente instalados e não são mais "
+"requeridos:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"Os seguintes pacotes foram automaticamente instalados e não são mais "
+"requeridos:"
+msgstr[1] ""
+"Os seguintes pacotes foram automaticamente instalados e não são mais "
+"requeridos:"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Use 'apt-get autoremove' para removê-los."
+msgstr[1] "Use 'apt-get autoremove' para removê-los."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Você deve querer executar 'apt-get -f install' para corrigí-los:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Dependências desencontradas. Tente 'apt-get -f install' sem nenhum pacote "
+"(ou especifique uma solução)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Alguns pacotes não puderam ser instalados. Isto pode significar que\n"
+"você solicitou uma situação impossível ou, se você está usando a\n"
+"distribuição instável, que alguns pacotes requeridos não foram\n"
+"criados ainda ou foram retirados da \"Incoming\"."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Pacotes quebrados"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Os pacotes extra a seguir serão instalados:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Pacotes sugeridos:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Pacotes recomendados:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "AVISO: Os pacotes a seguir não podem ser autenticados!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Aviso de autenticação sobreposto.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Alguns pacotes não puderam ser autenticados"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Instalar estes pacotes sem verificação?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Falhou ao buscar %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Instalado]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Instalado]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Instalado]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Os pacotes a seguir têm dependências desencontradas:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "mas %s está instalado"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "mas %s está para ser instalado"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "mas não é instalável"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "mas é um pacote virtual"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "mas não está instalado"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "mas não será instalado"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " ou"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Os NOVOS pacotes a seguir serão instalados:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Os pacotes a seguir serão REMOVIDOS:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Os pacotes a seguir serão mantidos em suas versões atuais:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Os pacotes a seguir serão atualizados:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Os pacotes a seguir serão REVERTIDOS:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Os seguintes pacotes mantidos serão mudados:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (por causa de %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"AVISO: Os pacotes essenciais a seguir serão removidos.\n"
+"Isso NÃO deveria ser feito a menos que você saiba exatamente o que você está "
+"fazendo!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu pacotes atualizados, %lu pacotes novos instalados, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstalados, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu revertidos, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu a serem removidos e %lu não atualizados.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu pacotes não totalmente instalados ou removidos.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[S/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[s/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "S"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Erro de compilação de regex - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Corrigindo dependências..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " falhou."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Impossível corrigir dependências"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Impossível minimizar o conjunto de atualizações"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Pronto"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Você pode querer executar 'apt-get -f install' para corrigí-los."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dependências desencontradas. Tente usar -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "O comando update não leva argumentos"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Calculando atualização... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Erro interno, AllUpgrade quebrou coisas"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Pronto"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Falha ao baixar %s %s\n"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Atingido "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Obter:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Baixados %sB em %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Trabalhando]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Troca de mídia: por favor, insira o disco nomeado\n"
+" '%s'\n"
+"na unidade '%s' e pressione enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Impossível ler %s"
@@ -1692,40 +1654,40 @@ msgstr "Falhou ao criar pipe IPC para sub-processo"
msgid "Connection closed prematurely"
msgstr "Conexão encerrada prematuramente"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Configuração padrão ruim!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Pressione enter para continuar."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Você quer apagar quaisquer arquivos .deb previamente baixados?"
# Note to translators: The following four messages belong together. It doesn't
# matter where sentences start, but it has to fit in just these four lines, and
# at only 80 characters per line, if possible.
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
"Alguns erros ocorreram ao desempacotar. Vou configurar os pacotes que foram"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr ""
"instalados. Isto pode resultar em erros duplicados ou erros causados por"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"dependências faltantes. Isto está OK, somente os erros acima desta mensagem"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "são importantes. Por favor, conserte-os e execute [I]nstalar novamente"
@@ -1977,36 +1939,36 @@ msgstr "Falhou ao executar \"readlink\" %s"
msgid "Failed to unlink %s"
msgstr "Falhou ao executar \"unlink\" %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Falhou ao ligar %s a %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Limite DeLink de %sB atingido.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Repositório não possuía campo pacote"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s não possui entrada override\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " mantenedor de %s é %s, não %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s não possui entrada override fonte\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s também não possui entrada override binária\n"
@@ -2085,7 +2047,7 @@ msgstr "Problema removendo %s"
msgid "Failed to rename %s to %s"
msgstr "Falhou ao renomear %s para %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2156,7 +2118,7 @@ msgstr "Arquivo corrompido"
msgid "Tar checksum failed, archive corrupted"
msgstr "Checksum do arquivo tar falhou, arquivo corrompido"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s"
@@ -2280,23 +2242,17 @@ msgid "Unable to stat %s"
msgstr "Impossível executar \"stat\" em %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Este não é um arquivo DEB válido, membro '%s' faltando"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Este não é um arquivo DEB válido, não possui um membro '%s', '%s' ou '%s'"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Erro interno, não foi possível localizar membro %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Arquivo de controle não interpretável"
@@ -2353,87 +2309,87 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Seleção %s não encontrada"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Abreviação de tipo desconhecida: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Abrindo arquivo de configuração %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "Erro de sintaxe %s:%u: Bloco inicia sem nome."
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Erro de sintaxe %s:%u: Tag mal formada"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
"Erro de sintaxe %s:%u: Diretivas podem ser feitas somente no nível mais alto"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Erro de sintaxe %s:%u: Muitos \"includes\" aninhados"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, 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:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Erro de sintaxe %s:%u: Não há suporte para a diretiva '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Erro de sintaxe %s:%u: Diretivas podem ser feitas somente no nível mais alto"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Erro de sintaxe %s:%u: Lixo extra no final do arquivo"
@@ -2458,49 +2414,49 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Pronto"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Opção de linha de comando '%c' [de %s] é desconhecida."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Opção de linha de comando %s não é compreendida"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Opção de linha de comando %s não é booleana"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Opção %s requer um argumento."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"Opção %s: Especificação de item de configuração deve possuir um =<val>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Opção %s requer um argumento inteiro, não '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Opção '%s' é muito longa"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Sentido %s não é compreendido, tente verdadeiro ou falso."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Operação %s inválida"
@@ -2514,116 +2470,116 @@ msgstr "Impossível executar \"stat\" no ponto de montagem %s"
msgid "Failed to stat the cdrom"
msgstr "Impossível executar \"stat\" no cdrom"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problema fechando o arquivo"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Não usando travamento para arquivo de trava somente leitura %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Não foi possível abrir arquivo de trava %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Não usando travamento para arquivo de trava montado via nfs %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Não foi possível obter trava %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, 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:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "Sub-processo %s recebeu uma falha de segmentação."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Sub-processo %s finalizou inesperadamente"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Não foi possível abrir arquivo %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "Não foi possível abrir \"pipe\" para %s"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Falhou ao criar sub-processo IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Falhou ao executar compactador "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "leitura, ainda restam %lu para serem lidos mas nenhum deixado"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "escrita, ainda restam %lu para gravar mas não foi possível"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "Problema fechando o arquivo"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problema sincronizando o arquivo"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "Problema removendo o arquivo"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problema sincronizando o arquivo"
@@ -2741,12 +2697,12 @@ msgstr "Falha ao abrir Arquivo de Estado (\"StateFile\") %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Falha ao escrever Arquivo de Estado (\"StateFile\") temporário %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Impossível analisar arquivo de pacote %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Impossível analisar arquivo de pacote %s (2)"
@@ -2826,19 +2782,19 @@ msgstr "Linha mal formada %u no arquivo de fontes %s (tipo)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Não foi possível abrir arquivo %s"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2863,7 +2819,7 @@ msgstr ""
"O pacote %s precisa ser reinstalado, mas não foi possível encontrar um "
"arquivo para o mesmo."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2871,19 +2827,10 @@ msgstr ""
"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por "
"pacotes mantidos (hold)."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Impossível corrigir problemas, você manteve (hold) pacotes quebrados."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Alguns arquivos de índice falharam para baixar, eles foram ignorados ou os "
-"antigos foram usados no lugar."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2927,12 +2874,12 @@ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
"Por favor, insira o disco nomeado: '%s' na unidade '%s' e pressione enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Sistema de empacotamento '%s' não é suportado"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Impossível determinar um tipo de sistema de empacotamento aplicável."
@@ -2966,17 +2913,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Registro inválido no arquivo de preferências, sem cabeçalho Package"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, 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:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Nenhuma prioridade (ou zero) especificada para \"pin\""
@@ -3049,44 +2996,48 @@ msgstr "Erro de E/S ao gravar cache fonte"
msgid "rename failed, %s (%s -> %s)."
msgstr "renomeação falhou, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum incorreto"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Hash Sum incorreto"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Tamanho incorreto"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Operação %s inválida"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Impossível analisar arquivo de pacote %s (1)"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3094,12 +3045,12 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3109,16 +3060,12 @@ msgstr ""
"que você precisa consertar manualmente este pacote. (devido a arquitetura "
"não especificada)."
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
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:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3126,16 +3073,12 @@ msgstr ""
"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo \"Filename:"
"\" para o pacote %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Tamanho incorreto"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "Impossível analisar arquivo de pacote %s (1)"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "Nota, selecionando %s ao invés de %s\n"
@@ -3280,49 +3223,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "Hash Sum incorreto"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Release '%s' para '%s' não foi encontrada"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Versão '%s' para '%s' não foi encontrada"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "Impossível achar tarefa %s"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Impossível achar pacote %s"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3347,127 +3290,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Alguns arquivos de índice falharam para baixar, eles foram ignorados ou os "
+"antigos foram usados no lugar."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Instalando %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Configurando %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Removendo %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "%s completamente removido"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Executando gatilho pós-instalação %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Diretório '%s' está faltando"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "Não foi possível abrir arquivo %s"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Preparando %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Desempacotando %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Preparando para configurar %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s instalado"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Preparando para a remoção de %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s removido"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Preparando para remover completamente %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s completamente removido"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr "Impossível escrever log, openpty() falhou (/dev/pts não montado?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Impossível escrever para %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3497,6 +3469,92 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Nota, selecionando %s para expressão regular '%s'\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Nota, selecionando %s para expressão regular '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "O pacote %s é um pacote virtual fornecido por:\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "Versões candidatas"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Você deveria selecionar explicitamente um para instalar."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "O pacote %s não está disponível, mas é referenciado por outro pacote.\n"
+#~ "Isto pode significar que o pacote está faltando, ficou obsoleto ou\n"
+#~ "está disponível somente a partir de outra fonte\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "No entanto, os pacotes a seguir o substituem:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "O pacote %s não tem candidato para instalação"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "O pacote %s não está instalado, então não será removido\n"
+
+#, fuzzy
+#~ 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"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Nota, selecionando %s ao invés de %s\n"
+
+#~ 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"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Pulando %s, já está instalado e a atualização não está configurada.\n"
+
+#~ 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"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s já é a versão mais nova.\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Versão selecionada %s (%s) para %s\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Versão selecionada %s (%s) para %s\n"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Este não é um arquivo DEB válido, não possui um membro '%s', '%s' ou '%s'"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum incorreto"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Não foi possível localizar arquivo para o pacote %s. Isto pode significar "
+#~ "que você precisa consertar manualmente este pacote."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr "Impossível escrever log, openpty() falhou (/dev/pts não montado?)\n"
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Abrindo arquivo de configuração %s"
@@ -3749,9 +3807,6 @@ msgstr ""
#~ msgid "Failed to stat %s%s"
#~ msgstr "Falha ao baixar %s %s\n"
-#~ msgid "Failed to open %s.new"
-#~ msgstr "Falha ao baixar %s %s\n"
-
#~ msgid "Failed to rename %s.new to %s"
#~ msgstr "Falha ao baixar %s %s\n"
diff --git a/po/ro.po b/po/ro.po
index ca0260c26..9fda85f9e 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ro\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2008-11-15 02:21+0200\n"
"Last-Translator: Eddy Petrișor <eddy.petrisor@gmail.com>\n"
"Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
@@ -19,153 +19,155 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Pachetul %s versiunea %s are o dependență neîndeplinită:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Total nume pachete : "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "Total nume pachete : "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Pachete normale: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Pachete virtuale pure: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Pachete virtuale singulare: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Pachete virtuale mixte: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Lipsă: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Total versiuni distincte: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Numărul total de descrieri distincte: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Total dependențe: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Total relații versiune/fișier: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Total relații desc/fișier: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Total cartări Furnizează: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Total șiruri înglobate: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Total spațiu versiuni ale dependențelor: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Total spațiu intern: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Total spațiu contorizat pentru: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Fișierul pachetului %s este desincronizat."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Nu s-au găsit pachete"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "Trebuie să dați exact un șablon"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Nu s-a putut localiza pachetul %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Fișiere pachet: "
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"Cache-ul este desincronizat, nu se poate executa x-ref pe un fișier pachet"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Pachete alese special:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(negăsit)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Instalat: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Candidează: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(niciunul)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Pachet ales special: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Tabela de versiuni:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s pentru %s compilat la %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -239,36 +241,36 @@ msgstr ""
"Vedeți manualele apt-cache(8) și apt.conf(5) pentru mai multe informații.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
#, 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:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Eșec la redenumirea lui %s în %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Repetați această procedură pentru restul CD-urilor din set."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argumentele nu sunt perechi"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -297,614 +299,63 @@ msgstr ""
" -c=? Citește acest fișier de configurare\n"
" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "Y"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Eroare de compilare expresie regulată - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Următoarele pachete au dependențe neîndeplinite:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "dar %s este instalat"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "dar %s este pe cale de a fi instalat"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "dar nu este instalabil"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "dar este un pachet virtual"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "dar nu este instalat"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "dar nu este pe cale să fie instalat"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " sau"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Următoarele pachete NOI vor fi instalate:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Următoarele pachete vor fi ȘTERSE:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Următoarele pachete au fost reținute:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Următoarele pachete vor fi ÎNNOITE:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Următoarele pachete vor fi DE-GRADATE:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Următoarele pachete ținute vor fi schimbate:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (datorită %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"AVERTISMENT: Următoarele pachete esențiale vor fi șterse.\n"
-"Aceasta NU ar trebui făcută decât dacă știți exact ce vreți!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu înnoite, %lu nou instalate, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstalate, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu de-gradate, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu de șters și %lu neînnoite.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu instalate sau șterse incomplet.\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Notă, selectare %s pentru expresie regulată '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Notă, selectare %s pentru expresie regulată '%s'\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Instalat]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "Versiuni candidat"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Ar trebui să alegeți în mod explicit unul pentru instalare."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Pachetul %s nu este disponibil, dar este menționat de către alt pachet.\n"
-"Aceasta ar putea însemna că pachetul lipsește, s-a învechit, sau\n"
-"este disponibil numai din altă sursă\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Oricum următoarele pachete îl înlocuiesc:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Pachetul %s nu are nici un candidat la instalare"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Notă, se selectează %s în locul lui %s\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "Sar peste %s, este deja instalat și înnoirea nu este activată.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s este deja la cea mai nouă versiune.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s este marcat ca fiind instalat manual.\n"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Versiune selectată %s (%s) pentru %s\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Versiune selectată %s (%s) pentru %s\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Corectez dependențele..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " eșec."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Nu s-au putut corecta dependențele"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Nu s-a putut micșora mulțimea pachetelor de înnoit"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Terminat"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dependențe neîndeplinite. Încercați să folosiți -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Avertisment de autentificare înlocuit.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Instalați aceste pachete fără verificare?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Unele pachete n-au putut fi autentificate"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pachete trebuiesc șterse dar ștergerea este dezactivată."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Eroare internă, Ordering nu s-a terminat"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Ce ciudat.. Dimensiunile nu se potrivesc, scrieți la apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Este nevoie să descărcați %sB/%sB de arhive.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Este nevoie să descărcați %sB de arhive.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "După această operație vor fi folosiți din disc încă %sB.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "N-am putut determina spațiul disponibil în %s"
-
-#: cmdline/apt-get.cc:1270
-#, 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:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"A fost specificat 'doar neimportant' dar nu este o operațiune neimportantă."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Da, fă cum îți spun!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Sunteți pe cale de a face ceva cu potențial distructiv.\n"
-"Pentru a continua tastați fraza '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Renunțare."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Vreți să continuați?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Eșec la aducerea lui %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Descărcarea unor fișiere a eșuat"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Descărcare completă și în modul doar descărcare"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Nu s-au putut aduce unele arhive, poate ar fi o idee bună să rulați 'apt-get "
-"update' sau încercați cu --fix-missing?"
-
-#: cmdline/apt-get.cc:1414
-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:1419
-msgid "Unable to correct missing packages."
-msgstr "Nu pot corecta pachetele lipsă."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Abandonez instalarea."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, fuzzy, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Nu pot determina starea listei surse de pachete %s"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Comanda de actualizare nu are argumente"
-
-# XXX: orice sugestie este bine-venită
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, se pare că AutoRemover a distrus ceva, lucru care n-ar trebui să se "
-"întâmple. Sunteți rugat să trimiteți un raportați de defect pentru pachetul "
-"apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-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:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni"
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
-msgstr[1] ""
-"Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
-msgstr[2] ""
-"Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
-msgstr[1] ""
-"Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
-msgstr[2] ""
-"Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Folosiți 'apt-get autoremove' pentru a le șterge."
-msgstr[1] "Folosiți 'apt-get autoremove' pentru a le șterge."
-msgstr[2] "Folosiți 'apt-get autoremove' pentru a le șterge."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Dependențe neîndeplinite. Încercați 'apt-get -f install' fără nici un pachet "
-"(sau oferiți o altă soluție)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Unele pachete n-au putut fi instalate. Aceasta ar putea însemna că ați "
-"cerut\n"
-"o situație imposibilă sau că folosiți distribuția instabilă în care unele "
-"pachete\n"
-"cerute n-au fost create încă sau au fost mutate din Incoming."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Pachete deteriorate"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Următoarele extra pachete vor fi instalate:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Pachete sugerate:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Pachete recomandate:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Nu pot găsi pachetul %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s este marcat ca fiind instalat manual.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s este marcat ca fiind instalat manual.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Calculez înnoirea... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Eșec"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Terminat"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr ""
"Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Nu s-a putut bloca directorul de descărcare"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, 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:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -912,87 +363,97 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Sar peste fișierul deja descărcat '%s'\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "N-am putut determina spațiul disponibil în %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Nu aveți suficient spațiu în %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Este nevoie să descărcați %sB/%sB din arhivele surselor.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, 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:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Aducere sursa %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Eșec la aducerea unor arhive."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Descărcare completă și în modul doar descărcare"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Comanda de despachetare '%s' eșuată.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Comanda de construire '%s' eșuată.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Procesul copil a eșuat"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s nu are dependențe înglobate.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1001,7 +462,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:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1010,14 +471,14 @@ msgstr ""
"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu "
"poate fi găsit"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1026,7 +487,7 @@ msgstr ""
"Dependența lui %s de %s nu poate fi satisfăcută deoarece nici o versiune "
"disponibilă a pachetului %s nu poate satisface versiunile cerute"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1035,30 +496,30 @@ msgstr ""
"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu "
"poate fi găsit"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, 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:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Eșec la prelucrarea dependențelor de compilare"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Conectare la %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Module suportate:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1147,98 +608,53 @@ msgstr ""
"pentru mai multe informații și opțiuni.\n"
" Acest APT are puterile unei Super Vaci.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Atins "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Luat:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ignorat "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Eroare"
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Aduși: %sB în %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [ÃŽn lucru]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Schimbare de mediu: introduceți discul numit\n"
-" „%sâ€\n"
-"în unitatea „%s†și apăsați Enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "dar nu este instalat"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s este marcat ca fiind instalat manual.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s este marcat ca fiind instalat manual.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s este deja la cea mai nouă versiune.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s este deja la cea mai nouă versiune.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Așteptat %s, dar n-a fost acolo"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s este marcat ca fiind instalat manual.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Eșec la „open†pentru %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1260,6 +676,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1357,8 +790,8 @@ msgstr "Timpul de conectare a expirat"
msgid "Server closed the connection"
msgstr "Serverul a închis conexiunea"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Eroare de citire"
@@ -1371,8 +804,8 @@ msgid "Protocol corruption"
msgstr "Protocol corupt"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Eroare de scriere"
@@ -1386,6 +819,10 @@ msgstr ""
"Nu s-a putut realiza conectarea la socket-ul de date, timpul de conectare a "
"expirat"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Eșec"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Nu s-a putut realiza conectarea la un socket pasiv"
@@ -1428,7 +865,7 @@ msgstr "Timpul de conectare la socket-ul de date expirat"
msgid "Unable to accept connection"
msgstr "Nu s-a putut accepta conexiune"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problemă la calcularea dispersiei pentru fișierul"
@@ -1563,82 +1000,607 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Eroare la scrierea în fișierul"
+
+#: methods/http.cc:533
+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:535
+msgid "Error reading from server"
+msgstr "Eroare la citirea de la server"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Eroare la scrierea în fișier"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Selecția a eșuat"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Timp de conectare expirat"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Eroare la scrierea fișierului de rezultat"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "În așteptarea antetelor"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Linie de antet necorespunzătoare"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "Serverul HTTP a trimis un antet de răspuns necorespunzător"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "Serverul HTTP a trimis un antet Content-Length necorespunzător"
-#: methods/http.cc:621
+#: methods/server.cc:199
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:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Acest server HTTP are un suport defect de intervale"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Format dată necunoscut"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Selecția a eșuat"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Antet de date necorespunzător"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Timp de conectare expirat"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Conectare eșuată"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Eroare la scrierea fișierului de rezultat"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Eroare internă"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Eroare la scrierea în fișier"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Eroare la scrierea în fișierul"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pachete trebuiesc șterse dar ștergerea este dezactivată."
+
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Eroare internă, Ordering nu s-a terminat"
+
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
-"Eroare la citirea de la server. Conexiunea a fost închisă de la distanță"
+"Ce ciudat.. Dimensiunile nu se potrivesc, scrieți la apt@packages.debian.org"
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Eroare la citirea de la server"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Este nevoie să descărcați %sB/%sB de arhive.\n"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Antet de date necorespunzător"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Este nevoie să descărcați %sB de arhive.\n"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Conectare eșuată"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, 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"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Eroare internă"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "După această operație se vor elibera %sB din spațiul ocupat pe disc.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Nu aveți suficient spațiu în %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Sunt unele probleme și -y a fost folosit fără --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"A fost specificat 'doar neimportant' dar nu este o operațiune neimportantă."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Da, fă cum îți spun!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Sunteți pe cale de a face ceva cu potențial distructiv.\n"
+"Pentru a continua tastați fraza '%s'\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Renunțare."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Vreți să continuați?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Descărcarea unor fișiere a eșuat"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Nu s-au putut aduce unele arhive, poate ar fi o idee bună să rulați 'apt-get "
+"update' sau încercați cu --fix-missing?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing și schimbul de mediu nu este deocamdată suportat"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Nu pot corecta pachetele lipsă."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Abandonez instalarea."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+# XXX: orice sugestie este bine-venită
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Nu este voie să se șteargă lucruri, nu se poate porni AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, se pare că AutoRemover a distrus ceva, lucru care n-ar trebui să se "
+"întâmple. Sunteți rugat să trimiteți un raportați de defect pentru pachetul "
+"apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Următoarele informații ar putea să vă ajute la rezolvarea situației:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni"
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
+msgstr[1] ""
+"Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
+msgstr[2] ""
+"Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
+msgstr[1] ""
+"Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
+msgstr[2] ""
+"Următoarele pachete au fost instalate automat și nu mai sunt necesare:"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Folosiți 'apt-get autoremove' pentru a le șterge."
+msgstr[1] "Folosiți 'apt-get autoremove' pentru a le șterge."
+msgstr[2] "Folosiți 'apt-get autoremove' pentru a le șterge."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Ați putea porni 'apt-get -f install' pentru a corecta acestea:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Dependențe neîndeplinite. Încercați 'apt-get -f install' fără nici un pachet "
+"(sau oferiți o altă soluție)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Unele pachete n-au putut fi instalate. Aceasta ar putea însemna că ați "
+"cerut\n"
+"o situație imposibilă sau că folosiți distribuția instabilă în care unele "
+"pachete\n"
+"cerute n-au fost create încă sau au fost mutate din Incoming."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Pachete deteriorate"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Următoarele extra pachete vor fi instalate:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Pachete sugerate:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Pachete recomandate:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Avertisment de autentificare înlocuit.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Unele pachete n-au putut fi autentificate"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Instalați aceste pachete fără verificare?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Eșec la aducerea lui %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Instalat]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Instalat]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Instalat]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Următoarele pachete au dependențe neîndeplinite:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "dar %s este instalat"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "dar %s este pe cale de a fi instalat"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "dar nu este instalabil"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "dar este un pachet virtual"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "dar nu este instalat"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "dar nu este pe cale să fie instalat"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " sau"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Următoarele pachete NOI vor fi instalate:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Următoarele pachete vor fi ȘTERSE:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Următoarele pachete au fost reținute:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Următoarele pachete vor fi ÎNNOITE:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Următoarele pachete vor fi DE-GRADATE:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Următoarele pachete ținute vor fi schimbate:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (datorită %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"AVERTISMENT: Următoarele pachete esențiale vor fi șterse.\n"
+"Aceasta NU ar trebui făcută decât dacă știți exact ce vreți!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu înnoite, %lu nou instalate, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstalate, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu de-gradate, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu de șters și %lu neînnoite.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu instalate sau șterse incomplet.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "Y"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Eroare de compilare expresie regulată - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Corectez dependențele..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " eșec."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Nu s-au putut corecta dependențele"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Nu s-a putut micșora mulțimea pachetelor de înnoit"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Terminat"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Ați putea să porniți 'apt-get -f install' pentru a corecta acestea."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dependențe neîndeplinite. Încercați să folosiți -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Comanda de actualizare nu are argumente"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Calculez înnoirea... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Terminat"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Eșec la redenumirea lui %s în %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Atins "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Luat:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ignorat "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Eroare"
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Aduși: %sB în %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [ÃŽn lucru]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Schimbare de mediu: introduceți discul numit\n"
+" „%sâ€\n"
+"în unitatea „%s†și apăsați Enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Nu s-a putut citi %s"
@@ -1697,35 +1659,35 @@ msgstr "Eșec la crearea conexiunii IPC către subproces"
msgid "Connection closed prematurely"
msgstr "Conexiune închisă prematur"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Configurări implicite necorespunzătoare!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Apăsați Enter pentru a continua."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Doriți să ștergeți eventualele fișiere .deb descărcate anterior?"
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "S-au produs unele erori în timpul despachetării. Se vor configura"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr ""
"pachetele care au fost instalate. Aceasta ar putea rezulta erori duplicate"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "sau erori cauzate de dependențe lipsă. Fiind normal, doar erorile de"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1984,36 +1946,36 @@ msgstr "Eșec la „readlink†pentru %s"
msgid "Failed to unlink %s"
msgstr "Eșec la „unlink†pentru %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Eșec la „link†între %s și %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Limita de %sB a dezlegării a fost atinsă.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Arhiva nu are câmp de pachet"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s nu are intrare de înlocuire\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s responsabil este %s nu %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s nu are nici o intrare sursă de înlocuire\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s nu are nici intrare binară de înlocuire\n"
@@ -2092,7 +2054,7 @@ msgstr "Problemă la desfacerea %s"
msgid "Failed to rename %s to %s"
msgstr "Eșec la redenumirea lui %s în %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2163,7 +2125,7 @@ msgid "Tar checksum failed, archive corrupted"
msgstr ""
"Suma de control a arhivei tar nu s-a verificat, arhiva este deteriorată"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Tip antet TAR %u necunoscut, membrul %s"
@@ -2289,24 +2251,17 @@ msgid "Unable to stat %s"
msgstr "Nu se poate executa „stat†pe %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Aceasta nu este o arhivă DEB validă, lipseÈ™te membrul „%sâ€"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Aceasta nu este o arhivă DEB validă, nu are unul din următorii membri „%sâ€, "
-"„%s†sau „%sâ€"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Eroare internă, nu pot localiza membrul %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Fișier de control neanalizabil"
@@ -2363,87 +2318,87 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Selecția %s nu a fost găsită"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Abreviere de tip nerecunoscut: „%câ€"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Se deschide fișierul de configurare %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Eroare de sintaxă %s:%u: etichetă greșită"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Eroare de sintaxă %s:%u: incluse de aici"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Eroare de sintaxă %s:%u: directivă nesuportată '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Eroare de sintaxă %s:%u: Directivele pot fi date doar la nivelul superior"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, 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"
@@ -2468,49 +2423,49 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Terminat"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Opțiunea linie de comandă '%c' [din %s] este necunoscută."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Opțiunea linie de comandă %s nu este înțeleasă"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Opțiunea linie de comandă %s nu este booleană"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Opțiunea %s necesită un argument"
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"Opțiunea %s: Specificația configurării articolului trebuie să aibă o =<val>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Opțiunea %s necesită un argument integru, nu '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Opțiunea '%s' este prea lungă"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Sensul %s nu este înțeles, încercați adevărat (true) sau fals (false)."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Operațiune invalidă %s"
@@ -2524,116 +2479,116 @@ msgstr "Nu pot determina starea punctului de montare %s"
msgid "Failed to stat the cdrom"
msgstr "Eșec la „stat†pentru CD"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problemă la închiderea fișierului"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Nu s-a folosit închiderea pentru fișierul disponibil doar-citire %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Nu pot deschide fișierul blocat %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Nu este folosit blocajul pentru fișierul montat nfs %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Nu pot determina blocajul %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Subprocesul %s a primit o eroare de segmentare."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "Subprocesul %s a primit o eroare de segmentare."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Subprocesul %s s-a terminat brusc"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Nu s-a putut deschide fișierul %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "Nu s-a putut deschide conexiunea pentru %s"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Eșec la crearea IPC-ului pentru subproces"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Eșec la executarea compresorului"
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "citire, încă mai am %lu de citit dar n-a mai rămas nimic"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "scriere, încă mai am %lu de scris dar nu pot"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "Problemă la închiderea fișierului"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problemă în timpul sincronizării fișierului"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "Problemă la dezlegarea fișierului"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problemă în timpul sincronizării fișierului"
@@ -2751,12 +2706,12 @@ msgstr "Eșec la deschiderea fișierului de stare %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Eșec la scrierea fișierului temporar de stare %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Nu s-a putut analiza fișierul pachet %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Nu s-a putut analiza fișierul pachet %s (2)"
@@ -2831,19 +2786,19 @@ msgstr "Linie greșită %u în lista sursă %s (tip)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Nu s-a putut deschide fișierul %s"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2867,7 +2822,7 @@ msgid ""
msgstr ""
"Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2875,19 +2830,10 @@ msgstr ""
"Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi "
"cauzată de pachete ținute."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Nu pot corecta problema, ați ținut pachete deteriorate."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Descărcarea unor fișiere index a eșuat, acestea fie au fost ignorate, fie au "
-"fost folosite în loc unele vechi."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2931,12 +2877,12 @@ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
"Vă rog introduceți discul numit: '%s' în unitatea '%s' și apăsați Enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Sistemul de pachete '%s' nu este suportat"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Nu s-a putut determina un tip de sistem de împachetare potrivit"
@@ -2971,17 +2917,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Înregistrare invalidă în fișierul de preferințe, fără antet de pachet"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Nu s-a înțeles tipul de pin %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Fără prioritate (sau zero) specificată pentru pin"
@@ -3054,46 +3000,50 @@ msgstr "Eroare IO în timpul salvării sursei cache"
msgid "rename failed, %s (%s -> %s)."
msgstr "redenumire eșuată, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Nepotrivire MD5Sum"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Nepotrivire la suma de căutare"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Nepotrivire dimensiune"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Operațiune invalidă %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Nu s-a putut analiza fișierul pachet %s (1)"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3101,12 +3051,12 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3115,16 +3065,12 @@ msgstr ""
"N-am putut localiza un fișier pentru pachetul %s. Aceasta ar putea însemna "
"că aveți nevoie să reparați manual acest pachet (din pricina unui arch lipsă)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
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:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3132,16 +3078,12 @@ msgstr ""
"Fișierele index de pachete sunt deteriorate. Fără câmpul 'nume fișier:' la "
"pachetul %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Nepotrivire dimensiune"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "Nu s-a putut analiza fișierul pachet %s (1)"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "Notă, se selectează %s în locul lui %s\n"
@@ -3286,49 +3228,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "Nepotrivire la suma de căutare"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Release '%s' pentru '%s' n-a fost găsită"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Versiunea '%s' pentru '%s' n-a fost găsită"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "Nu s-a putut găsi sarcina %s"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Nu pot găsi pachetul %s"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3353,128 +3295,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Descărcarea unor fișiere index a eșuat, acestea fie au fost ignorate, fie au "
+"fost folosite în loc unele vechi."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Se instalează %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Se configurează %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Se șterge %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "Șters complet %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Se rulează declanșatorul post-instalare %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Directorul „%s†lipsește."
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "Nu s-a putut deschide fișierul %s"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Se pregătește %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Se despachetează %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Se pregătește configurarea %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Instalat %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Se pregătește ștergerea lui %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Șters %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Se pregătește ștergerea completă a %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Șters complet %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Nu s-a putut scrie în %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Nu se poate scrie jurnalul, openpty() a eșuat (oare /dev/pts e montat?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3504,6 +3474,92 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Notă, selectare %s pentru expresie regulată '%s'\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Notă, selectare %s pentru expresie regulată '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Pachetul %s este un pachet virtual furnizat de către:\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "Versiuni candidat"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Ar trebui să alegeți în mod explicit unul pentru instalare."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Pachetul %s nu este disponibil, dar este menționat de către alt pachet.\n"
+#~ "Aceasta ar putea însemna că pachetul lipsește, s-a învechit, sau\n"
+#~ "este disponibil numai din altă sursă\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Oricum următoarele pachete îl înlocuiesc:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Pachetul %s nu are nici un candidat la instalare"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Notă, se selectează %s în locul lui %s\n"
+
+#~ 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"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "Sar peste %s, este deja instalat și înnoirea nu este activată.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "Reinstalarea lui %s nu este posibilă, nu poate fi descărcat.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s este deja la cea mai nouă versiune.\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Versiune selectată %s (%s) pentru %s\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Versiune selectată %s (%s) pentru %s\n"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Aceasta nu este o arhivă DEB validă, nu are unul din următorii membri "
+#~ "„%sâ€, „%s†sau „%sâ€"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Nepotrivire MD5Sum"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "N-am putut localiza un fișier pentru pachetul %s. Aceasta ar putea "
+#~ "însemna că aveți nevoie să depanați manual acest pachet."
+
+#~ 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"
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Se deschide fișierul de configurare %s"
diff --git a/po/ru.po b/po/ru.po
index f0784896e..76a9b390f 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt rev2227.1.3\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-06-30 08:47+0400\n"
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
@@ -26,150 +26,152 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Пакет %s верÑии %s имеет неудовлетворённую завиÑимоÑÑ‚ÑŒ:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Ð’Ñего имён пакетов: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Ð’Ñего Ñтруктур пакетов: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Обычных пакетов: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " ПолноÑтью виртуальных пакетов: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Одиночных виртуальных пакетов: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Смешанных виртуальных пакетов: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " ОтÑутÑтвует: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Ð’Ñего уникальных верÑий: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Ð’Ñего уникальных опиÑаний: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Ð’Ñего завиÑимоÑтей: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Ð’Ñего отношений ВерÑиÑ/Файл: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Ð’Ñего отношений ОпиÑание/Файл: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Ð’Ñего отношений Provides: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Ð’Ñего развёрнутых Ñтрок: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Ð’Ñего информации о завиÑимоÑÑ‚ÑÑ…: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "ПуÑтого меÑта в кÑше: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Полное учтённое проÑтранÑтво: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "СпиÑок пакетов %s раÑÑинхронизирован."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Ðе найдено ни одного пакета"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Ð’Ñ‹ должны задать не менее одно шаблона поиÑка"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr "Эта команда уÑтарела. ИÑпользуйте вмеÑто неё «apt-mark showauto»."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Ðе удалоÑÑŒ найти пакет %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "СпиÑки пакетов:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "КÑш раÑÑинхронизирован, невозможно обнаружить ÑÑылку на ÑпиÑок пакетов"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "ЗафикÑированные пакеты:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(не найдено)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " УÑтановлен: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Кандидат: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(отÑутÑтвует)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " ФикÑатор пакета: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Таблица верÑий:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s Ð´Ð»Ñ %s Ñкомпилирован %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -240,35 +242,35 @@ msgstr ""
"ПодробноÑти в Ñправочных Ñтраницах apt-cache(8) и apt.conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Задайте Ð¸Ð¼Ñ Ð´Ð»Ñ Ñтого диÑка, например «Debian 5.0.3 Disk 1»"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Ð’Ñтавьте диÑк в уÑтройÑтво и нажмите ввод"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Ðе удалоÑÑŒ примонтировать «%s» к «%s»"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Повторите Ñтот процеÑÑ Ð´Ð»Ñ Ð²Ñех имеющихÑÑ CD."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Ðепарные аргументы"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -297,570 +299,32 @@ msgstr ""
" -o=? Задать значение произвольной наÑтройке, например, -o dir::cache=/"
"tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[Д/н]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "д"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "н"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Ошибка компилÑции регулÑрного Ð²Ñ‹Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ â€” %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Пакеты, имеющие неудовлетворённые завиÑимоÑти:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "но %s уже уÑтановлен"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "но %s будет уÑтановлен"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "но он не может быть уÑтановлен"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "но Ñто виртуальный пакет"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "но он не уÑтановлен"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "но он не будет уÑтановлен"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " или"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "ÐОВЫЕ пакеты, которые будут уÑтановлены:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Пакеты, которые будут УДÐЛЕÐЫ:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Пакеты, которые будут оÑтавлены в неизменном виде:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Пакеты, которые будут обновлены:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Пакеты, будут заменены на более СТÐРЫЕ верÑии:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr ""
-"Пакеты, которые должны были бы оÑтатьÑÑ Ð±ÐµÐ· изменений, но будут заменены:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (вÑледÑтвие %s) "
-
-#: cmdline/apt-get.cc:600
-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"
-"ÐЕ ДЕЛÐЙТЕ Ñтого, еÑли вы ÐЕ предÑтавлÑете Ñебе вÑе возможные поÑледÑтвиÑ!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "обновлено %lu, уÑтановлено %lu новых пакетов, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "переуÑтановлено %lu переуÑтановлено, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu пакетов заменены на Ñтарые верÑии, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¾Ñ‚Ð¼ÐµÑ‡ÐµÐ½Ð¾ %lu пакетов, и %lu пакетов не обновлено.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "не уÑтановлено до конца или удалено %lu пакетов.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Заметьте, выбираетÑÑ Â«%s» Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ñ‡Ð¸ «%s»\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Заметьте, выбираетÑÑ Â«%s» Ð´Ð»Ñ Ñ€ÐµÐ³ÑƒÐ»Ñрного Ð²Ñ‹Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Â«%s»\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Пакет %s — виртуальный, его функции предоÑтавлÑÑŽÑ‚ÑÑ Ð¿Ð°ÐºÐµÑ‚Ð°Ð¼Ð¸:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [УÑтановлен]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Ðет верÑии-кандидата]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Ð’Ñ‹ должны Ñвно указать, какой именно вы хотите уÑтановить."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Пакет %s недоÑтупен, но упомÑнут в ÑпиÑке завиÑимоÑтей другого пакета.\n"
-"Это может означать, что пакет отÑутÑтвует, уÑтарел, или доÑтупен из "
-"иÑточников, не упомÑнутых в sources.list\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Однако Ñледующие пакеты могут его заменить:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Ð”Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° «%s» не найден кандидат на уÑтановку"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Виртуальные пакеты, подобные «%s», не могут быть удалены\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"Пакет «%s» не уÑтановлен, поÑтому не может быть удалён. Возможно имелÑÑ Ð² "
-"виду «%s»?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Пакет «%s» не уÑтановлен, поÑтому не может быть удалён\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Заметьте, вмеÑто «%2$s» выбираетÑÑ Â«%1$s»\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "ПропуÑкаетÑÑ %s — пакет уже уÑтановлен и нет команды upgrade.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"ПропуÑкаетÑÑ %s — пакет не уÑтановлен, а запрошено только обновление.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "ПереуÑтановка %s невозможна, он не ÑкачиваетÑÑ.\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "Уже уÑтановлена ÑÐ°Ð¼Ð°Ñ Ð½Ð¾Ð²Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ %s.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s уÑтановлен вручную.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Выбрана верÑÐ¸Ñ Â«%s» (%s) Ð´Ð»Ñ Â«%s»\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Выбрана верÑÐ¸Ñ Â«%s» (%s) Ð´Ð»Ñ Â«%s» из-за «%s»\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "ИÑправление завиÑимоÑтей…"
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " не удалоÑÑŒ."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Ðевозможно Ñкорректировать завиÑимоÑти"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Ðевозможно минимизировать набор обновлений"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Готово"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr ""
-"Возможно, Ð´Ð»Ñ Ð¸ÑÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñтих ошибок вы захотите воÑпользоватьÑÑ Â«apt-get -"
-"f install»."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Ðеудовлетворённые завиÑимоÑти. ПопытайтеÑÑŒ иÑпользовать -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "Ð’ÐИМÐÐИЕ: Следующие пакеты невозможно аутентифицировать!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Предупреждение об аутентификации не принÑто в внимание.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "УÑтановить Ñти пакеты без проверки?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Ðекоторые пакеты невозможно аутентифицировать"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "СущеÑтвуют проблемы, а параметр -y указан без --force-yes"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-"ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, InstallPackages была вызвана Ñ Ð½ÐµÑ€Ð°Ð±Ð¾Ñ‚Ð¾ÑпоÑобными "
-"пакетами!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Пакеты необходимо удалить, но удаление запрещено."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, Ordering не завершилаÑÑŒ"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "Странно. ÐеÑовпадение размеров, напишите на apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Ðеобходимо Ñкачать %sB/%sB архивов.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Ðеобходимо Ñкачать %sБ архивов.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr ""
-"ПоÑле данной операции, объём занÑтого диÑкового проÑтранÑтва возраÑÑ‚Ñ‘Ñ‚ на "
-"%sB.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr ""
-"ПоÑле данной операции, объём занÑтого диÑкового проÑтранÑтва уменьшитÑÑ Ð½Ð° "
-"%sB.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Ðе удалоÑÑŒ определить количеÑтво Ñвободного меÑта в %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "ÐедоÑтаточно Ñвободного меÑта в %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"Запрошено выполнение только тривиальных операций, но Ñто не Ñ‚Ñ€Ð¸Ð²Ð¸Ð°Ð»ÑŒÐ½Ð°Ñ "
-"операциÑ."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Да, делать, как Ñ Ñкажу!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"То, что вы хотите Ñделать, может иметь нежелательные поÑледÑтвиÑ.\n"
-"Чтобы продолжить, введите фразу: «%s»\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Ðварийное завершение."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Хотите продолжить?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Ðе удалоÑÑŒ получить %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Ðекоторые файлы Ñкачать не удалоÑÑŒ"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Указан режим «только Ñкачивание», и Ñкачивание завершено"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Ðевозможно получить некоторые архивы, вероÑтно надо запуÑтить apt-get update "
-"или попытатьÑÑ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€Ð¸Ñ‚ÑŒ запуÑк Ñ ÐºÐ»ÑŽÑ‡Ð¾Ð¼ --fix-missing"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing и Ñмена ноÑÐ¸Ñ‚ÐµÐ»Ñ Ð² данный момент не поддерживаютÑÑ"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Ðевозможно иÑправить Ñитуацию Ñ Ð¿Ñ€Ð¾Ð¿ÑƒÑ‰ÐµÐ½Ð½Ñ‹Ð¼Ð¸ пакетами."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Ðварийное завершение уÑтановки."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Следующий пакет иÑчез из ÑиÑтемы, так как вÑе их файлы\n"
-"теперь берутÑÑ Ð¸Ð· других пакетов:"
-msgstr[1] ""
-"Следующие пакеты иÑчез из ÑиÑтемы, так как вÑе их файлы\n"
-"теперь берутÑÑ Ð¸Ð· других пакетов:"
-msgstr[2] ""
-"Следующие пакеты иÑчез из ÑиÑтемы, так как вÑе их файлы\n"
-"теперь берутÑÑ Ð¸Ð· других пакетов:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Замечание: Ñто Ñделано автоматичеÑки и Ñпециально программой dpkg."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "ИгнорируетÑÑ Ð½ÐµÐ´Ð¾Ñтупный выпуÑк «%s» пакета «%s»"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "ИÑпользуетÑÑ Â«%s» в качеÑтве иÑходного пакета вмеÑто «%s»\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "ИгнорируетÑÑ Ð½ÐµÐ´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ Â«%s» пакета «%s»"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Команде update не нужны аргументы"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr "Ðе предполагалоÑÑŒ удалÑÑ‚ÑŒ stuff, невозможно запуÑтить AutoRemover"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Хм, кажетÑÑ, что AutoRemover был как-то удалён, чего не должно\n"
-"было ÑлучитьÑÑ. ПожалуйÑта, отправьте Ñообщение об ошибке в пакете apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Ð¡Ð»ÐµÐ´ÑƒÑŽÑ‰Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ, возможно, поможет вам:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, AutoRemover вÑÑ‘ поломал"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "Следующий пакет уÑтанавливалÑÑ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑки и больше не требуетÑÑ:"
-msgstr[1] ""
-"Следующие пакеты уÑтанавливалиÑÑŒ автоматичеÑки и больше не требуютÑÑ:"
-msgstr[2] ""
-"Следующие пакеты уÑтанавливалиÑÑŒ автоматичеÑки и больше не требуютÑÑ:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "%lu пакет был уÑтановлен автоматичеÑки и больше не требуетÑÑ.\n"
-msgstr[1] "%lu пакета было уÑтановлено автоматичеÑки и больше не требуетÑÑ.\n"
-msgstr[2] "%lu пакетов было уÑтановлены автоматичеÑки и больше не требуютÑÑ.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Ð”Ð»Ñ ÐµÐ³Ð¾ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¸Ñпользуйте «apt-get autoremove»."
-msgstr[1] "Ð”Ð»Ñ Ð¸Ñ… ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¸Ñпользуйте «apt-get autoremove»."
-msgstr[2] "Ð”Ð»Ñ Ð¸Ñ… ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¸Ñпользуйте «apt-get autoremove»."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, AllUpgrade вÑÑ‘ поломал"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr ""
-"Возможно, Ð´Ð»Ñ Ð¸ÑÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñтих ошибок вы захотите воÑпользоватьÑÑ Â«apt-get -"
-"f install»:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Ðеудовлетворённые завиÑимоÑти. ПопытайтеÑÑŒ выполнить «apt-get -f install», "
-"не ÑƒÐºÐ°Ð·Ñ‹Ð²Ð°Ñ Ð¸Ð¼ÐµÐ½Ð¸ пакета, (или найдите другое решение)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Ðекоторые пакеты невозможно уÑтановить. Возможно, вы проÑите невозможного,\n"
-"или же иÑпользуете неÑтабильную верÑию диÑтрибутива, где запрошенные вами\n"
-"пакеты ещё не Ñозданы или были удалены из Incoming."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Сломанные пакеты"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Будут уÑтановлены Ñледующие дополнительные пакеты:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Предлагаемые пакеты:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Рекомендуемые пакеты:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Ðе удалоÑÑŒ найти пакет %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s уÑтановлен вручную.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s выбран Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑкой уÑтановки.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -868,47 +332,25 @@ msgstr ""
"Эта команда уÑтарела. ИÑпользуйте вмеÑто неё «apt-mark auto» и «apt-mark "
"manual»."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "РаÑчёт обновлений…"
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Ðеудачно"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Готово"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, решатель проблем вÑÑ‘ поломал"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Ðевозможно заблокировать каталог, куда ÑкладываютÑÑ Ñкачиваемые файлы"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "Ðевозможно найти иÑточник Ð´Ð»Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸ «%2$s» верÑии «%1$s»"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "ВыполнÑетÑÑ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ° %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr ""
"Укажите как минимум один пакет, иÑходный код которого необходимо получить"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Ðевозможно найти пакет Ñ Ð¸Ñходным кодом Ð´Ð»Ñ %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -917,7 +359,7 @@ msgstr ""
"Ð’ÐИМÐÐИЕ: упаковка «%s» поддерживаетÑÑ Ð² ÑиÑтеме ÐºÐ¾Ð½Ñ‚Ñ€Ð¾Ð»Ñ Ð²ÐµÑ€Ñий «%s»:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -928,70 +370,80 @@ msgstr ""
"bzr branch %s\n"
"Ð´Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾Ñледних (возможно не выпущенных) обновлений пакета.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "ПропуÑкаем уже Ñкачанный файл «%s»\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Ðе удалоÑÑŒ определить количеÑтво Ñвободного меÑта в %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "ÐедоÑтаточно меÑта в %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Ðеобходимо получить %sб/%sб архивов иÑходного кода.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Ðеобходимо получить %sб архивов иÑходного кода.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Получение иÑходного кода %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Ðекоторые архивы не удалоÑÑŒ получить."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Указан режим «только Ñкачивание», и Ñкачивание завершено"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "ПропуÑкаетÑÑ Ñ€Ð°Ñпаковка уже раÑпакованного иÑходного кода в %s\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Команда раÑпаковки «%s» завершилаÑÑŒ неудачно.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Проверьте, уÑтановлен ли пакет «dpkg-dev».\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Команда Ñборки «%s» завершилаÑÑŒ неудачно.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Порождённый процеÑÑ Ð·Ð°Ð²ÐµÑ€ÑˆÐ¸Ð»ÑÑ Ð½ÐµÑƒÐ´Ð°Ñ‡Ð½Ð¾"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"Ð”Ð»Ñ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐºÐ¸ завиÑимоÑтей Ð´Ð»Ñ Ñборки необходимо указать как минимум один "
"пакет"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -1000,17 +452,17 @@ msgstr ""
"У %s отÑутÑтвует Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾Ð± архитектуре. Ð”Ð»Ñ ÐµÑ‘ наÑтройки Ñмотрите apt."
"conf(5) APT::Architectures"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Ðевозможно получить информацию о завиÑимоÑÑ‚ÑÑ… Ð´Ð»Ñ Ñборки %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s не имеет завиÑимоÑтей Ð´Ð»Ñ Ñборки.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1019,7 +471,7 @@ msgstr ""
"ЗавиÑимоÑÑ‚ÑŒ типа %s Ð´Ð»Ñ %s не может быть удовлетворена, так как %s не "
"разрешён Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð¾Ð² «%s»"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1028,14 +480,14 @@ msgstr ""
"ЗавиÑимоÑÑ‚ÑŒ типа %s Ð´Ð»Ñ %s не может быть удовлетворена, так как пакет %s не "
"найден"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"Ðе удалоÑÑŒ удовлетворить завиÑимоÑÑ‚ÑŒ типа %s Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s: УÑтановленный "
"пакет %s новее, чем надо"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1044,7 +496,7 @@ msgstr ""
"ЗавиÑимоÑÑ‚ÑŒ типа %s Ð´Ð»Ñ %s не может быть удовлетворена, так как верÑиÑ-"
"кандидат пакета %s не может удовлетворить требованиÑм по верÑии"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1053,30 +505,30 @@ msgstr ""
"ЗавиÑимоÑÑ‚ÑŒ типа %s Ð´Ð»Ñ %s не может быть удовлетворена, так как пакет %s не "
"имеет верÑии-кандидата"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Ðевозможно удовлетворить завиÑимоÑÑ‚ÑŒ типа %s Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "ЗавиÑимоÑти Ð´Ð»Ñ Ñборки %s не могут быть удовлетворены."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Обработка завиÑимоÑтей Ð´Ð»Ñ Ñборки завершилаÑÑŒ неудачно"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Changelog Ð´Ð»Ñ %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Поддерживаемые модули:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1168,103 +620,54 @@ msgstr ""
"ÑодержитÑÑ Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¸ опиÑание параметров.\n"
" Ð’ APT еÑÑ‚ÑŒ ÐºÐ¾Ñ€Ð¾Ð²ÑŒÑ Ð¡Ð£ÐŸÐ•Ð Ð¡Ð˜Ð›Ð.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"ЗÐМЕЧÐÐИЕ: Производить только Ð¸Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹!\n"
-" Ð”Ð»Ñ Ñ€ÐµÐ°Ð»ÑŒÐ½Ð¾Ð¹ работы apt-get требуютÑÑ Ð¿Ñ€Ð°Ð²Ð° ÑуперпользователÑ.\n"
-" Учтите, что блокировка не иÑпользуетÑÑ,\n"
-" поÑтому нет полного ÑоответÑÑ‚Ð²Ð¸Ñ Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ реальной Ñитуацией!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Ð’ кÑше "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Получено:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Игн "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Ош "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Получено %sБ за %s (%sБ/c)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Обработка]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Смена ноÑителÑ: вÑтавьте диÑк Ñ Ð¼ÐµÑ‚ÐºÐ¾Ð¹\n"
-" «%s»\n"
-"в уÑтройÑтво «%s» и нажмите ввод\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s не может быть помечен, так он не уÑтановлен.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s уже помечен как уÑтановленный вручную.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s уже помечен как уÑтановленный автоматичеÑки.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s уже помечен как зафикÑированный.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s уже помечен как не зафикÑированный.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "ОжидалоÑÑŒ завершение процеÑÑа %s, но он не был запущен"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s помечен как зафикÑированный.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "Отмена фикÑации Ð´Ð»Ñ %s.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
"Выполнение dpkg завершилоÑÑŒ Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ¾Ð¹. У Ð²Ð°Ñ ÐµÑÑ‚ÑŒ права ÑуперпользователÑ?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1307,6 +710,23 @@ msgstr ""
"Ð’ Ñправочных Ñтраницах apt-mark(8) и apt.conf(5)\n"
"ÑодержитÑÑ Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¸ опиÑание параметров."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1406,8 +826,8 @@ msgstr "ДопуÑтимое Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ñоединен
msgid "Server closed the connection"
msgstr "Сервер прервал Ñоединение"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Ошибка чтениÑ"
@@ -1420,8 +840,8 @@ msgid "Protocol corruption"
msgstr "ИÑкажение протокола"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Ошибка запиÑи"
@@ -1435,6 +855,10 @@ msgstr ""
"Ðе удалоÑÑŒ приÑоединитьÑÑ Ðº Ñокету данных, Ð²Ñ€ÐµÐ¼Ñ Ð½Ð° уÑтановление ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ "
"иÑтекло"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Ðеудачно"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Ðевозможно приÑоединить паÑÑивный Ñокет"
@@ -1477,7 +901,7 @@ msgstr "Ð’Ñ€ÐµÐ¼Ñ ÑƒÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ñоке
msgid "Unable to accept connection"
msgstr "Ðевозможно принÑÑ‚ÑŒ Ñоединение"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Проблема при хешировании файла"
@@ -1609,81 +1033,617 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "ПуÑтые файлы не могут быть допуÑтимыми архивами"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Ошибка запиÑи в файл"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Ошибка чтениÑ, удалённый Ñервер прервал Ñоединение"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Ошибка Ñ‡Ñ‚ÐµÐ½Ð¸Ñ Ñ Ñервера"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Ошибка запиÑи в файл"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Ошибка в select"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð´Ð»Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð¸Ñтекло"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Ошибка запиÑи в выходной файл"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Ожидание заголовков"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Ðеверный заголовок"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "Http-Ñервер поÑлал неверный заголовок"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "Http Ñервер поÑлал неверный заголовок Content-Length"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "Http-Ñервер поÑлал неверный заголовок Content-Range"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Этот HTTP-Ñервер не поддерживает Ñкачивание фрагментов файлов"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "ÐеизвеÑтный формат данных"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Ошибка в select"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Ðеверный заголовок данных"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð´Ð»Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð¸Ñтекло"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Соединение разорвано"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Ошибка запиÑи в выходной файл"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Ошибка запиÑи в файл"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Ошибка запиÑи в файл"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+"ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, InstallPackages была вызвана Ñ Ð½ÐµÑ€Ð°Ð±Ð¾Ñ‚Ð¾ÑпоÑобными "
+"пакетами!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Ошибка чтениÑ, удалённый Ñервер прервал Ñоединение"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Пакеты необходимо удалить, но удаление запрещено."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Ошибка Ñ‡Ñ‚ÐµÐ½Ð¸Ñ Ñ Ñервера"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, Ordering не завершилаÑÑŒ"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Ðеверный заголовок данных"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "Странно. ÐеÑовпадение размеров, напишите на apt@packages.debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Соединение разорвано"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Ðеобходимо Ñкачать %sB/%sB архивов.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Ðеобходимо Ñкачать %sБ архивов.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr ""
+"ПоÑле данной операции, объём занÑтого диÑкового проÑтранÑтва возраÑÑ‚Ñ‘Ñ‚ на "
+"%sB.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr ""
+"ПоÑле данной операции, объём занÑтого диÑкового проÑтранÑтва уменьшитÑÑ Ð½Ð° "
+"%sB.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "ÐедоÑтаточно Ñвободного меÑта в %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "СущеÑтвуют проблемы, а параметр -y указан без --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"Запрошено выполнение только тривиальных операций, но Ñто не Ñ‚Ñ€Ð¸Ð²Ð¸Ð°Ð»ÑŒÐ½Ð°Ñ "
+"операциÑ."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Да, делать, как Ñ Ñкажу!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"То, что вы хотите Ñделать, может иметь нежелательные поÑледÑтвиÑ.\n"
+"Чтобы продолжить, введите фразу: «%s»\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Ðварийное завершение."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Хотите продолжить?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Ðекоторые файлы Ñкачать не удалоÑÑŒ"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Ðевозможно получить некоторые архивы, вероÑтно надо запуÑтить apt-get update "
+"или попытатьÑÑ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€Ð¸Ñ‚ÑŒ запуÑк Ñ ÐºÐ»ÑŽÑ‡Ð¾Ð¼ --fix-missing"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing и Ñмена ноÑÐ¸Ñ‚ÐµÐ»Ñ Ð² данный момент не поддерживаютÑÑ"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Ðевозможно иÑправить Ñитуацию Ñ Ð¿Ñ€Ð¾Ð¿ÑƒÑ‰ÐµÐ½Ð½Ñ‹Ð¼Ð¸ пакетами."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Ðварийное завершение уÑтановки."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Следующий пакет иÑчез из ÑиÑтемы, так как вÑе их файлы\n"
+"теперь берутÑÑ Ð¸Ð· других пакетов:"
+msgstr[1] ""
+"Следующие пакеты иÑчез из ÑиÑтемы, так как вÑе их файлы\n"
+"теперь берутÑÑ Ð¸Ð· других пакетов:"
+msgstr[2] ""
+"Следующие пакеты иÑчез из ÑиÑтемы, так как вÑе их файлы\n"
+"теперь берутÑÑ Ð¸Ð· других пакетов:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Замечание: Ñто Ñделано автоматичеÑки и Ñпециально программой dpkg."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Ðе предполагалоÑÑŒ удалÑÑ‚ÑŒ stuff, невозможно запуÑтить AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Хм, кажетÑÑ, что AutoRemover был как-то удалён, чего не должно\n"
+"было ÑлучитьÑÑ. ПожалуйÑта, отправьте Ñообщение об ошибке в пакете apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Ð¡Ð»ÐµÐ´ÑƒÑŽÑ‰Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ, возможно, поможет вам:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, AutoRemover вÑÑ‘ поломал"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "Следующий пакет уÑтанавливалÑÑ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑки и больше не требуетÑÑ:"
+msgstr[1] ""
+"Следующие пакеты уÑтанавливалиÑÑŒ автоматичеÑки и больше не требуютÑÑ:"
+msgstr[2] ""
+"Следующие пакеты уÑтанавливалиÑÑŒ автоматичеÑки и больше не требуютÑÑ:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "%lu пакет был уÑтановлен автоматичеÑки и больше не требуетÑÑ.\n"
+msgstr[1] "%lu пакета было уÑтановлено автоматичеÑки и больше не требуетÑÑ.\n"
+msgstr[2] "%lu пакетов было уÑтановлены автоматичеÑки и больше не требуютÑÑ.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Ð”Ð»Ñ ÐµÐ³Ð¾ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¸Ñпользуйте «apt-get autoremove»."
+msgstr[1] "Ð”Ð»Ñ Ð¸Ñ… ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¸Ñпользуйте «apt-get autoremove»."
+msgstr[2] "Ð”Ð»Ñ Ð¸Ñ… ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¸Ñпользуйте «apt-get autoremove»."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+"Возможно, Ð´Ð»Ñ Ð¸ÑÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñтих ошибок вы захотите воÑпользоватьÑÑ Â«apt-get -"
+"f install»:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Ðеудовлетворённые завиÑимоÑти. ПопытайтеÑÑŒ выполнить «apt-get -f install», "
+"не ÑƒÐºÐ°Ð·Ñ‹Ð²Ð°Ñ Ð¸Ð¼ÐµÐ½Ð¸ пакета, (или найдите другое решение)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Ðекоторые пакеты невозможно уÑтановить. Возможно, вы проÑите невозможного,\n"
+"или же иÑпользуете неÑтабильную верÑию диÑтрибутива, где запрошенные вами\n"
+"пакеты ещё не Ñозданы или были удалены из Incoming."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Сломанные пакеты"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Будут уÑтановлены Ñледующие дополнительные пакеты:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Предлагаемые пакеты:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Рекомендуемые пакеты:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "Ð’ÐИМÐÐИЕ: Следующие пакеты невозможно аутентифицировать!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Предупреждение об аутентификации не принÑто в внимание.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Ðекоторые пакеты невозможно аутентифицировать"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "УÑтановить Ñти пакеты без проверки?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Ðе удалоÑÑŒ получить %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [УÑтановлен]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [УÑтановлен]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [УÑтановлен]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Пакеты, имеющие неудовлетворённые завиÑимоÑти:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "но %s уже уÑтановлен"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "но %s будет уÑтановлен"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "но он не может быть уÑтановлен"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "но Ñто виртуальный пакет"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "но он не уÑтановлен"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "но он не будет уÑтановлен"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " или"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "ÐОВЫЕ пакеты, которые будут уÑтановлены:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Пакеты, которые будут УДÐЛЕÐЫ:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Пакеты, которые будут оÑтавлены в неизменном виде:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Пакеты, которые будут обновлены:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Пакеты, будут заменены на более СТÐРЫЕ верÑии:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr ""
+"Пакеты, которые должны были бы оÑтатьÑÑ Ð±ÐµÐ· изменений, но будут заменены:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (вÑледÑтвие %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"Ð’ÐИМÐÐИЕ: Эти ÑущеÑтвенно важные пакеты будут удалены.\n"
+"ÐЕ ДЕЛÐЙТЕ Ñтого, еÑли вы ÐЕ предÑтавлÑете Ñебе вÑе возможные поÑледÑтвиÑ!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "обновлено %lu, уÑтановлено %lu новых пакетов, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "переуÑтановлено %lu переуÑтановлено, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu пакетов заменены на Ñтарые верÑии, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¾Ñ‚Ð¼ÐµÑ‡ÐµÐ½Ð¾ %lu пакетов, и %lu пакетов не обновлено.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "не уÑтановлено до конца или удалено %lu пакетов.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[Д/н]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "д"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "н"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Ошибка компилÑции регулÑрного Ð²Ñ‹Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ â€” %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "ИÑправление завиÑимоÑтей…"
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " не удалоÑÑŒ."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Ðевозможно Ñкорректировать завиÑимоÑти"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Ðевозможно минимизировать набор обновлений"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Готово"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr ""
+"Возможно, Ð´Ð»Ñ Ð¸ÑÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñтих ошибок вы захотите воÑпользоватьÑÑ Â«apt-get -"
+"f install»."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Ðеудовлетворённые завиÑимоÑти. ПопытайтеÑÑŒ иÑпользовать -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Команде update не нужны аргументы"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "РаÑчёт обновлений…"
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, AllUpgrade вÑÑ‘ поломал"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Готово"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"ЗÐМЕЧÐÐИЕ: Производить только Ð¸Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹!\n"
+" Ð”Ð»Ñ Ñ€ÐµÐ°Ð»ÑŒÐ½Ð¾Ð¹ работы apt-get требуютÑÑ Ð¿Ñ€Ð°Ð²Ð° ÑуперпользователÑ.\n"
+" Учтите, что блокировка не иÑпользуетÑÑ,\n"
+" поÑтому нет полного ÑоответÑÑ‚Ð²Ð¸Ñ Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ реальной Ñитуацией!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Ðе удалоÑÑŒ переименовать %s в %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Ð’ кÑше "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Получено:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Игн "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Ош "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Получено %sБ за %s (%sБ/c)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Обработка]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Смена ноÑителÑ: вÑтавьте диÑк Ñ Ð¼ÐµÑ‚ÐºÐ¾Ð¹\n"
+" «%s»\n"
+"в уÑтройÑтво «%s» и нажмите ввод\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Ðевозможно прочитать %s"
@@ -1746,34 +1706,34 @@ msgstr "Ðе удалоÑÑŒ Ñоздать IPC-канал Ð´Ð»Ñ Ð¿Ð¾Ñ€Ð¾Ð¶Ð´Ñ‘Ð
msgid "Connection closed prematurely"
msgstr "Соединение закрыто преждевременно"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Ðеправильное значение по умолчанию!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Ð”Ð»Ñ Ð¿Ñ€Ð¾Ð´Ð¾Ð»Ð¶ÐµÐ½Ð¸Ñ Ð½Ð°Ð¶Ð¼Ð¸Ñ‚Ðµ ввод."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Удалить вÑе ранее Ñкачанные .deb файлы?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Во Ð²Ñ€ÐµÐ¼Ñ Ñ€Ð°Ñпаковки возникли ошибки. Пакеты, которые были уÑтановлены,"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "будут наÑтроены. Это может привеÑти к повторению ошибок"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"или возникновению новых из-за неудовлетворённых завиÑимоÑтей. Это нормально, "
"важны"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -2029,36 +1989,36 @@ msgstr "Ðе удалоÑÑŒ прочеÑÑ‚ÑŒ ÑÑылку %s"
msgid "Failed to unlink %s"
msgstr "Ðе удалоÑÑŒ удалить %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Ðе удалоÑÑŒ Ñоздать ÑÑылку %s на %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Превышен лимит в %sB в DeLink.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Ð’ архиве нет Ð¿Ð¾Ð»Ñ package"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " Ðет запиÑи о переназначении (override) Ð´Ð»Ñ %s\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " пакет %s Ñопровождает %s, а не %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " Ðет запиÑи source override Ð´Ð»Ñ %s\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " Ðет запиÑи binary override Ð´Ð»Ñ %s\n"
@@ -2138,7 +2098,7 @@ msgstr "Ðе удалоÑÑŒ удалить %s"
msgid "Failed to rename %s to %s"
msgstr "Ðе удалоÑÑŒ переименовать %s в %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2207,7 +2167,7 @@ msgstr "Повреждённый архив"
msgid "Tar checksum failed, archive corrupted"
msgstr "ÐÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ ÐºÐ¾Ð½Ñ‚Ñ€Ð¾Ð»ÑŒÐ½Ð°Ñ Ñумма Tar, архив повреждён"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "ÐеизвеÑтный заголовок в архиве TAR. Тип %u, Ñлемент %s"
@@ -2331,23 +2291,17 @@ msgid "Unable to stat %s"
msgstr "Ðевозможно получить атрибуты %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Это неправильный DEB-архив — отÑутÑтвует ÑоÑÑ‚Ð°Ð²Ð½Ð°Ñ Ñ‡Ð°ÑÑ‚ÑŒ «%s»"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Это неправильный DEB-архив — отÑутÑтвует ÑоÑÑ‚Ð°Ð²Ð½Ð°Ñ Ñ‡Ð°ÑÑ‚ÑŒ «%s», «%s» или «%s»"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, не удалоÑÑŒ найти ÑоÑтавную чаÑÑ‚ÑŒ %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Ðе удалоÑÑŒ прочеÑÑ‚ÑŒ Ñодержимое control-файла"
@@ -2407,89 +2361,89 @@ msgstr ""
"отключено пользователем."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%liч %liмин %liÑ"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%liмин %liÑ"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%liÑ"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Ðе найдено: %s"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "ÐеизвеÑÑ‚Ð½Ð°Ñ Ð°Ð±Ð±Ñ€ÐµÐ²Ð¸Ð°Ñ‚ÑƒÑ€Ð° типа: «%c»"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Открытие файла наÑтройки %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: в начале блока нет имени."
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: иÑкажённый тег"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: лишние Ñимволы поÑле значениÑ"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
"СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: директивы могут задаватьÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ на верхнем "
"уровне"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: Ñлишком много вложенных include"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u вызвана include из Ñтого меÑта"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: не Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÐµÐ¼Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¸Ð²Ð° «%s»"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: Ð´Ð»Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¸Ð²Ñ‹ clear требуетÑÑ Ñ‚Ñ€ÐµÑ‚Ð¸Ð¹ параметр в "
"качеÑтве аргумента"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: лишние Ñимволы в конце файла"
@@ -2514,48 +2468,48 @@ msgstr "…"
msgid "%c%s... %u%%"
msgstr "%c%s… %u%%"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "ÐеизвеÑтный параметр командной Ñтроки «%c» [из %s]."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Ðе раÑпознанный параметр командной Ñтроки %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Параметр командной Ñтроки %s — не логичеÑкий переключатель \"да/нет\""
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Ð”Ð»Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð° %s требуетÑÑ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Значение параметра %s должно иметь вид =<val>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Ð”Ð»Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð° %s требуетÑÑ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚ в виде целого чиÑла, а не «%s»"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Параметр «%s» Ñлишком длинный"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "СмыÑл %s не ÑÑен, иÑпользуйте true или false."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "ÐÐµÐ²ÐµÑ€Ð½Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ %s"
@@ -2569,51 +2523,51 @@ msgstr "Ðевозможно прочитать атрибуты точки мо
msgid "Failed to stat the cdrom"
msgstr "Ðевозможно получить атрибуты cdrom"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Проблема Ð·Ð°ÐºÑ€Ñ‹Ñ‚Ð¸Ñ gzip-файла %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
"Блокировка не иÑпользуетÑÑ, так как файл блокировки %s доÑтупен только Ð´Ð»Ñ "
"чтениÑ"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Ðе удалоÑÑŒ открыть файл блокировки %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
"Блокировка не иÑпользуетÑÑ, так как файл блокировки %s находитÑÑ Ð½Ð° файловой "
"ÑиÑтеме nfs"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Ðе удалоÑÑŒ получить доÑтуп к файлу блокировки %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "СпиÑок файлов не может быть Ñоздан, так как «%s» не ÑвлÑетÑÑ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³Ð¾Ð¼"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "Файл «%s» в каталоге «%s» игнорируетÑÑ, так как Ñто необычный файл"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr "Файл «%s» в каталоге «%s» игнорируетÑÑ, так как он не имеет раÑширениÑ"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
@@ -2621,72 +2575,72 @@ msgstr ""
"Файл «%s» в каталоге «%s» игнорируетÑÑ, так как он не имеет неправильное "
"раÑширение"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr ""
"Ðарушение защиты памÑти (segmentation fault) в порождённом процеÑÑе %s."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Порождённый процеÑÑ %s получил Ñигнал %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "Порождённый процеÑÑ %s вернул код ошибки (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Порождённый процеÑÑ %s неожиданно завершилÑÑ"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Ðе удалоÑÑŒ открыть файл %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Ðе удалоÑÑŒ открыть файловый деÑкриптор %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Ðе удалоÑÑŒ Ñоздать IPC Ñ Ð¿Ð¾Ñ€Ð¾Ð¶Ð´Ñ‘Ð½Ð½Ñ‹Ð¼ процеÑÑом"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Ðе удалоÑÑŒ выполнить компреÑÑор "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr ""
"ошибка при чтении; ÑобиралиÑÑŒ прочеÑÑ‚ÑŒ ещё %llu байт, но ничего больше нет"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "ошибка при запиÑи; ÑобиралиÑÑŒ запиÑать ещё %llu байт, но не Ñмогли"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Проблема Ð·Ð°ÐºÑ€Ñ‹Ñ‚Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð° %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Проблема при переименовании файла %s в %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Проблема при удалении файла %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Проблема при Ñинхронизации файла"
@@ -2803,12 +2757,12 @@ msgstr "Ðе удалоÑÑŒ открыть StateFile %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Ðе удалоÑÑŒ запиÑать временный StateFile %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Ðевозможно разобрать Ñодержимое пакета %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Ðевозможно разобрать Ñодержимое пакета %s (2)"
@@ -2887,7 +2841,7 @@ msgstr "ИÑÐºÐ°Ð¶Ñ‘Ð½Ð½Ð°Ñ Ñтрока %u в ÑпиÑке иÑточникоÐ
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "ÐеизвеÑтный тип «%s» в Ñтроке %u в ÑпиÑке иÑточников %s"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2896,12 +2850,12 @@ msgstr ""
"Ðе удалоÑÑŒ выполнить оперативную наÑтройку «%s». Подробней, Ñмотрите в man 5 "
"apt.conf о APT::Immediate-Configure. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "Ðе удалоÑÑŒ наÑтроить «%s»."
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2926,7 +2880,7 @@ msgid ""
msgstr ""
"Пакет %s нуждаетÑÑ Ð² переуÑтановке, но найти архив Ð´Ð»Ñ Ð½ÐµÐ³Ð¾ не удалоÑÑŒ."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2934,18 +2888,10 @@ msgstr ""
"Ошибка, pkgProblemResolver::Resolve Ñгенерировал повреждённые пакеты. Это "
"может быть вызвано отложенными (held) пакетами."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Ðевозможно иÑправить ошибки, у Ð²Ð°Ñ Ð¾Ñ‚Ð»Ð¾Ð¶ÐµÐ½Ñ‹ (held) битые пакеты."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Ðекоторые индекÑные файлы не ÑкачалиÑÑŒ. Они были проигнорированы или вмеÑто "
-"них были иÑпользованы Ñтарые верÑии."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2988,12 +2934,12 @@ msgstr "Метод %s запуÑтилÑÑ Ð½Ðµ корректно"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Ð’Ñтавьте диÑк Ñ Ð¼ÐµÑ‚ÐºÐ¾Ð¹ «%s» в уÑтройÑтво «%s» и нажмите ввод."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "СиÑтема Ð¿Ð°ÐºÐµÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Â«%s» не поддерживаетÑÑ"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Ðевозможно определить подходÑщий тип ÑиÑтемы пакетированиÑ"
@@ -3027,17 +2973,17 @@ msgstr ""
"Значение «%s» недопуÑтимо Ð´Ð»Ñ APT::Default-Release, так как выпуÑк "
"недоÑтупен в иÑточниках"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "ÐÐµÐ²ÐµÑ€Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ в файле параметров %s: отÑутÑтвует заголовок Package"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "ÐеизвеÑтный тип фикÑации %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Ð”Ð»Ñ Ñ„Ð¸ÐºÑации не указан приоритет (или указан нулевой)"
@@ -3110,16 +3056,20 @@ msgstr "Ошибка ввода/вывода при попытке ÑохранÐ
msgid "rename failed, %s (%s -> %s)."
msgstr "переименовать не удалоÑÑŒ, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum не Ñовпадает"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Хеш Ñумма не Ñовпадает"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Ðе Ñовпадает размер"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "ÐÐµÐ²ÐµÑ€Ð½Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3128,16 +3078,16 @@ msgstr ""
"Ðевозможно найти ожидаемый Ñлемент «%s» в файле Release (Ð½ÐµÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ "
"в sources.list или файл)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Ðевозможно найти хеш-Ñумму «%s» в файле Release"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "ÐедоÑтупен открытый ключ Ð´Ð»Ñ Ñледующих ID ключей:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3146,12 +3096,12 @@ msgstr ""
"Файл Release Ð´Ð»Ñ %s проÑрочен (недоÑтоверный Ð½Ð°Ñ‡Ð¸Ð½Ð°Ñ Ñ %s). Обновление Ñтого "
"Ñ€ÐµÐ¿Ð¾Ð·Ð¸Ñ‚Ð¾Ñ€Ð¸Ñ Ð¿Ñ€Ð¾Ð¸Ð·Ð²Ð¾Ð´Ð¸Ñ‚ÑŒÑÑ Ð½Ðµ будет."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Конфликт раÑпроÑтранениÑ: %s (ожидалÑÑ %s, но получен %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3161,12 +3111,12 @@ msgstr ""
"иÑпользованы предыдущие индекÑные файлы. Ошибка GPG: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Ошибка GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3175,31 +3125,23 @@ msgstr ""
"Ðе удалоÑÑŒ обнаружить файл пакета %s. Это может означать, что вам придётÑÑ "
"вручную иÑправить Ñтот пакет (возможно, пропущен arch)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"Ðе удалоÑÑŒ обнаружить файл пакета %s. Это может означать, что вам придётÑÑ "
-"вручную иÑправить Ñтот пакет."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "Ðевозможно найти иÑточник Ð´Ð»Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸ «%2$s» верÑии «%1$s»"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr "Ðекорректный перечень пакетов. Ðет Ð¿Ð¾Ð»Ñ Filename: Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Ðе Ñовпадает размер"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Ðевозможно разобрать Ñодержимое файла Release (%s)"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "ОтÑутÑтвуют разделы в файле Release (%s)"
@@ -3346,33 +3288,33 @@ msgstr "Ðе удалоÑÑŒ найти аутентификационную за
msgid "Hash mismatch for: %s"
msgstr "Ðе Ñовпадает хеш Ñумма длÑ: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "ВыпуÑк «%s» Ð´Ð»Ñ Â«%s» не найден"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "ВерÑÐ¸Ñ Â«%s» Ð´Ð»Ñ Â«%s» не найдена"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Ðе удалоÑÑŒ найти задачу «%s»"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Ðе удалоÑÑŒ найти пакет по регулÑрному выражению «%s»"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
"Ðе удалоÑÑŒ выбрать верÑии из пакета «%s», так как он полноÑтью виртуальный"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3381,21 +3323,21 @@ msgstr ""
"Ðе удалоÑÑŒ выбрать ни уÑтановленную, ни верÑию кандидата из пакета «%s», так "
"как в нём нет ни той, ни другой"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Ðе удалоÑÑŒ выбрать Ñамую новую верÑию из пакета «%s», так как он полноÑтью "
"виртуальный"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Ðе удалоÑÑŒ выбрать Ñамую верÑию кандидата из пакета %s, так как у него нет "
"кандидатов"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3422,111 +3364,131 @@ msgstr "Внешний решатель завершилÑÑ Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ¾Ð¹ Ð
msgid "Execute external solver"
msgstr "ЗапуÑтить внешний решатель"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "ЗапуÑкаетÑÑ dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Ðекоторые индекÑные файлы не ÑкачалиÑÑŒ. Они были проигнорированы или вмеÑто "
+"них были иÑпользованы Ñтарые верÑии."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "УÑтанавливаетÑÑ %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "ÐаÑтраиваетÑÑ %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "УдалÑетÑÑ %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "ВыполнÑетÑÑ Ð¿Ð¾Ð»Ð½Ð¾Ðµ удаление %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Уведомление об иÑчезновении %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "ВыполнÑетÑÑ Ð¿Ð¾ÑлеуÑтановочный триггер %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "ОтÑутÑтвует каталог «%s»"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Ðе удалоÑÑŒ открыть файл «%s»"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "ПодготавливаетÑÑ %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "РаÑпаковываетÑÑ %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "ПодготавливаетÑÑ Ð´Ð»Ñ Ð½Ð°Ñтройки %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "УÑтановлен %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "ПодготавливаетÑÑ Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Удалён %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Подготовка к полному удалению %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s полноÑтью удалён"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Ðевозможно запиÑать в %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Ðе удалоÑÑŒ запиÑать в журнал, неудачное выполнение openpty() (/dev/pts не "
-"Ñмонтирован?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "ЗапуÑкаетÑÑ dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "ДейÑтвие прервано до его завершениÑ"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "Отчёты apport не запиÑаны, так доÑтигнут MaxReports"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "проблемы Ñ Ð·Ð°Ð²Ð¸ÑимоÑÑ‚Ñми — оÑтавлÑем ненаÑтроенным"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3534,7 +3496,7 @@ msgstr ""
"Отчёты apport не запиÑаны, так как Ñообщение об ошибке указывает на "
"повторную ошибку от предыдущего отказа."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3542,7 +3504,7 @@ msgstr ""
"Отчёты apport не запиÑаны, так как получено Ñообщение об ошибке о нехватке "
"меÑта на диÑке"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3550,7 +3512,16 @@ msgstr ""
"Отчёты apport не запиÑаны, так как получено Ñообщение об ошибке о нехватке "
"памÑти"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Отчёты apport не запиÑаны, так как получено Ñообщение об ошибке о нехватке "
+"меÑта на диÑке"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3587,6 +3558,95 @@ msgstr ""
msgid "Not locked"
msgstr "Ðе заблокирован"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Заметьте, выбираетÑÑ Â«%s» Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ñ‡Ð¸ «%s»\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Заметьте, выбираетÑÑ Â«%s» Ð´Ð»Ñ Ñ€ÐµÐ³ÑƒÐ»Ñрного Ð²Ñ‹Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Â«%s»\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Пакет %s — виртуальный, его функции предоÑтавлÑÑŽÑ‚ÑÑ Ð¿Ð°ÐºÐµÑ‚Ð°Ð¼Ð¸:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Ðет верÑии-кандидата]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Ð’Ñ‹ должны Ñвно указать, какой именно вы хотите уÑтановить."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Пакет %s недоÑтупен, но упомÑнут в ÑпиÑке завиÑимоÑтей другого пакета.\n"
+#~ "Это может означать, что пакет отÑутÑтвует, уÑтарел, или доÑтупен из "
+#~ "иÑточников, не упомÑнутых в sources.list\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Однако Ñледующие пакеты могут его заменить:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Ð”Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° «%s» не найден кандидат на уÑтановку"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Виртуальные пакеты, подобные «%s», не могут быть удалены\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Пакет «%s» не уÑтановлен, поÑтому не может быть удалён. Возможно имелÑÑ Ð² "
+#~ "виду «%s»?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Пакет «%s» не уÑтановлен, поÑтому не может быть удалён\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Заметьте, вмеÑто «%2$s» выбираетÑÑ Â«%1$s»\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "ПропуÑкаетÑÑ %s — пакет уже уÑтановлен и нет команды upgrade.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "ПропуÑкаетÑÑ %s — пакет не уÑтановлен, а запрошено только обновление.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "ПереуÑтановка %s невозможна, он не ÑкачиваетÑÑ.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "Уже уÑтановлена ÑÐ°Ð¼Ð°Ñ Ð½Ð¾Ð²Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ %s.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Выбрана верÑÐ¸Ñ Â«%s» (%s) Ð´Ð»Ñ Â«%s»\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Выбрана верÑÐ¸Ñ Â«%s» (%s) Ð´Ð»Ñ Â«%s» из-за «%s»\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "ИгнорируетÑÑ Ð½ÐµÐ´Ð¾Ñтупный выпуÑк «%s» пакета «%s»"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "ВыполнÑетÑÑ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ° %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Это неправильный DEB-архив — отÑутÑтвует ÑоÑÑ‚Ð°Ð²Ð½Ð°Ñ Ñ‡Ð°ÑÑ‚ÑŒ «%s», «%s» или "
+#~ "«%s»"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum не Ñовпадает"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Ðе удалоÑÑŒ обнаружить файл пакета %s. Это может означать, что вам "
+#~ "придётÑÑ Ð²Ñ€ÑƒÑ‡Ð½ÑƒÑŽ иÑправить Ñтот пакет."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "Ðе удалоÑÑŒ запиÑать в журнал, неудачное выполнение openpty() (/dev/pts не "
+#~ "Ñмонтирован?)\n"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "Файл %s не начинаетÑÑ Ñ Ð¿Ñ€Ð¾Ð·Ñ€Ð°Ñ‡Ð½Ð¾ подпиÑанного ÑообщениÑ"
diff --git a/po/sk.po b/po/sk.po
index d708bd39f..b98db734a 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-06-28 20:49+0100\n"
"Last-Translator: Ivan Masár <helix84@centrum.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
@@ -20,152 +20,154 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Balík %s verzie %s má nesplnené závislosti:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Celkom názvov balíkov: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Celkom štruktúr balíkov: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Normálnych balíkov: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Čisto virtuálnych balíkov: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Jednoduchých virtuálnych balíkov: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Zmiešaných virtuálnych balíkov: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Chýbajúcich: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Celkom rôznych verzií: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Celkom rôznych popisov: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Celkom závislostí: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Celkom vzťahov ver/súbor: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Celkom vzťahov popis/súbor: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Celkom poskytnutých mapovaní: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Celkom globovaných reťazcov: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Celkom miesta závislých verzií: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Celkom jalového miesta: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Celkom priradeného miesta: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Súbor balíkov %s je neaktuálny."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Neboli nájdené žiadne balíky"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Musíte zadať aspoň jeden vyhľadávací vzor"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
"Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark "
"showauto“."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Nedá sa nájsť balík %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Súbory balíka:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Vyrovnávacia pamäť je neaktuálna, nedá sa odvolať na súbor balíka"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Pripevnené balíky:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(nenájdené)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Nainštalovaná verzia: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Kandidát: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(žiadna)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Pripevnený balík:"
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Tabuľka verzií:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s pre %s skompilovaný %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -237,35 +239,35 @@ msgstr ""
"a apt.conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Prosím, zadajte názov tohto disku, napríklad „Debian 5.0.3 Disk 1“"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Pripojenie „%s“ na „%s“ zlyhalo"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Zopakujte tento postup pre všetky CD v sade diskov."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argumenty nie sú vo dvojiciach"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -293,563 +295,32 @@ msgstr ""
" -c=? NaÄíta tento konfiguraÄný súbor\n"
" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr ""
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Chyba pri preklade regulárneho výrazu - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Nasledovné balíky majú nesplnené závislosti:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "ale nainštalovaný je %s"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "ale inštalovať sa bude %s"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "ale sa nedá nainštalovať"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "ale je to virtuálny balík"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "ale nie je nainštalovaný"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "ale sa nebude inštalovať"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " alebo"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Nainštalujú sa nasledovné NOVÉ balíky:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Nasledovné balíky sa ODSTRÃNIA:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Nasledovné balíky sa ponechajú v súÄasnej verzii:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Nasledovné balíky sa aktualizujú:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Nasledovné balíky sa DEGRADUJÚ:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Nasledovné pridržané balíky sa zmenia:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (kvôli %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"UPOZORNENIE: Nasledovné dôležité balíky sa odstránia.\n"
-"Ak presne neviete, Äo robíte, tak to NEROBTE!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu aktualizovaných, %lu nových nainštalovaných, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinštalovaných, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu degradovaných, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu na odstránenie a %lu neaktualizovaných.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu iba ÄiastoÄne nainÅ¡talovaných alebo odstránených.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Poznámka: vyberá sa „%s“ pre úlohu „%s“\n"
-
-#: cmdline/apt-get.cc:669
-#, 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:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Nainštalovaný]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Nie je kandidátska verzia]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Mali by ste explicitne vybrať jeden na inštaláciu."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"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:729
-msgid "However the following packages replace it:"
-msgstr "Avšak nahrádzajú ho nasledovné balíky:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Balík „%s“ nemá kandidáta na inštaláciu"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Virtuálne balíky ako „%s“ nemožno odstrániť\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť. Mali ste na mysli "
-"„%s“?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, 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:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Poznámka: „%s“ sa vyberá namiesto „%s“\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"Preskakuje sa %s, nie je nainštalovaný a bola vy6iadan8 iba aktualizácia.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s je už najnovšej verzie.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s je oznaÄený ako manuálne nainÅ¡talovaný.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Vybraná verzia „%s“ (%s) pre „%s“\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Vybraná verzia „%s“ (%s) pre „%s“ kvôli „%s“\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Opravujú sa závislosti..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " zlyhalo."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Závislosti sa nedajú opraviť"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Sada na aktualizáciu sa nedá minimalizovať"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Hotovo"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "Možno to budete chcieť napraviť spustením „apt-get -f install“."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Nesplnené závislosti. Skúste použiť -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "UPOZORNENIE: Pri nasledovných balíkoch sa nedá overiť vierohodnosť!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Upozornenie o vierohodnosti bolo potlaÄené.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Nainštalovať tieto nekontrolované balíky?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Nedala sa zistiť vierohodnosť niektorých balíkov"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-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:1169
-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:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Vnútorná chyba, Triedenie sa neukonÄilo"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"NezvyÄajná udalosÅ¥... Veľkosti nesúhlasia, poÅ¡lite e-mail na apt@packages."
-"debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Je potrebné stiahnuť %sB/%sB archívov.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Je potrebné stiahnuť %sB archívov.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Po tejto operácii sa na disku použije Äalších %sB.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, 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:1270
-#, 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:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Zadané „iba triviálne“, ale toto nie je triviálna operácia."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Ãno, urob to, Äo vravím!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Možno sa chystáte vykonaÅ¥ nieÄo Å¡kodlivé.\n"
-"Ak chcete pokraÄovaÅ¥, opíšte frázu „%s“\n"
-" ?]"
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Prerušené."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Chcete pokraÄovaÅ¥?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Zlyhalo stiahnutie %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Niektoré súbory sa nedajú stiahnuť"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "SÅ¥ahovanie ukonÄené v režime „iba stiahnuť“"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --"
-"fix-missing"
-
-#: cmdline/apt-get.cc:1414
-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:1419
-msgid "Unable to correct missing packages."
-msgstr "Chýbajúce balíky sa nedajú opraviť."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Inštalácia sa prerušuje."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Nasledovný balík zmizol z vášho systému, pretože\n"
-"všetky súbory boli prepísané inými balíkmi:"
-msgstr[1] ""
-"Nasledovné balíky zmizli z vášho systému, pretože\n"
-"všetky súbory boli prepísané inými balíkmi:"
-msgstr[2] ""
-"Nasledovné balíky zmizli z vášho systému, pretože\n"
-"všetky súbory boli prepísané inými balíkmi:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Pozn.: Toto robí dpkg automaticky a zámerne."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Ignorovať nedostupné cieľové vydanie „%s“ balíka „%s“"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Vyberá sa „%s“ ako zdrojový balík namiesto „%s“\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Ignorovať nedostupnú verziu „%s“ balíka „%s“"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Príkaz update neprijíma žiadne argumenty"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, zdá sa, že AutoRemover nieÄo zniÄil, Äo sa naozaj nemalo staÅ¥.\n"
-"Prosím, pošlite hlásenie o chybe balíka apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-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:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Vnútorná chyba, AutoRemover nieÄo pokazil"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Nasledovný balík bol nainštalovaný automaticky a už viac nie je potrebný:"
-msgstr[1] ""
-"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:"
-msgstr[2] ""
-"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"%lu balík bol nainštalovaný automaticky a už viac nie je potrebný.\n"
-msgstr[1] ""
-"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n"
-msgstr[2] ""
-"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Na jeho odstránenie použite „apt-get autoremove“."
-msgstr[1] "Na ich odstránenie použite „apt-get autoremove“."
-msgstr[2] "Na ich odstránenie použite „apt-get autoremove“."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Vnútorná chyba, AllUpgrade pokazil veci"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "Možno to budete chcieť napraviť spustením „apt-get -f install“:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Nesplnené závislosti. Skúste spustiť „apt-get -f install“ bez balíkov (alebo "
-"navrhnite riešenie)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Niektoré balíky sa nedajú nainštalovať. To môže znamenať, že požadujete\n"
-"nemožnú situáciu, alebo ak používate nestabilnú distribúciu, že\n"
-"požadované balíky ešte neboli vytvorené alebo presunuté z fronty\n"
-"Novoprichádzajúcich (Incoming) balíkov."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Poškodené balíky"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Nainštalujú sa nasledovné extra balíky:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Navrhované balíky:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "OdporúÄané balíky:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Balík %s sa nedá nájsť"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s je oznaÄený ako manuálne nainÅ¡talovaný.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s je oznaÄený ako automaticky nainÅ¡talovaný.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -857,46 +328,24 @@ msgstr ""
"Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark auto“ a "
"„apt-mark manual“."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "PrepoÄítava sa aktualizácia... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Chyba"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Hotovo"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Vnútorná chyba, „problem resolver“ nieÄo pokazil"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Adresár pre sťahovanie sa nedá zamknúť"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "Nie je možné nájsť zdroj na stiahnutie verzie „%s“ balíka „%s“"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "SÅ¥ahuje sa %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, 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:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -906,7 +355,7 @@ msgstr ""
"adrese:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -918,70 +367,80 @@ msgstr ""
"ak chcete získať najnovšie (a pravdepodobne zatiaľ nevydané) aktualizácie "
"balíka.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Preskakuje sa už stiahnutý súbor „%s“\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, 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:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Na %s nemáte dostatok voľného miesta"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Je potrebné stiahnuť %sB/%sB zdrojových archívov.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, 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:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Stiahnuť zdroj %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Zlyhalo stiahnutie niektorých archívov."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "SÅ¥ahovanie ukonÄené v režime „iba stiahnuť“"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Príkaz na rozbalenie „%s“ zlyhal.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Príkaz na zostavenie „%s“ zlyhal.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Proces potomka zlyhal"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -990,17 +449,17 @@ msgstr ""
"Informácie o architektúre nie sú dostupné pre %s. Informácie o nastavení "
"nájdete v apt.conf(5) APT::Architectures"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s nemá žiadne závislosti na zostavenie.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1009,20 +468,20 @@ msgstr ""
"%s závislosť pre %s nemožno splniť, pretože %s nie je povolené na balíkoch "
"„%s“"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
"found"
msgstr "%s závislosť pre %s nemožno splniť, pretože sa nedá nájsť balík %s"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1031,7 +490,7 @@ msgstr ""
"%s závislosť pre %s nemožno splniť, pretože kandidátska verzia balíka %s, "
"nedokáže splniť požiadavky na verziu"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1039,30 +498,30 @@ msgid ""
msgstr ""
"%s závislosť pre %s nemožno splniť, pretože balík %s nemá kandidátsku verziu"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Zlyhalo splnenie %s závislosti pre %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Závislosti na zostavenie %s nemožno splniť."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Spracovanie závislostí na zostavenie zlyhalo"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Záznam zmien %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Podporované moduly:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1150,102 +609,53 @@ msgstr ""
"a apt.conf(5).\n"
" Tento APT má schopnosti posvätnej kravy.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"POZN.: Toto je iba simulácia!\n"
-" apt-get potrebuje na skutoÄné spustenie práva používateľa root.\n"
-" Tiež pamätajte, že zamykanie je deaktivované, takže\n"
-" sa nespoliehajte na to že to bude platiť v reálnej situácii!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Už existuje "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Získava sa:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Chyba "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%sB sa stiahlo za %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Prebieha spracovanie]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Výmena nosiÄa: Vložte disk s názvom\n"
-" „%s“\n"
-"do mechaniky „%s“ a stlaÄte Enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s nemožno oznaÄiÅ¥, pretože nie je nainÅ¡talovaný.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s už bol oznaÄený ako manuálne nainÅ¡talovaný.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s už bol oznaÄený ako automaticky nainÅ¡talovaný.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s bol už nastavený na podržanie.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s bol už nastavený na nepodržanie.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "ÄŒakalo sa na %s, ale nebolo to tam"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s je oznaÄený na podržanie.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "Zrušené podržanie %s.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "Vykonanie dpkg zlyhalo. Ste root?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1286,6 +696,23 @@ msgstr ""
" -o=? NastaviÅ¥ ľubovoľný konfiguraÄnú voľbu, napr. -o dir::cache=/tmp\n"
"Ďalšie informácie nájdete na manuálových stránkach apt-mark(8) a apt.conf(5)."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1383,8 +810,8 @@ msgstr "Uplynul Äas spojenia"
msgid "Server closed the connection"
msgstr "Server ukonÄil spojenie"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Chyba pri Äítaní"
@@ -1397,8 +824,8 @@ msgid "Protocol corruption"
msgstr "Narušenie protokolu"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Chyba pri zápise"
@@ -1410,6 +837,10 @@ msgstr "Nedá sa vytvoriť socket"
msgid "Could not connect data socket, connection timed out"
msgstr "Nedá sa pripojiÅ¥ dátový socket, uplynul Äas spojenia"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Chyba"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Nedá sa pripojiť pasívny socket."
@@ -1452,7 +883,7 @@ msgstr "Uplynulo spojenie dátového socketu"
msgid "Unable to accept connection"
msgstr "Spojenie sa nedá prijať"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problém s hašovaním súboru"
@@ -1582,81 +1013,611 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Prázdne súbory nemôžu byť platné archívy"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Chyba zápisu do tohto súboru"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Chyba pri Äítaní zo servera. Druhá strana ukonÄila spojenie"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Chyba pri Äítaní zo servera"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Chyba zápisu do súboru"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Výber zlyhal"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Uplynul Äas spojenia"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Chyba zápisu do výstupného súboru"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "ÄŒaká sa na hlaviÄky"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Chybná hlaviÄka"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "HTTP server poslal neplatnú hlaviÄku odpovede"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "HTTP server poslal neplatnú hlaviÄku Content-Length"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "HTTP server poslal neplatnú hlaviÄku Content-Range"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Tento HTTP server má poškodenú podporu rozsahov"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Neznámy formát dátumu"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Výber zlyhal"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Zlé dátové záhlavie"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Uplynul Äas spojenia"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Spojenie zlyhalo"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Chyba zápisu do výstupného súboru"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Vnútorná chyba"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Chyba zápisu do súboru"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Chyba zápisu do tohto súboru"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Vnútorná chyba, InstallPackages bolo volané s poškodenými balíkmi!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Chyba pri Äítaní zo servera. Druhá strana ukonÄila spojenie"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Je potrebné odstránenie balíka, ale funkcia Odstrániť je vypnutá."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Chyba pri Äítaní zo servera"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Vnútorná chyba, Triedenie sa neukonÄilo"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Zlé dátové záhlavie"
+#: apt-private/private-install.cc:159
+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"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Spojenie zlyhalo"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Je potrebné stiahnuť %sB/%sB archívov.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Vnútorná chyba"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Je potrebné stiahnuť %sB archívov.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Po tejto operácii sa na disku použije Äalších %sB.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Po tejto operácii sa na disku uvoľní %sB.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Na %s nemáte dostatok voľného miesta."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Nastali problémy a -y bolo použité bez --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Zadané „iba triviálne“, ale toto nie je triviálna operácia."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Ãno, urob to, Äo vravím!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Možno sa chystáte vykonaÅ¥ nieÄo Å¡kodlivé.\n"
+"Ak chcete pokraÄovaÅ¥, opíšte frázu „%s“\n"
+" ?]"
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Prerušené."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Chcete pokraÄovaÅ¥?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Niektoré súbory sa nedajú stiahnuť"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --"
+"fix-missing"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing a výmena nosiÄa nie sú momentálne podporované"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Chýbajúce balíky sa nedajú opraviť."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Inštalácia sa prerušuje."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Nasledovný balík zmizol z vášho systému, pretože\n"
+"všetky súbory boli prepísané inými balíkmi:"
+msgstr[1] ""
+"Nasledovné balíky zmizli z vášho systému, pretože\n"
+"všetky súbory boli prepísané inými balíkmi:"
+msgstr[2] ""
+"Nasledovné balíky zmizli z vášho systému, pretože\n"
+"všetky súbory boli prepísané inými balíkmi:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Pozn.: Toto robí dpkg automaticky a zámerne."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Nemajú sa odstraňovať veci, nespustí sa AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, zdá sa, že AutoRemover nieÄo zniÄil, Äo sa naozaj nemalo staÅ¥.\n"
+"Prosím, pošlite hlásenie o chybe balíka apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Nasledovné informácie vám možno pomôžu vyriešiť túto situáciu:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Vnútorná chyba, AutoRemover nieÄo pokazil"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Nasledovný balík bol nainštalovaný automaticky a už viac nie je potrebný:"
+msgstr[1] ""
+"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:"
+msgstr[2] ""
+"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"%lu balík bol nainštalovaný automaticky a už viac nie je potrebný.\n"
+msgstr[1] ""
+"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n"
+msgstr[2] ""
+"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Na jeho odstránenie použite „apt-get autoremove“."
+msgstr[1] "Na ich odstránenie použite „apt-get autoremove“."
+msgstr[2] "Na ich odstránenie použite „apt-get autoremove“."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Možno to budete chcieť napraviť spustením „apt-get -f install“:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Nesplnené závislosti. Skúste spustiť „apt-get -f install“ bez balíkov (alebo "
+"navrhnite riešenie)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Niektoré balíky sa nedajú nainštalovať. To môže znamenať, že požadujete\n"
+"nemožnú situáciu, alebo ak používate nestabilnú distribúciu, že\n"
+"požadované balíky ešte neboli vytvorené alebo presunuté z fronty\n"
+"Novoprichádzajúcich (Incoming) balíkov."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Poškodené balíky"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Nainštalujú sa nasledovné extra balíky:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Navrhované balíky:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "OdporúÄané balíky:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "UPOZORNENIE: Pri nasledovných balíkoch sa nedá overiť vierohodnosť!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Upozornenie o vierohodnosti bolo potlaÄené.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Nedala sa zistiť vierohodnosť niektorých balíkov"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Nainštalovať tieto nekontrolované balíky?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Zlyhalo stiahnutie %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Nainštalovaný]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Nainštalovaný]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Nainštalovaný]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Nasledovné balíky majú nesplnené závislosti:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "ale nainštalovaný je %s"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "ale inštalovať sa bude %s"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "ale sa nedá nainštalovať"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "ale je to virtuálny balík"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "ale nie je nainštalovaný"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "ale sa nebude inštalovať"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " alebo"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Nainštalujú sa nasledovné NOVÉ balíky:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Nasledovné balíky sa ODSTRÃNIA:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Nasledovné balíky sa ponechajú v súÄasnej verzii:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Nasledovné balíky sa aktualizujú:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Nasledovné balíky sa DEGRADUJÚ:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Nasledovné pridržané balíky sa zmenia:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (kvôli %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"UPOZORNENIE: Nasledovné dôležité balíky sa odstránia.\n"
+"Ak presne neviete, Äo robíte, tak to NEROBTE!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu aktualizovaných, %lu nových nainštalovaných, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinštalovaných, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu degradovaných, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu na odstránenie a %lu neaktualizovaných.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu iba ÄiastoÄne nainÅ¡talovaných alebo odstránených.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr ""
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Chyba pri preklade regulárneho výrazu - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Opravujú sa závislosti..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " zlyhalo."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Závislosti sa nedajú opraviť"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Sada na aktualizáciu sa nedá minimalizovať"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Hotovo"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Možno to budete chcieť napraviť spustením „apt-get -f install“."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Nesplnené závislosti. Skúste použiť -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Príkaz update neprijíma žiadne argumenty"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "PrepoÄítava sa aktualizácia... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Vnútorná chyba, AllUpgrade pokazil veci"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Hotovo"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"POZN.: Toto je iba simulácia!\n"
+" apt-get potrebuje na skutoÄné spustenie práva používateľa root.\n"
+" Tiež pamätajte, že zamykanie je deaktivované, takže\n"
+" sa nespoliehajte na to že to bude platiť v reálnej situácii!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Premenovanie %s na %s zlyhalo"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Už existuje "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Získava sa:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Chyba "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%sB sa stiahlo za %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Prebieha spracovanie]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Výmena nosiÄa: Vložte disk s názvom\n"
+" „%s“\n"
+"do mechaniky „%s“ a stlaÄte Enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Nedá sa naÄítaÅ¥ %s"
@@ -1719,33 +1680,33 @@ msgstr "Zlyhalo vytvorenie IPC rúry k podprocesu"
msgid "Connection closed prematurely"
msgstr "Spojenie bolo predÄasne ukonÄené"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Chybné predvolené nastavenie!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "StlaÄte Enter, ak chcete pokraÄovaÅ¥."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Chcete odstrániť všetky doteraz stiahnuté .deb súbory?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
"Pri rozbaľovaní došlo k nejakým chybám. Balíky, ktoré boli nainštalované"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "budú nakonfigurované. Môže to spôsobiť opakované chybové správy"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "o nesplnených závislostiach. Je to v poriadku, dôležité sú iba"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1994,36 +1955,36 @@ msgstr "Nie je možné vykonať readlink %s"
msgid "Failed to unlink %s"
msgstr "Nie je možné vykonať unlink %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Nepodarilo sa zlinkovať %s s %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Bol dosiahnutý odlinkovací limit %sB.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Archív neobsahuje pole „package“"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s nemá žiadnu položku override\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " správcom %s je %s, nie %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s nemá žiadnu položku „source override“\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s nemá žiadnu položku „binary override“\n"
@@ -2102,7 +2063,7 @@ msgstr "Problém s odlinkovaním %s"
msgid "Failed to rename %s to %s"
msgstr "Premenovanie %s na %s zlyhalo"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2170,7 +2131,7 @@ msgstr "Porušený archív"
msgid "Tar checksum failed, archive corrupted"
msgstr "Kontrolný súÄet pre tar zlyhal, archív je poÅ¡kodený"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Neznáma TAR hlaviÄka typu %u, Älen %s"
@@ -2294,22 +2255,17 @@ msgid "Unable to stat %s"
msgstr "Nedá sa vyhodnotiť %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Toto nie je platný DEB archív, chýba ÄasÅ¥ „%s“"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "Toto nie je platný DEB archív, chýba ÄasÅ¥ „%s“, „%s“ alebo „%s“"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Vnútorná chyba, nedá sa nájsÅ¥ ÄasÅ¥ %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Nespracovateľný riadiaci súbor"
@@ -2369,87 +2325,87 @@ msgstr ""
"používateľ."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%li h %li min %li s"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%li min %li s"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%li s"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Voľba %s nenájdená"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Nerozpoznaná skratka typu: „%c“"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Otvára sa konfiguraÄný súbor %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Syntaktická chyba %s:%u: Skomolená znaÄka"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Syntaktická chyba %s:%u: Zahrnuté odtiaľ"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktíva „%s“"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Syntaktická chyba %s:%u: direktíva clear vyžaduje ako argument strom volieb"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, 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"
@@ -2474,48 +2430,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Hotovo"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Parameter príkazového riadka „%c“ [z %s] je neznámy"
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Nezrozumiteľný parameter %s na príkazovom riadku"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Parameter príkazového riadku %s nie je pravdivostná hodnota"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Voľba %s vyžaduje argument."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Parameter %s: Zadanie konfiguraÄnej položky musí obsahovaÅ¥ =<hodn>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Voľba %s vyžaduje ako argument celé Äíslo (integer), nie „%s“"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Voľba „%s“ je príliš dlhá"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Nezrozumiteľný význam %s, skúste true alebo false. "
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Neplatná operácia %s"
@@ -2529,117 +2485,117 @@ msgstr "Prípojný bod %s sa nedá vyhodnotiť"
msgid "Failed to stat the cdrom"
msgstr "Nedá sa vykonať stat() CD-ROM"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problém pri zatváraní gzip súboru %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Zamykanie pre súbor zámku %s, ktorý je iba na Äítanie, sa nepoužíva"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Súbor zámku %s sa nedá otvoriť"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Zamykanie pre súbor zámku %s pripojený cez NFS sa nepoužíva"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Zámok %s sa nedá získať"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "Zoznam súborov nemožno vytvoriť, pretože „%s“ nie je adresár"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "Ignoruje sa „%s“ v adresári „%s“, pretože to nie je obyÄajný súbor"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr "Ignoruje sa „%s“ v adresári „%s“, pretože nemá príponu názvu súboru"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
"Ignoruje sa „%s“ v adresári „%s“, pretože má neplatnú príponu názvu súboru"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Podproces %s obdržal chybu segmentácie."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Podproces %s dostal signál %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Podproces %s neoÄakávane skonÄil"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Nedá sa otvoriť súbor %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Nedá sa otvoriÅ¥ popisovaÄ súboru %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Nedá sa vytvoriť podproces IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Nepodarilo sa spustiť kompresor "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "Äítanie, treba preÄítaÅ¥ eÅ¡te %llu, ale už niÄ neostáva"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "zápis, treba zapísať ešte %llu, no nedá sa to"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Problém pri zatváraní súboru %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problém pri synchronizovaní súboru %s na %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Problém pri odstraňovaní súboru %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problém pri synchronizovaní súboru"
@@ -2756,12 +2712,12 @@ msgstr "Nie je možné otvoriť StateFile %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Nie je možné zapísaÅ¥ doÄasný StateFile %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Súbor %s sa nedá spracovať (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Súbor %s sa nedá spracovať (2)"
@@ -2837,7 +2793,7 @@ msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2846,12 +2802,12 @@ msgstr ""
"Nebolo možné vykonať okamžitú konfiguráciu „%s“. Pozri prosím podrobnosti v "
"man 5 apt.conf pod APT::Immediate-Configure (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "Nedá sa nakonfigurovať „%s“."
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2873,7 +2829,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:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2881,18 +2837,10 @@ msgstr ""
"Chyba, pkgProblemResolver::Resolve vytvára poruchy, Äo môže být spôsobené "
"pridržanými balíkmi."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
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:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Niektoré indexové súbory sa nepodarilo stiahnuť. Boli ignorované alebo sa "
-"použili staršie verzie."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2935,12 +2883,12 @@ msgstr "Spôsob %s nebol správne spustený"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Vložte disk nazvaný „%s“ do mechaniky „%s“ a stlaÄte Enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Systém balíkov „%s“ nie je podporovaný"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Nedá sa urÄiÅ¥ vhodný typ systému balíkov"
@@ -2974,17 +2922,17 @@ msgstr ""
"„%s“ nie je platná hodnota pre APT::Default-Release, pretože také vydanie "
"nie je dostupné v zdrojoch"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Neplatný záznam v súbore nastavení %s, chýba hlaviÄka Package"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Nezrozumiteľné pridržanie typu %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Nebola zadaná žiadna (alebo nulová) priorita na pridržanie"
@@ -3053,16 +3001,20 @@ msgstr "V/V chyba pri ukladaní zdrojovej vyrovnávacej pamäti"
msgid "rename failed, %s (%s -> %s)."
msgstr "premenovanie zlyhalo, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Nezhoda kontrolných MD5 súÄtov"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Nezhoda kontrolných haÅ¡ súÄtov"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Veľkosti sa nezhodujú"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Neplatná operácia %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3071,16 +3023,16 @@ msgstr ""
"Nepodarilo sa nájsÅ¥ oÄakávanú položku „%s“ v súbore Release (Nesprávna "
"položka sources.list alebo chybný formát súboru)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Nepodarilo sa nájsť haš „%s“ v súbore Release"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3089,12 +3041,12 @@ msgstr ""
"Súbor Release pre %s vypršal (neplatný od %s). Aktualizácie tohto zdroja "
"softvéru sa nepoužijú."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "V konflikte s distribúciou: %s (oÄakávalo sa %s ale dostali sme %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3104,12 +3056,12 @@ msgstr ""
"použijú sa predošlé indexové súbory. Chyba GPG: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Chyba GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3118,31 +3070,23 @@ 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:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"Nedá sa nájsť súbor s balíkom %s. Asi budete musieť opraviť tento balík "
-"manuálne."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "Nie je možné nájsť zdroj na stiahnutie verzie „%s“ balíka „%s“"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, 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:1879
-msgid "Size mismatch"
-msgstr "Veľkosti sa nezhodujú"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Nedá spracovať súbor Release %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Žiadne sekcie v Release súbore %s"
@@ -3287,32 +3231,32 @@ msgstr "Nebolo možné nájsÅ¥ autentifikaÄný záznam pre: %s"
msgid "Hash mismatch for: %s"
msgstr "Nezhoda kontrolných haÅ¡ súÄtov: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Nebolo nájdené vydanie „%s“ pre „%s“"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Nebola nájdená verzia „%s“ pre „%s“"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Nebolo možné nájsť úlohu „%s“"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "Nie je možné vybraÅ¥ verzie z balíka „%s“, pretože je Äisto virtuálny"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3321,20 +3265,20 @@ msgstr ""
"Nie je možné vybrať nainštalované ani kandidátske verzie z balíka „%s“, "
"pretože nemá žiadnu z nich"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Nie je možné vybraÅ¥ najnovÅ¡iu verziu z balíka „%s“, pretože je Äisto "
"virtuálny"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Nie je možné vybrať kandidátsku verziu z balíka „%s“, pretože nemá kandidáta"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3361,111 +3305,131 @@ msgstr "Externý riešiteľ zlyhal bez uvedenia chybovej správy"
msgid "Execute external solver"
msgstr "Spustiť externého riešiteľa"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Spúšťa sa dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Niektoré indexové súbory sa nepodarilo stiahnuť. Boli ignorované alebo sa "
+"použili staršie verzie."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Inštaluje sa %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Nastavuje sa %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Odstraňuje sa %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "Úplne sa odstraňuje %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Zaznamenali sme zmiznutie %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Vykonáva sa spúšťaÄ post-installation %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Adresár „%s“ chýba"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Nedá sa otvoriť súbor „%s“"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Pripravuje sa %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Rozbaľuje sa %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Pripravuje sa nastavenie %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Nainštalovaný balík %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Pripravuje sa odstránenie %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Odstránený balík %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Pripravuje sa úplné odstránenie %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Balík „%s“ je úplne odstránený"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Do %s sa nedá zapisovať"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Nedá sa zapísať záznam, volanie openpty() zlyhalo (/dev/pts nie je "
-"pripojený?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Spúšťa sa dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "Operácia bola preruÅ¡ená predtým, než sa stihla dokonÄiÅ¥"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "Nezapíše sa správa apport, pretože už bol dosiahnutý limit MaxReports"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "problém so závislosťami - ponecháva sa nenakonfigurované"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3473,7 +3437,7 @@ msgstr ""
"Nezapíše sa správa apport, pretože chybová správa indikuje, že je to chyba v "
"nadväznosti na predošlé zlyhanie."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3481,7 +3445,7 @@ msgstr ""
"Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk "
"zaplnený"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3489,7 +3453,16 @@ msgstr ""
"Nezapíše sa správa apport, pretože chybová správa indikuje chybu nedostatku "
"pamäte"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk "
+"zaplnený"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3519,6 +3492,93 @@ msgstr "dpkg bol preruÅ¡ený, musíte ruÄne opraviÅ¥ problém spustením „%sâ
msgid "Not locked"
msgstr "Nie je zamknuté"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Poznámka: vyberá sa „%s“ pre úlohu „%s“\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Poznámka: vyberá sa „%s“ pre regulárny výraz „%s“\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Balík %s je virtuálny balík poskytovaný balíkmi:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Nie je kandidátska verzia]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Mali by ste explicitne vybrať jeden na inštaláciu."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "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"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Avšak nahrádzajú ho nasledovné balíky:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Balík „%s“ nemá kandidáta na inštaláciu"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Virtuálne balíky ako „%s“ nemožno odstrániť\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť. Mali ste na "
+#~ "mysli „%s“?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Poznámka: „%s“ sa vyberá namiesto „%s“\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "Preskakuje sa %s, pretože je už nainštalovaný.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Preskakuje sa %s, nie je nainštalovaný a bola vy6iadan8 iba "
+#~ "aktualizácia.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "Nie je možná reinštalácia %s, pretože sa nedá stiahnuť.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s je už najnovšej verzie.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Vybraná verzia „%s“ (%s) pre „%s“\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Vybraná verzia „%s“ (%s) pre „%s“ kvôli „%s“\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Ignorovať nedostupné cieľové vydanie „%s“ balíka „%s“"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "SÅ¥ahuje sa %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "Toto nie je platný DEB archív, chýba ÄasÅ¥ „%s“, „%s“ alebo „%s“"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Nezhoda kontrolných MD5 súÄtov"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Nedá sa nájsť súbor s balíkom %s. Asi budete musieť opraviť tento balík "
+#~ "manuálne."
+
+#~ 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"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "Súbor %s nezaÄína podpísanou správou v Äistom texte (clearsigned)"
diff --git a/po/sl.po b/po/sl.po
index 39ae7db71..c703a02d7 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.5.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-06-27 21:29+0000\n"
"Last-Translator: Andrej Znidarsic <andrej.znidarsic@gmail.com>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@@ -20,150 +20,152 @@ msgstr ""
"X-Poedit-Language: Slovenian\n"
"X-Poedit-SourceCharset: utf-8\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Paket %s razliÄica %s ima nereÅ¡ene odvisnosti:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Vseh imen paketov: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Skupno struktur paketov : "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " ObiÄajni paketi: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " ÄŒisti navidezni paketi: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Posamezni navidezni paketi: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Mešani navidezni paketi: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Manjka: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Vseh razliÄic: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Skupno razliÄnih opisov: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Vseh odvisnosti: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Vseh povezav Raz/Dat: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Skupno razmerij opisov/datotek: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Vseh dobljenih preslikav: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Vseh razširjenih nizov: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Celotna velikost z odvisnostmi razliÄice: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Celotna ohlapna velikost: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Celotna velikost, izraÄunana za: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Datoteka paketa %s ni usklajena."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Noben paket ni bil najden"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Podati morate vsaj en iskalni vzorec"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr "Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark showauto'."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Ni mogoÄe najti paketa %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Datoteke paketa:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Predpomnilnik ni usklajen, x-ref datoteke paketa ni mogoÄ"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Pripeti paketi:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(ni najdeno)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " NameÅ¡Äen: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Kandidat: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(brez)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Bucika paketa: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Preglednica razliÄic:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s za %s kodno preveden na %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -235,35 +237,35 @@ msgstr ""
"conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Navedite ime tega diska, kot je naprimer 'Debian 5.0.3 disk 1'"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Vstavite disk v pogon in pritisnite vnosno tipko"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Priklapljanje '%s' na '%s' je spodletelo"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Ponovi to opravilo za preostanek CD-jev v vaši zbirki."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argumenti niso v parih"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -291,566 +293,32 @@ msgstr ""
" -c=? Prebere podano datoteko z nastavitvami\n"
" -o=? Nastavi poljubno nastavitveno možnost, na primer. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr ""
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Napaka med prevajanjem logiÄnega izraza - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Naslednji paketi imajo nerešene odvisnosti:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "vendar je paket %s nameÅ¡Äen"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "vendar bo paket %s nameÅ¡Äen"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "vendar se ga ne da namestiti"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "vendar je navidezen paket"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "vendar ni nameÅ¡Äen"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "vendar ne bo nameÅ¡Äen"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " ali"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Naslednji NOVI paketi bodo nameÅ¡Äeni:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Naslednji novi paketi bodo ODSTRANJENI:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Naslednji paketi so bili zadržani:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Naslednji paketi bodo nadgrajeni:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Naslednji paketi bodo POSTARANI:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Naslednji zadržani paketi bodo spremenjeni:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (zaradi %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"OPOZORILO: Naslednji nujni paketi bodo odstranjeni.\n"
-"Tega NE storite, razen Äe ne veste natanko kaj poÄenjate!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu nadgrajenih, %lu na novo nameÅ¡Äenih, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu posodobljenih, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu postaranih, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu ne popolnoma nameÅ¡Äenih ali odstranjenih.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Izbiranje '%s' za nalogo '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Izbiranje '%s' za logiÄni izraz '%s'\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [NameÅ¡Äeno]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Ni razliÄica kandidata]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Sami izberite paket, ki ga želite namestiti."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Paket %s nima navedene razliÄice, vendar se nanj nanaÅ¡a nek drug paket.\n"
-"To ponavadi pomeni, da paket manjka, je zastaran ali\n"
-"pa je na voljo samo iz drugega vira.\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Kakorkoli, naslednji paketi ga nadomestijo:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Paket '%s' nima namestitvenega kandidata"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Navideznih paketov kot je '%s' ni mogoÄe odstraniti\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"Paket '%s' ni nameÅ¡Äen, zato ni bil odstranjen. Ali ste mislili '%s'?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Paket '%s' ni nameÅ¡Äen, zato ni bil odstranjen\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Izbiranje '%s' namesto '%s'\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "%s je preskoÄen, ker je že nameÅ¡Äen in ne potrebuje nadgradnje.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "Preskok %s, ni nameÅ¡Äen in zahtevane so le nadgradnje\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Ponovna namestitev %s ni možna, ker prejem ni možen.\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "NajnovejÅ¡a razliÄica %s je že nameÅ¡Äena.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s je bil nastavljen na roÄno nameÅ¡Äen.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Izbrana razliÄica '%s' (%s) za '%s'\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Izbrana razliÄica '%s' (%s) za '%s' namesto '%s'\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Popravljanje odvisnosti ..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " spodletelo."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Ni mogoÄe popraviti odvisnosti"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Ni mogoÄe pomanjÅ¡ati zbirke za nadgradnjo"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Opravljeno"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Nerešene odvisnosti. Poskusite uporabiti -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "POZOR: Naslednjih paketov ni bilo mogoÄe overiti!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Opozorilo overitve je bilo prepisano.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Ali želite te pakete namestiti brez preverjanja?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Nekaterih paketkov bi bilo mogoÄe overiti"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Prišlo je do težav in -y je bil uporabljen brez --force-yes"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Notranja napaka, NamestiPakete je bil klican z pokvarjenimi paketi!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Odstraniti je treba pakete, a je odstranjevanje onemogoÄeno."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Notranja napaka, Urejanje se ni konÄalo"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Kako Äudno .. Velikosti se ne ujemata, poÅ¡ljite sporoÄilo na apt@packages."
-"debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Potrebno je dobiti %sB/%sB arhivov.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Potrebno je dobiti %sB arhivov.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Po tem opravilu bo porabljenega %sB dodatnega prostora.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "Po tem opravilu bo sproÅ¡Äenega %sB prostora na disku.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Ni mogoÄe doloÄiti prostega prostora v %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Na %s je premalo prostora."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Navedena je možnost Samo preprosto, a to opravilo ni preprosto."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Da, naredi tako kot pravim!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Naredili boste nekaj, kar je morda lahko Å¡kodljivo.\n"
-"Za nadaljevanje vtipkajte frazo '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Prekini."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Ali želite nadaljevati?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Ni mogoÄe dobiti %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Prejem nekaterih datotek ni uspel"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Prejem je dokonÄan in uporabljen je naÄin samo prejema"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Nekaterih arhivov ni mogoÄe dobiti. Poskusite uporabiti apt-get update ali --"
-"fix-missing."
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing in izmenjava medija trenutno nista podprta"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Ni mogoÄe popraviti manjkajoÄih paketov."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Prekinjanje namestitve."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Naslednji paketi so izginili z vašega sistema, ker so vse\n"
-"datoteke prepisali drugi paketi:"
-msgstr[1] ""
-"Naslednji paketi je izginil z vašega sistema, ker so vse\n"
-"datoteke prepisali drugi paketi:"
-msgstr[2] ""
-"Naslednja paketa sta izginila z vašega sistema, ker so vse\n"
-"datoteke prepisali drugi paketi:"
-msgstr[3] ""
-"Naslednji paketi so izginili z vašega sistema, ker so vse\n"
-"datoteke prepisali drugi paketi:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Opomba: To je dpkg storil samodejno in namenoma."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Prezri nerazpoložljiv cilj izdaje '%s' paketa '%s'"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Izbiranje '%s' kot vir paketa namesto '%s'\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Prezri nerazpoložljivo razliÄico '%s' paketa '%s'"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Ukaz update ne sprejema argumentov"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-"Program ne bi smel brisati stvari, ni mogoÄe zagnati "
-"SamodejnegaOdstranjevalnika"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Videti je, da je SamodejniOdstranjevalnik nekaj uniÄil, kar se ne bi smelo "
-"zgoditi\n"
-"PoÅ¡ljite poroÄilo o hroÅ¡Äu v apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Naslednji podatki vam bodo morda pomagali rešiti težavo:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Notranja napaka, SamodejniOdstranjevalnik je pokvaril stvari"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "Naslednji paketi so bili samodejno nameÅ¡Äeni in niso veÄ zahtevani:"
-msgstr[1] "Naslednji paket je bil samodejno nameÅ¡Äen in ni veÄ zahtevan:"
-msgstr[2] ""
-"Naslednja paketa sta bila samodejno nameÅ¡Äena in nista veÄ zahtevana:"
-msgstr[3] "Naslednji paketi so bili samodejno nameÅ¡Äeni in niso veÄ zahtevani:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "%lu paketov je bilo samodejno nameÅ¡Äenih in niso veÄ zahtevani.\n"
-msgstr[1] "%lu paket je bil samodejno nameÅ¡Äen in ni bil veÄ zahtevan.\n"
-msgstr[2] "%lu paketa sta bila samodejno nameÅ¡Äena in nista veÄ zahtevana.\n"
-msgstr[3] "%lu paketi so bili samodejno nameÅ¡Äeni in niso veÄ zahtevani.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Uporabite 'apt-get autoremove' za njihovo odstranitev."
-msgstr[1] "Uporabite 'apt-get autoremove' za njegovo odstranitev."
-msgstr[2] "Uporabite 'apt-get autoremove' za njuno odstranitev."
-msgstr[3] "Uporabite 'apt-get autoremove' za njihovo odstranitev."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Notranja napaka zaradi AllUpgrade."
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "Poskusite zagnati 'apt-get -f install', Äe želite popraviti naslednje:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Nerešene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali "
-"navedite rešitev)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Nekaterih paketov ni mogoÄe namestiti. To lahko pomeni, da ste zahtevali\n"
-"nemogoÄ položaj, Äe uporabljate nestabilno izdajo pa\n"
-", da nekateri zahtevani paketi Å¡e niso ustvarjeni ali premaknjeni\n"
-" iz PrihajajoÄega."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Pokvarjeni paketi"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Naslednji dodatni paketi bodo nameÅ¡Äeni:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Predlagani paketi:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "PriporoÄeni paketi:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Ni mogoÄe najti paketa %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s je bil nastavljen na roÄno nameÅ¡Äen.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s je nastavljen na samodejno nameÅ¡Äen.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -858,47 +326,25 @@ msgstr ""
"Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark auto' in 'apt-mark "
"manual'."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "PreraÄunavanje nadgradnje ... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Spodletelo"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Opravljeno"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Notranja napaka, reševalnik težav je pokvaril stvari"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Ni mogoÄe zakleniti mape prejemov"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "Ni mogoÄe najti vira za prejem razliÄice '%s' paketa '%s'"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "Prejemanje %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr ""
"Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Izvornega paketa za %s ni mogoÄe najti"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -907,7 +353,7 @@ msgstr ""
"OPOMBA: pakiranje '%s' vzdrževano v sistemu nadzora razliÄice '%s' na:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -918,70 +364,80 @@ msgstr ""
"bzr branch %s\n"
"za pridobitev zadnjih (morda Å¡e neizdanih) posodobitev paketa.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Preskok že prejete datoteke '%s'\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Ni mogoÄe doloÄiti prostega prostora v %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Nimate dovolj prostora na %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Potrebno je dobiti %sB izvornih arhivov.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Dobi vir %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Nekaterih arhivov ni mogoÄe pridobiti."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Prejem je dokonÄan in uporabljen je naÄin samo prejema"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "Odpakiranje že odpakiranih izvornih paketov v %s je bilo preskoÄeno\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Ukaz odpakiranja '%s' ni uspel.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Izberite, Äe je paket 'dpkg-dev' nameÅ¡Äen.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Ukaz gradnje '%s' ni uspel.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Podrejeno opravilo ni uspelo"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -990,17 +446,17 @@ msgstr ""
"Za %s ni bilo mogoÄe najti podatkov o arhitekturi. Za nastavitev si oglejte "
"apt.conf(5) APT::Architectures"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Ni mogoÄe dobiti podrobnosti o odvisnostih za gradnjo za %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s nima odvisnosti za gradnjo.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1008,20 +464,20 @@ msgid ""
msgstr ""
"odvisnosti %s za %s ni mogoÄe zadovoljiti, ker %s ni dovoljen na paketih '%s'"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
"found"
msgstr "%s odvisnosti za %s ni mogoÄe zadostiti, ker ni mogoÄe najti paketa %s"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"Ni mogoÄe zadostiti %s odvisnosti za %s. NameÅ¡Äen paket %s je preveÄ nov"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1030,7 +486,7 @@ msgstr ""
"odvisnosti %s za %s ni mogoÄe zadovoljiti, ker je razliÄica kandidata paketa "
"%s ne more zadostiti zahtev razliÄice"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1039,30 +495,30 @@ msgstr ""
"odvisnosti %s za %s ni mogoÄe zadovoljiti, ker je razliÄica kandidata paketa "
"%s nima razliÄice kandidata"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Ni mogoÄe zadostiti %s odvisnosti za %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Odvisnosti za gradnjo %s ni bilo mogoÄe zadostiti."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Obdelava odvisnosti za gradnjo je spodletela"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Dnevnik sprememb za %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Podprti moduli:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1149,102 +605,53 @@ msgstr ""
" sources.list(5) in apt.conf(5). \n"
" Ta APT ima moÄi super krav.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"OPOMBA: To je samo simulacija!\n"
-" apt-get za pravo izvajanje potrebuje privilegije skrbnika.\n"
-" Zaklepanje je onemogoÄeno, zato se ne zanaÅ¡ajte\n"
-" na pomembnost trenutnega pravega stanja!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Zadetek "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Dobi:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Prezr "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Nap "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Pridobljenih %sB v %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Delo]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Sprememba medija: vstavite disk z oznako\n"
-" '%s'\n"
-"v enoto '%s' in pritisnite vnosno tipko\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "paket %s ne more biti oznaÄen, ker ni nameÅ¡Äen.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "paket %s je bil že nastavljen na roÄno nameÅ¡Äen.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "paket %s je bil že nastavljen kot samodejno nameÅ¡Äen.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "paket %s je bil že nastavljen kot na Äakanju.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "paket %s je bil že nastavljen kot ne na Äakanju.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Program je Äakal na %s a ga ni bilo tam"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "paket %s je nastavljen kot na Äakanju.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "ÄŒakanje za %s je bilo preklicano.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "Izvajanje dpkg je spodletelo. Ali ste skrbnik?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1284,6 +691,23 @@ msgstr ""
" -o=? Nastavi poljubno nastavitveno možnost, na primer -o dir::cache=/tmp\n"
"Za veÄ podrobnosti si oglejte strani priroÄnika apt-mark(8) in apt-conf(5)."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1381,8 +805,8 @@ msgstr "Povezava je zakasnela"
msgid "Server closed the connection"
msgstr "Strežnik je zaprl povezavo"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Napaka branja"
@@ -1395,8 +819,8 @@ msgid "Protocol corruption"
msgstr "Okvara protokola"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Napaka pisanja"
@@ -1408,6 +832,10 @@ msgstr "Ni mogoÄe ustvariti vtiÄa"
msgid "Could not connect data socket, connection timed out"
msgstr "Ni mogoÄe povezati podatkovnega vtiÄa. Povezava je zakasnela."
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Spodletelo"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Ni mogoÄe povezat pasivnega vtiÄa."
@@ -1450,7 +878,7 @@ msgstr "Povezava podatkovne vtiÄnice je zakasnela"
msgid "Unable to accept connection"
msgstr "Ni mogoÄe sprejeti povezave"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Težava med razprševanjem datoteke"
@@ -1580,81 +1008,615 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Prazne datoteke ne morejo biti veljavni arhivi"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Napaka med pisanjem v datoteko"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Napaka med branjem s strežnika. Oddaljeni del je zaprl povezavo"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Napaka med branjem s strežnika"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Napaka med pisanjem v datoteko"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Izbira ni uspela"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Povezava je zakasnela"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Napaka med pisanjem v izhodno datoteko"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "ÄŒakanje na glave"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Neveljavna vrstica glave"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "Strežnik HTTP je poslal neveljavno glavo odgovora"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "Strežnik HTTP je poslal glavo z neveljavno dolžino vsebine"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "Strežnik HTTP je poslal glavo z neveljavnim obsegom vsebine"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Ta strežnik HTTP ima pokvarjen obseg podpore"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Neznana oblika datuma"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Izbira ni uspela"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "NapaÄni podatki glave"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Povezava je zakasnela"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Povezava ni uspela"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Napaka med pisanjem v izhodno datoteko"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Notranja napaka"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Napaka med pisanjem v datoteko"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Napaka med pisanjem v datoteko"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Notranja napaka, NamestiPakete je bil klican z pokvarjenimi paketi!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Napaka med branjem s strežnika. Oddaljeni del je zaprl povezavo"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Odstraniti je treba pakete, a je odstranjevanje onemogoÄeno."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Napaka med branjem s strežnika"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Notranja napaka, Urejanje se ni konÄalo"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "NapaÄni podatki glave"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Kako Äudno .. Velikosti se ne ujemata, poÅ¡ljite sporoÄilo na apt@packages."
+"debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Povezava ni uspela"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Potrebno je dobiti %sB/%sB arhivov.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Notranja napaka"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Potrebno je dobiti %sB arhivov.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Po tem opravilu bo porabljenega %sB dodatnega prostora.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Po tem opravilu bo sproÅ¡Äenega %sB prostora na disku.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Na %s je premalo prostora."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Prišlo je do težav in -y je bil uporabljen brez --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Navedena je možnost Samo preprosto, a to opravilo ni preprosto."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Da, naredi tako kot pravim!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Naredili boste nekaj, kar je morda lahko Å¡kodljivo.\n"
+"Za nadaljevanje vtipkajte frazo '%s'\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Prekini."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Ali želite nadaljevati?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Prejem nekaterih datotek ni uspel"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Nekaterih arhivov ni mogoÄe dobiti. Poskusite uporabiti apt-get update ali --"
+"fix-missing."
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing in izmenjava medija trenutno nista podprta"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Ni mogoÄe popraviti manjkajoÄih paketov."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Prekinjanje namestitve."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Naslednji paketi so izginili z vašega sistema, ker so vse\n"
+"datoteke prepisali drugi paketi:"
+msgstr[1] ""
+"Naslednji paketi je izginil z vašega sistema, ker so vse\n"
+"datoteke prepisali drugi paketi:"
+msgstr[2] ""
+"Naslednja paketa sta izginila z vašega sistema, ker so vse\n"
+"datoteke prepisali drugi paketi:"
+msgstr[3] ""
+"Naslednji paketi so izginili z vašega sistema, ker so vse\n"
+"datoteke prepisali drugi paketi:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Opomba: To je dpkg storil samodejno in namenoma."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+"Program ne bi smel brisati stvari, ni mogoÄe zagnati "
+"SamodejnegaOdstranjevalnika"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Videti je, da je SamodejniOdstranjevalnik nekaj uniÄil, kar se ne bi smelo "
+"zgoditi\n"
+"PoÅ¡ljite poroÄilo o hroÅ¡Äu v apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Naslednji podatki vam bodo morda pomagali rešiti težavo:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Notranja napaka, SamodejniOdstranjevalnik je pokvaril stvari"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "Naslednji paketi so bili samodejno nameÅ¡Äeni in niso veÄ zahtevani:"
+msgstr[1] "Naslednji paket je bil samodejno nameÅ¡Äen in ni veÄ zahtevan:"
+msgstr[2] ""
+"Naslednja paketa sta bila samodejno nameÅ¡Äena in nista veÄ zahtevana:"
+msgstr[3] "Naslednji paketi so bili samodejno nameÅ¡Äeni in niso veÄ zahtevani:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "%lu paketov je bilo samodejno nameÅ¡Äenih in niso veÄ zahtevani.\n"
+msgstr[1] "%lu paket je bil samodejno nameÅ¡Äen in ni bil veÄ zahtevan.\n"
+msgstr[2] "%lu paketa sta bila samodejno nameÅ¡Äena in nista veÄ zahtevana.\n"
+msgstr[3] "%lu paketi so bili samodejno nameÅ¡Äeni in niso veÄ zahtevani.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Uporabite 'apt-get autoremove' za njihovo odstranitev."
+msgstr[1] "Uporabite 'apt-get autoremove' za njegovo odstranitev."
+msgstr[2] "Uporabite 'apt-get autoremove' za njuno odstranitev."
+msgstr[3] "Uporabite 'apt-get autoremove' za njihovo odstranitev."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Poskusite zagnati 'apt-get -f install', Äe želite popraviti naslednje:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Nerešene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali "
+"navedite rešitev)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Nekaterih paketov ni mogoÄe namestiti. To lahko pomeni, da ste zahtevali\n"
+"nemogoÄ položaj, Äe uporabljate nestabilno izdajo pa\n"
+", da nekateri zahtevani paketi Å¡e niso ustvarjeni ali premaknjeni\n"
+" iz PrihajajoÄega."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Pokvarjeni paketi"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Naslednji dodatni paketi bodo nameÅ¡Äeni:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Predlagani paketi:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "PriporoÄeni paketi:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "POZOR: Naslednjih paketov ni bilo mogoÄe overiti!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Opozorilo overitve je bilo prepisano.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Nekaterih paketkov bi bilo mogoÄe overiti"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Ali želite te pakete namestiti brez preverjanja?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Ni mogoÄe dobiti %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [NameÅ¡Äeno]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [NameÅ¡Äeno]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [NameÅ¡Äeno]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Naslednji paketi imajo nerešene odvisnosti:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "vendar je paket %s nameÅ¡Äen"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "vendar bo paket %s nameÅ¡Äen"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "vendar se ga ne da namestiti"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "vendar je navidezen paket"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "vendar ni nameÅ¡Äen"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "vendar ne bo nameÅ¡Äen"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " ali"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Naslednji NOVI paketi bodo nameÅ¡Äeni:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Naslednji novi paketi bodo ODSTRANJENI:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Naslednji paketi so bili zadržani:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Naslednji paketi bodo nadgrajeni:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Naslednji paketi bodo POSTARANI:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Naslednji zadržani paketi bodo spremenjeni:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (zaradi %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"OPOZORILO: Naslednji nujni paketi bodo odstranjeni.\n"
+"Tega NE storite, razen Äe ne veste natanko kaj poÄenjate!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu nadgrajenih, %lu na novo nameÅ¡Äenih, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu posodobljenih, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu postaranih, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu ne popolnoma nameÅ¡Äenih ali odstranjenih.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr ""
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Napaka med prevajanjem logiÄnega izraza - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Popravljanje odvisnosti ..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " spodletelo."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Ni mogoÄe popraviti odvisnosti"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Ni mogoÄe pomanjÅ¡ati zbirke za nadgradnjo"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Opravljeno"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Če želite popraviti napake, poskusite pognati 'apt-get -f install'."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Nerešene odvisnosti. Poskusite uporabiti -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Ukaz update ne sprejema argumentov"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "PreraÄunavanje nadgradnje ... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Notranja napaka zaradi AllUpgrade."
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Opravljeno"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"OPOMBA: To je samo simulacija!\n"
+" apt-get za pravo izvajanje potrebuje privilegije skrbnika.\n"
+" Zaklepanje je onemogoÄeno, zato se ne zanaÅ¡ajte\n"
+" na pomembnost trenutnega pravega stanja!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Ni mogoÄe preimenovati %s v %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Zadetek "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Dobi:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Prezr "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Nap "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Pridobljenih %sB v %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Delo]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Sprememba medija: vstavite disk z oznako\n"
+" '%s'\n"
+"v enoto '%s' in pritisnite vnosno tipko\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Ni mogoÄe brati %s"
@@ -1717,35 +1679,35 @@ msgstr "Ustvarjanje cevi IPC do podopravila je spodletelo"
msgid "Connection closed prematurely"
msgstr "Povezava se je prezgodaj zaprla"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "NapaÄna privzeta nastavitev!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Za nadaljevanje pritisnite vnosno tipko."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Ali želite izbrisati vse predhodno prejete datoteke .deb?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
"Med razÅ¡irajanjem je priÅ¡lo do nekaterih napak. Paketi, ki so bili nameÅ¡Äeni"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "bodo bili nastavljeni. To lahko povzroÄi podvojene napake"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"ali do napak zaradi manjkajoÄih odvisnosti. To je v redu, pomembne so samo "
"napake"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "nad tem sporoÄilom. Popravite jih in poženite Namest[I]tev Å¡e enkrat"
@@ -1993,36 +1955,36 @@ msgstr "Napaka med branjem povezave %s"
msgid "Failed to unlink %s"
msgstr "Napaka med odvezovanjem %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Napaka med povezovanjem %s in %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Dosežena meja RazVezovanja %sB.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Arhiv ni imel polja s paketom"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s nima prepisanega vnosa\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " Vzdrževalec %s je %s in ne %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s nima izvornega vnosa prepisa\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s nima tudi binarnega vnosa prepisa\n"
@@ -2101,7 +2063,7 @@ msgstr "Napaka med odvezovanjem %s"
msgid "Failed to rename %s to %s"
msgstr "Ni mogoÄe preimenovati %s v %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2171,7 +2133,7 @@ msgstr "Pokvarjen arhiv"
msgid "Tar checksum failed, archive corrupted"
msgstr "Nadzorna vsota tar ni uspela, arhiv je pokvarjen"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Neznana vrsta glave TAR %u, Älan %s"
@@ -2295,22 +2257,17 @@ msgid "Unable to stat %s"
msgstr "Ni mogoÄe doloÄiti %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "To ni veljaven arhiv DEB. Manjka Älan '%s'."
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "To ni veljaven arhiv DEB, nima Älana '%s', '%s' ali '%s'"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Notranja napaka. Ni mogoÄe najti Älana %s."
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Nadzorne datoteke ni mogoÄe razÄleniti"
@@ -2369,87 +2326,87 @@ msgstr ""
"Ni mogoÄe poveÄati velikosti MMap, ker je samodejno poveÄevanje onemogoÄeno."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lih %limin %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Izbire %s ni mogoÄe najti"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Neprepoznana vrsta okrajšave: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Odpiranje nastavitvene datoteke %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "Skladenjska napaka %s:%u: Blok se zaÄne brez imena."
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Skladenjska napaka %s:%u: Slabo oblikovana oznaka."
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Skladenjska napaka %s:%u: Dodatna krama za vrednostjo."
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
"Skladenjska napaka %s:%u: Napotki se lahko izvedejo le na vrhnji ravni."
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Skladenjska napaka %s:%u: PreveÄ vgnezdenih vkljuÄitev"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Skladenjska napaka %s:%u: VkljuÄeno od tu"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Skladenjska napaka %s:%u: Nepodprt napotek '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Skladenjska napaka %s:%u: poÄisti ukaz zahteva drevo možnosti kot argument"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Skladenjska napaka %s:%u: Dodatna krama na koncu datoteke"
@@ -2474,48 +2431,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s ... Narejeno"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Možnost ukazne vrstice '%c' [iz %s] ni poznana."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Možnosti ukazne vrstice %s ni mogoÄe razumeti"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Možnost ukazne vrstice %s ni boolova vrednost"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Možnost %s zahteva argument."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Možnost %s: DoloÄilo predmeta nastavitve zahtevajo =<val>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Možnost %s zahteva celoštevilski argument, ne '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Možnost '%s' je predolga"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Pomena %s ni mogoÄe razumeti, poskusite pravilno ali napaÄno."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Neveljavno opravilo %s"
@@ -2529,117 +2486,117 @@ msgstr "Ni mogoÄe doloÄiti priklopne toÄke %s"
msgid "Failed to stat the cdrom"
msgstr "Ni mogoÄe doloÄiti CD-ROM-a"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Težava med zapiranjem gzip datoteke %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Brez uporabe zaklepanja za zaklenjeno datoteko le za branje %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Ni mogoÄe odprti zaklenjene datoteke %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Ni mogoÄe zakleniti datoteke %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "Seznama datotek ni mogoÄe ustvariti, ker '%s' ni mapa"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "Preziranje '%s' v mapi '%s', ker ni obiÄajna datoteka"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr "Preziranje datoteke '%s' v mapi '%s', ker nima pripone imena datotek"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
"Preziranje datoteke '%s' v mapi '%s', ker nima veljavne pripone imena datotek"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Pod-opravilo %s je prejelo segmentacijsko napako."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Pod-opravilo %s je prejelo signal %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "Pod-opravilo %s je vrnilo kodo napake (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Pod-opravilo %s se je nepriÄakovano zakljuÄilo"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Ni mogoÄe odpreti datoteke %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Ni mogoÄe odpreti opisnika datotek %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Ni mogoÄe ustvariti podopravila IPD"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Ni mogoÄe izvesti stiskanja "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "Prebrano, Å¡e vedno je treba prebrati %llu bajtov, vendar ni niÄ ostalo"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "pisanje, preostalo je Å¡e %llu za pisanje, vendar ni bilo mogoÄe pisati"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Težava med zapiranjem datoteke %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Težava med preimenovanje datoteke %s v %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Težava med razvezovanjem datoteke %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Težava med usklajevanjem datoteke"
@@ -2756,12 +2713,12 @@ msgstr "Odpiranje DatotekeStanja %s je spodletelo"
msgid "Failed to write temporary StateFile %s"
msgstr "Pisanje zaÄasne DatotekeStanja %s je spodletelo"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Ni mogoÄe razÄleniti datoteke paketa %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Ni mogoÄe razÄleniti datoteke paketa %s (2)"
@@ -2842,7 +2799,7 @@ msgstr "Slabo oblikovana vrstica %u v seznamu virov %s (vrsta)"
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "Vrsta '%s' v vrstici %u na seznamu virov %s ni znana"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2851,12 +2808,12 @@ msgstr ""
"Ni mogoÄe izvesti takojÄ…nje nastavitve na '%s'. Oglejte si man5 apt.conf pod "
"APT::Immediate-Configure za podrobnosti. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "Ni mogoÄe nastaviti '%s' "
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2878,7 +2835,7 @@ msgid ""
"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr "Paket %s mora biti znova nameÅ¡Äen, vendar ni mogoÄe najti arhiva zanj."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2886,18 +2843,10 @@ msgstr ""
"Napaka. pkgProblemResolver::Resolve pri razrešitvi, ki so jih morda "
"povzroÄili zadržani paketi."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Ni mogoÄe popraviti težav. Imate pokvarjene pakete."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Prejem nekaterih datotek kazala je spodletel. Bile so prezrte ali pa so bile "
-"namesto njih uporabljene stare."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2940,12 +2889,12 @@ msgstr "NaÄin %s se ni zaÄel pravilno"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Vstavite disk z oznako '%s' v pogon '%s' in pritisnite vnosno tipko."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Paketni sistem '%s' ni podprt"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Ni mogoÄe doloÄiti ustrezne vrste paketnega sistema"
@@ -2979,17 +2928,17 @@ msgstr ""
"Vrednost '%s' je neveljavna za APT::Default-Release in zato takšna izdaja ni "
"na voljo v virih"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Neveljaven zapis v datoteki možnosti %s, ni glave paketa"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Ni mogoÄe razumeti vrste bucike %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Prednost bucike ni navedena ali pa je niÄ."
@@ -3056,16 +3005,20 @@ msgstr "Napaka VI med shranjevanjem predpomnilnika virov"
msgid "rename failed, %s (%s -> %s)."
msgstr "preimenovanje je spodletelo, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Neujemanje vsote MD5"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Neujemanje vsote razpršil"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Neujemanje velikosti"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Neveljavno opravilo %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3074,16 +3027,16 @@ msgstr ""
"Ni mogoÄe najti priÄakovanega vnosa '%s' v datoteki Release (napaÄen vnos "
"sources.list ali slabo oblikovana datoteka)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Ni mogoÄe najti vsote razprÅ¡evanja za '%s' v datoteki Release"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "Za naslednje ID-je kljuÄa ni na voljo javnih kljuÄev:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3092,12 +3045,12 @@ msgstr ""
"Datoteka Release za %s je potekla (neveljavna od %s). Posodobitev za to "
"skladiÅ¡Äe ne bo uveljavljena."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Distribucija v sporu: %s (priÄakovana %s, toda dobljena %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3107,12 +3060,12 @@ msgstr ""
"zato bodo uporabljene predhodne datoteke kazal. Napaka GPG: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Napaka GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3121,16 +3074,12 @@ msgstr ""
"Ni bilo mogoÄe najti datoteke za paket %s. Morda boste morali roÄno "
"popraviti ta paket (zaradi manjkajoÄega arhiva)."
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"Ni bilo mogoÄe najti datoteke za paket %s. Morda boste morali roÄno "
-"popraviti ta paket."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "Ni mogoÄe najti vira za prejem razliÄice '%s' paketa '%s'"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3138,16 +3087,12 @@ msgstr ""
"Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje za paket "
"%s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Neujemanje velikosti"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Ni mogoÄe razÄleniti Release datoteke %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Ni izbir v Release datoteki %s"
@@ -3294,32 +3239,32 @@ msgstr "Ni mogoÄe najti zapisa overitve za: %s"
msgid "Hash mismatch for: %s"
msgstr "Neujemanje razpršila za: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Izdaje '%s' za '%s' ni mogoÄe najti"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "RazliÄice '%s' za '%s' ni mogoÄe najti"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Ni mogoÄe najti naloge '%s'"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Z logiÄnim izrazom '%s' ni mogoÄe najti nobenega paketa"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "Ni mogoÄe izbrati razliÄic in paketa '%s', saj je popolnoma navidezen"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3328,19 +3273,19 @@ msgstr ""
"Ni mogoÄe izbrati nameÅ¡Äene razliÄice ali razliÄice kandidata iz paketa "
"'%s', saj nima nobenega od njiju"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Ni mogoÄe izbrati najnovejÅ¡e razliÄice iz paketa '%s', saj je popolnoma "
"navidezen"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr "Ni mogoÄe izbrati razliÄice kandidata iz paketa %s, ker nima kandidata"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr "Ni mogoÄe izbrati nameÅ¡Äene razliÄice iz paketa %s, saj ni nameÅ¡Äen"
@@ -3365,112 +3310,132 @@ msgstr "Zunanji reÅ¡evalnik je spodletel brez pravega sporoÄila o napakah"
msgid "Execute external solver"
msgstr "Izvedi zunanji reševalnik"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Poganjanje dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Prejem nekaterih datotek kazala je spodletel. Bile so prezrte ali pa so bile "
+"namesto njih uporabljene stare."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "NameÅ¡Äanje %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Nastavljanje %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Odstranjevanje %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "%s je bil popolnoma odstranjen"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "%s je izginil"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Poganjanje sprožilca po namestitvi %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Mapa '%s' manjka"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Ni mogoÄe odpreti datoteke '%s'"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Pripravljanje %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Razširjanje %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Pripravljanje na nastavljanje %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s je bil nameÅ¡Äen"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Pripravljanje na odstranitev %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s je bil odstranjen"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Pripravljanje na popolno odstranitev %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s je bil popolnoma odstranjen"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Ni mogoÄe pisati na %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Ni mogoÄe pisati dnevnika, openpty() je spodletelo (/dev/pts ni "
-"prklopljen?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Poganjanje dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "Opravilo je bilo prekinjeno preden se je lahko konÄalo"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
"PoroÄilo apport ni bilo napisano, ker je bilo Å¡tevilo MaxReports že doseženo"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "težave odvisnosti - puÅ¡Äanje nenastavljenega"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3478,7 +3443,7 @@ msgstr ""
"PoroÄilo apport ni bilo napisano, ker sporoÄilo o napaki nakazuje na "
"navezujoÄo napako iz predhodne napake."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3486,7 +3451,7 @@ msgstr ""
"PoroÄilo apport ni bilo napisano, ker sporoÄilo o napaki nakazuje na napako "
"polnega diska"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3494,7 +3459,15 @@ msgstr ""
"PoroÄilo apport ni bilo napisano, ker sporoÄilo o napaki nakazuje na napako "
"zaradi pomanjkanja pomnilnika"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"PoroÄilo apport je bilo napisano, ker sporoÄilo o napaki nakazuje na težavo "
+"na krajevnem sistemu"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3526,6 +3499,91 @@ msgstr "dpkg je bil prekinjen. Za popravilo napake morate roÄno pognati '%s'. "
msgid "Not locked"
msgstr "Ni zaklenjeno"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Izbiranje '%s' za nalogo '%s'\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Izbiranje '%s' za logiÄni izraz '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Paket %s je navidezen in ga je priskrbel:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Ni razliÄica kandidata]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Sami izberite paket, ki ga želite namestiti."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Paket %s nima navedene razliÄice, vendar se nanj nanaÅ¡a nek drug paket.\n"
+#~ "To ponavadi pomeni, da paket manjka, je zastaran ali\n"
+#~ "pa je na voljo samo iz drugega vira.\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Kakorkoli, naslednji paketi ga nadomestijo:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Paket '%s' nima namestitvenega kandidata"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Navideznih paketov kot je '%s' ni mogoÄe odstraniti\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Paket '%s' ni nameÅ¡Äen, zato ni bil odstranjen. Ali ste mislili '%s'?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Paket '%s' ni nameÅ¡Äen, zato ni bil odstranjen\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Izbiranje '%s' namesto '%s'\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "%s je preskoÄen, ker je že nameÅ¡Äen in ne potrebuje nadgradnje.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "Preskok %s, ni nameÅ¡Äen in zahtevane so le nadgradnje\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "Ponovna namestitev %s ni možna, ker prejem ni možen.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "NajnovejÅ¡a razliÄica %s je že nameÅ¡Äena.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Izbrana razliÄica '%s' (%s) za '%s'\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Izbrana razliÄica '%s' (%s) za '%s' namesto '%s'\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Prezri nerazpoložljiv cilj izdaje '%s' paketa '%s'"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "Prejemanje %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "To ni veljaven arhiv DEB, nima Älana '%s', '%s' ali '%s'"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Neujemanje vsote MD5"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Ni bilo mogoÄe najti datoteke za paket %s. Morda boste morali roÄno "
+#~ "popraviti ta paket."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "Ni mogoÄe pisati dnevnika, openpty() je spodletelo (/dev/pts ni "
+#~ "prklopljen?)\n"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "Datoteka %s se ne zaÄne s Äisto podpisanim sporoÄilom"
@@ -3607,13 +3665,6 @@ msgstr "Ni zaklenjeno"
#~ msgid "Got a single header line over %u chars"
#~ msgstr "Dobljena je ena vrstica glave preko %u znakov"
-#~ msgid ""
-#~ "No apport report written because the error message indicates an issue on "
-#~ "the local system"
-#~ msgstr ""
-#~ "PoroÄilo apport je bilo napisano, ker sporoÄilo o napaki nakazuje na "
-#~ "težavo na krajevnem sistemu"
-
#~ msgid "Malformed override %s line %lu #1"
#~ msgstr "NapaÄno oblikovana prepisana vrstica %s %lu #1"
diff --git a/po/sv.po b/po/sv.po
index 69f785394..5f70d008d 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2010-08-24 21:18+0100\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Language-Team: Swedish <debian-l10n-swedish@debian.org>\n"
@@ -19,151 +19,153 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr ""
"Paketet %s med version %s har ett beroende som inte kan tillfredsställas:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Totalt antal paketnamn: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Totala paketstrukturer: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Vanliga paket: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Helt virtuella paket: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Enstaka virtuella paket: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Blandade virtuella paket: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Saknade: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Totalt antal olika versioner: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Totalt antal olika beskrivningar: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Totalt antal beroenden: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Totalt antal version/filrelationer: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Totalt antal beskrivning/filrelationer: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Totalt antal tillhandahållningsmarkeringar: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Totalt antal sökmönstersträngar: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Totalt utrymme för versionsberoenden: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Totalt bortkastat utrymme: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Totalt utrymme som kan redogöras för: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Paketfilen %s är inte synkroniserad."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Inga paket hittades"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Du måste ange minst ett sökmönster"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Kunde inte hitta paketet %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "\"Package\"-filer:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Cachen är inte synkroniserad, kan inte korsreferera en paketfil"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Fastnålade paket:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(hittades inte)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Installerad: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Kandidat: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ingen)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Paketnålning: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Versionstabell:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s för %s kompilerad den %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -238,35 +240,35 @@ msgstr ""
"Se manualsidorna för apt-cache(8) och apt.conf(5) för mer information.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Ange ett namn för denna skiva, exempelvis \"Debian 5.0.3 Disk 1\""
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Misslyckades med att montera \"%s\" till \"%s\""
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Upprepa proceduren för resten av cd-skivorna i din uppsättning."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Argumenten gavs inte parvis"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -294,605 +296,55 @@ msgstr ""
" -c=? Läs denna konfigurationsfil.\n"
" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[J/n]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[j/N]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "J"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Fel vid kompilering av reguljärt uttryck - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Följande paket har beroenden som inte kan tillfredsställas:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "men %s är installerat"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "men %s kommer att installeras"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "men det kan inte installeras"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "men det är ett virtuellt paket"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "men det är inte installerat"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "men det kommer inte att installeras"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " eller"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Följande NYA paket kommer att installeras:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Följande paket kommer att TAS BORT:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Följande paket har hållits tillbaka:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Följande paket kommer att uppgraderas:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Följande paket kommer att NEDGRADERAS:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Följande tillbakahållna paket kommer att ändras:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (på grund av %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"VARNING: Följande systemkritiska paket kommer att tas bort.\n"
-"Detta bör INTE genomföras såvida du inte vet exakt vad du gör!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu att uppgradera, %lu att nyinstallera, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu att installera om, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu att nedgradera, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu att ta bort och %lu att inte uppgradera.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu är inte helt installerade eller borttagna.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Observera, väljer \"%s\" för funktionen \"%s\"\n"
-
-#: cmdline/apt-get.cc:669
-#, 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:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Installerat]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Inte kandidatversion]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Du bör uttryckligen ange ett att installera."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Paketet %s är inte tillgängligt, men ett annat paket hänvisar till det.\n"
-"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:729
-msgid "However the following packages replace it:"
-msgstr "Dock kan följande paket ersätta det:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Paketet \"%s\" har ingen installationskandidat"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Virtuella paket som \"%s\" kan inte tas bort\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "Paketet %s är inte installerat, så det tas inte bort\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Paketet %s är inte installerat, så det tas inte bort\n"
-
-#: cmdline/apt-get.cc:817
-#, 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:847
-#, 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:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"Hoppar över %s, det är inte installerat och endast uppgraderingar har "
-"begärts.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s är redan den senaste versionen.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s är satt till manuellt installerad.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Valde version \"%s\" (%s) för \"%s\"\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Valde version \"%s\" (%s) för \"%s\"\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Korrigerar beroenden...."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " misslyckades."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Kunde inte korrigera beroenden"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Kunde inte minimera uppgraderingsuppsättningen"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Färdig"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Otillfredsställda beroenden. Prova med -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "VARNING: Följande paket kunde inte autentiseras!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Autentiseringsvarning åsidosatt.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Installera dessa paket utan verifiering?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "NÃ¥gra av paketen kunde inte autentiseras"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Internt fel. InstallPackages anropades med trasiga paket!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Paketen måste tas bort men \"Remove\" är inaktiverat."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Internt fel. Sorteringen färdigställdes inte"
-
-#: cmdline/apt-get.cc:1218
-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"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Behöver hämta %sB/%sB arkiv.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Behöver hämta %sB arkiv.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, 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"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Kunde inte fastställa ledigt utrymme i %s"
-
-#: cmdline/apt-get.cc:1270
-#, 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:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "\"Trivial Only\" angavs, men detta är inte en trivial handling."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Ja, gör som jag säger!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Du är på väg att göra någonting som kan vara skadligt\n"
-"Skriv in frasen \"%s\" för att fortsätta\n"
-" ?] "
-
-# Visas då man svarar nej
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Avbryter."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Vill du fortsätta?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Misslyckades med att hämta %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Misslyckades med att hämta vissa filer"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Hämtningen färdig i \"endast-hämta\"-läge"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --"
-"fix-missing."
-
-#: cmdline/apt-get.cc:1414
-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:1419
-msgid "Unable to correct missing packages."
-msgstr "Kunde inte korrigera saknade paket."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Avbryter installationen."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Följande paket har försvunnit från ditt system eftersom\n"
-"alla filer har skrivits över av andra paket:"
-msgstr[1] ""
-"Följande paket har försvunnit från ditt system eftersom\n"
-"alla filer har skrivits över av andra paket:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Observera: Detta sker med automatik och vid behov av dpkg."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Ignorera otillgängliga målutgåvan \"%s\" av paketet \"%s\""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Väljer \"%s\" som källkodspaket istället för \"%s\"\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Ignorera otillgängliga versionen \"%s\" av paketet \"%s\""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Uppdateringskommandot tar inga argument"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Hmm, det verkar som AutoRemover förstörde något som verkligen\n"
-"inte skulle hända. Skicka in en felrapport mot paketet apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-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:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Internt fel, AutoRemover förstörde något"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Följande paket har installerats automatiskt och är inte längre nödvändigt:"
-msgstr[1] ""
-"Följande paket har installerats automatiskt och är inte längre nödvändiga:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] ""
-"%lu paket blev installerade automatiskt och är inte längre nödvändigt.\n"
-msgstr[1] ""
-"%lu paket blev installerade automatiskt och är inte längre nödvändiga.\n"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Använd \"apt-get autoremove\" för att ta bort dem."
-msgstr[1] "Använd \"apt-get autoremove\" för att ta bort dem."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Internt fel, AllUpgrade förstörde något"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket "
-"(eller ange en lösning)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Några paket kunde inte installeras. Det kan betyda att du har begärt\n"
-"en omöjlig situation eller, om du använder den instabila utgåvan\n"
-"att några nödvändiga paket ännu inte har skapats eller flyttats\n"
-"ut från \"Incoming\"."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Trasiga paket"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Följande ytterligare paket kommer att installeras:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Föreslagna paket:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Rekommenderade paket:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Kunde inte hitta paketet %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s är satt till manuellt installerad.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s är satt till automatiskt installerad.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Beräknar uppgradering... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Misslyckades"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Färdig"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Internt fel, problemlösaren förstörde någonting"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Kunde inte låsa hämtningskatalogen"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, 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:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -902,7 +354,7 @@ msgstr ""
"på:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, fuzzy, c-format
msgid ""
"Please use:\n"
@@ -913,85 +365,95 @@ msgstr ""
"bzr get %s\n"
"för att hämta senaste (möjligen inte utgivna) uppdateringar av paketet.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Hoppar över redan hämtade filen \"%s\"\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Kunde inte fastställa ledigt utrymme i %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Behöver hämta %sB källkodsarkiv.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Hämtar källkoden %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Misslyckades med att hämta vissa arkiv."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Hämtningen färdig i \"endast-hämta\"-läge"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Uppackningskommandot \"%s\" misslyckades.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Byggkommandot \"%s\" misslyckades.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Barnprocessen misslyckades"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s har inga byggberoenden.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1000,7 +462,7 @@ msgstr ""
"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan "
"hittas"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1009,14 +471,14 @@ msgstr ""
"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan "
"hittas"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1025,7 +487,7 @@ msgstr ""
"%s-beroendet på %s kan inte tillfredsställas eftersom inga tillgängliga "
"versioner av paketet %s tillfredsställer versionskraven"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1034,31 +496,31 @@ msgstr ""
"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan "
"hittas"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Byggberoenden för %s kunde inte tillfredsställas."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Misslyckades med att behandla byggberoenden"
# Felmeddelande för misslyckad chdir
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Ansluter till %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Moduler som stöds:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1146,107 +608,53 @@ msgstr ""
"för mer information och flaggor.\n"
" Denna APT har Speciella Ko-Krafter.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"OBSERVERA: Detta är endast en simulation!\n"
-" apt-get behöver root-privilegier för verklig körning.\n"
-" Tänk också på att låsningen är inaktiverad, så\n"
-" förlita dig inte på relevansen till den verkliga situationen!"
-
-# Måste vara tre bokstäver(?)
-# "Hit" = aktuell version är fortfarande giltig
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Bra "
-
-# "Get:" = hämtar ny version
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Läs:"
-
-# "Ign" = hoppar över
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ign "
-
-# "Err" = fel vid hämtning
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Fel "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Hämtade %sB på %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Arbetar]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Mediabyte: Mata in skivan med etiketten\n"
-" \"%s\"\n"
-"i enheten \"%s\" och tryck på Enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "men det är inte installerat"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s är satt till manuellt installerad.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s är satt till automatiskt installerad.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s är redan den senaste versionen.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s är redan den senaste versionen.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Väntade på %s men den fanns inte där"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s är satt till manuellt installerad.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Misslyckades med att öppna %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1268,6 +676,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1365,8 +790,8 @@ msgstr "Tidsgränsen för anslutningen överskreds"
msgid "Server closed the connection"
msgstr "Servern stängde anslutningen"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Läsfel"
@@ -1379,8 +804,8 @@ msgid "Protocol corruption"
msgstr "Protokollet skadat"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Skrivfel"
@@ -1392,6 +817,10 @@ msgstr "Kunde inte skapa ett uttag (socket)"
msgid "Could not connect data socket, connection timed out"
msgstr "Kunde inte ansluta datauttaget (socket), inget svar inom tidsgräns"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Misslyckades"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Kunde inte ansluta passivt uttag (socket)."
@@ -1434,7 +863,7 @@ msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen"
msgid "Unable to accept connection"
msgstr "Kunde inte ta emot anslutningen"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problem med att lägga filen till hashtabellen"
@@ -1572,81 +1001,612 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Fel vid skrivning till filen"
+
+#: methods/http.cc:533
+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:535
+msgid "Error reading from server"
+msgstr "Fel vid läsning från server"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Fel vid skrivning till fil"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "\"Select\" misslyckades"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Anslutningen överskred tidsgränsen"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Fel vid skrivning till utdatafil"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Väntar på rubriker"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Felaktig rubrikrad"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "Http-servern sände ett ogiltigt svarshuvud"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "Http-servern sände ett ogiltigt Content-Length-rubrik"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "Http-servern sände ett ogiltigt Content-Range-rubrik"
-#: methods/http.cc:623
+#: methods/server.cc:201
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:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Okänt datumformat"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "\"Select\" misslyckades"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Felaktiga data i huvud"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Anslutningen överskred tidsgränsen"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Anslutningen misslyckades"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Fel vid skrivning till utdatafil"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Internt fel"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Fel vid skrivning till fil"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Fel vid skrivning till filen"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Internt fel. InstallPackages anropades med trasiga paket!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Fel vid läsning från server: Andra änden stängde förbindelsen"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Paketen måste tas bort men \"Remove\" är inaktiverat."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Fel vid läsning från server"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Internt fel. Sorteringen färdigställdes inte"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Felaktiga data i huvud"
+#: apt-private/private-install.cc:159
+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"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Anslutningen misslyckades"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Behöver hämta %sB/%sB arkiv.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Internt fel"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Behöver hämta %sB arkiv.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, 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"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Efter denna åtgärd kommer %sB att frigöras på disken.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s"
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Problem har uppstått och -y användes utan --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "\"Trivial Only\" angavs, men detta är inte en trivial handling."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Ja, gör som jag säger!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Du är på väg att göra någonting som kan vara skadligt\n"
+"Skriv in frasen \"%s\" för att fortsätta\n"
+" ?] "
+
+# Visas då man svarar nej
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Avbryter."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Vill du fortsätta?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Misslyckades med att hämta vissa filer"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --"
+"fix-missing."
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing och mediabyte stöds inte för tillfället"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Kunde inte korrigera saknade paket."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Avbryter installationen."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Följande paket har försvunnit från ditt system eftersom\n"
+"alla filer har skrivits över av andra paket:"
+msgstr[1] ""
+"Följande paket har försvunnit från ditt system eftersom\n"
+"alla filer har skrivits över av andra paket:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Observera: Detta sker med automatik och vid behov av dpkg."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+"Det är inte meningen att vi ska ta bort något, kan inte starta AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Hmm, det verkar som AutoRemover förstörde något som verkligen\n"
+"inte skulle hända. Skicka in en felrapport mot paketet apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Följande information kan vara till hjälp för att lösa situationen:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Internt fel, AutoRemover förstörde något"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Följande paket har installerats automatiskt och är inte längre nödvändigt:"
+msgstr[1] ""
+"Följande paket har installerats automatiskt och är inte längre nödvändiga:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] ""
+"%lu paket blev installerade automatiskt och är inte längre nödvändigt.\n"
+msgstr[1] ""
+"%lu paket blev installerade automatiskt och är inte längre nödvändiga.\n"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Använd \"apt-get autoremove\" för att ta bort dem."
+msgstr[1] "Använd \"apt-get autoremove\" för att ta bort dem."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket "
+"(eller ange en lösning)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Några paket kunde inte installeras. Det kan betyda att du har begärt\n"
+"en omöjlig situation eller, om du använder den instabila utgåvan\n"
+"att några nödvändiga paket ännu inte har skapats eller flyttats\n"
+"ut från \"Incoming\"."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Trasiga paket"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Följande ytterligare paket kommer att installeras:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Föreslagna paket:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Rekommenderade paket:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "VARNING: Följande paket kunde inte autentiseras!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Autentiseringsvarning åsidosatt.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "NÃ¥gra av paketen kunde inte autentiseras"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Installera dessa paket utan verifiering?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Misslyckades med att hämta %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Installerat]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Installerat]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Installerat]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Följande paket har beroenden som inte kan tillfredsställas:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "men %s är installerat"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "men %s kommer att installeras"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "men det kan inte installeras"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "men det är ett virtuellt paket"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "men det är inte installerat"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "men det kommer inte att installeras"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " eller"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Följande NYA paket kommer att installeras:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Följande paket kommer att TAS BORT:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Följande paket har hållits tillbaka:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Följande paket kommer att uppgraderas:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Följande paket kommer att NEDGRADERAS:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Följande tillbakahållna paket kommer att ändras:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (på grund av %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"VARNING: Följande systemkritiska paket kommer att tas bort.\n"
+"Detta bör INTE genomföras såvida du inte vet exakt vad du gör!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu att uppgradera, %lu att nyinstallera, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu att installera om, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu att nedgradera, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu att ta bort och %lu att inte uppgradera.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu är inte helt installerade eller borttagna.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[J/n]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[j/N]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "J"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Fel vid kompilering av reguljärt uttryck - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Korrigerar beroenden...."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " misslyckades."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Kunde inte korrigera beroenden"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Kunde inte minimera uppgraderingsuppsättningen"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Färdig"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Otillfredsställda beroenden. Prova med -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Uppdateringskommandot tar inga argument"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Beräknar uppgradering... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Internt fel, AllUpgrade förstörde något"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Färdig"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"OBSERVERA: Detta är endast en simulation!\n"
+" apt-get behöver root-privilegier för verklig körning.\n"
+" Tänk också på att låsningen är inaktiverad, så\n"
+" förlita dig inte på relevansen till den verkliga situationen!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Misslyckades med att byta namn på %s till %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+# Måste vara tre bokstäver(?)
+# "Hit" = aktuell version är fortfarande giltig
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Bra "
+
+# "Get:" = hämtar ny version
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Läs:"
+
+# "Ign" = hoppar över
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ign "
+
+# "Err" = fel vid hämtning
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Fel "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Hämtade %sB på %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Arbetar]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Mediabyte: Mata in skivan med etiketten\n"
+" \"%s\"\n"
+"i enheten \"%s\" och tryck på Enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Kunde inte läsa %s"
@@ -1710,36 +1670,36 @@ msgstr "Misslyckades med att skapa IPC-rör till underprocess"
msgid "Connection closed prematurely"
msgstr "Anslutningen stängdes i förtid"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Felaktig standardinställning!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Tryck på Enter för att fortsätta."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Vill du ta bort eventuellt tidigare hämtade .deb-filer?"
# Note to translators: The following four messages belong together. It doesn't
# matter where sentences start, but it has to fit in just these four lines, and
# at only 80 characters per line, if possible.
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Det uppstod fel vid uppackning. Paketen som blev installerade kommer"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr ""
"att konfigureras. Detta kan resultera i dubbletta fel eller fel orsakade"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "av saknade beroenden. Detta är okej, endast felen ovanför detta"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "meddelandet är viktiga. Försök korrigera dem och kör [I]nstallera igen"
@@ -1989,38 +1949,38 @@ msgstr "Misslyckades med att läsa länken %s"
msgid "Failed to unlink %s"
msgstr "Misslyckades med att länka ut %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Misslyckades med att länka %s till %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Avlänkningsgränsen på %sB nåddes.\n"
# Fält vid namn "Package"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Arkivet har inget package-fält"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s har ingen post i override-filen\n"
# parametrar: paket, ny, gammal
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " ansvarig för paketet %s är %s ej %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s har ingen källåsidosättningspost\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s har heller ingen binär åsidosättningspost\n"
@@ -2101,7 +2061,7 @@ msgstr "Problem med att länka ut %s"
msgid "Failed to rename %s to %s"
msgstr "Misslyckades med att byta namn på %s till %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2170,7 +2130,7 @@ msgstr "Skadat arkiv"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar-kontrollsumma misslyckades, arkivet skadat"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Okänd TAR-rubriktyp %u, del %s"
@@ -2294,22 +2254,17 @@ msgid "Unable to stat %s"
msgstr "Kunde inte ta status på %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Detta är inte ett giltigt DEB-arkiv, delen \"%s\" saknas"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "Detta är inte ett giltigt DEB-arkiv, \"%s\", \"%s\" och \"%s\" saknas"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Internt fel, kunde inta hitta delen %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Kunde inte tolka control-filen"
@@ -2370,85 +2325,85 @@ msgstr ""
"av användaren."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%lih %limin %lis"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%limin %lis"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%lis"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Valet %s hittades inte"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Okänd typförkortning: \"%c\""
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Öppnar konfigurationsfilen %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Syntaxfel %s:%u: Felformat märke"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Syntaxfel %s:%u: Inkluderad härifrån"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Syntaxfel %s:%u: Direktivet \"%s\" stöds inte"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "Syntaxfel %s:%u: clear-direktivet kräver ett flaggträd som argument"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Syntaxfel %s:%u: Överflödigt skräp vid filens slut"
@@ -2473,49 +2428,49 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Färdig"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Kommandoradsflaggan \"%c\" [från %s] är inte känd."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Förstår inte kommandoradsflaggan %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Kommandoradsflaggan %s är inte boolsk"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Flaggan %s kräver ett argument."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"Flaggan %s: Den angivna konfigurationsposten måste innehålla ett =<värde>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Flaggan %s kräver ett heltalsargument, inte \"%s\""
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Flaggan \"%s\" är för lång"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Förstår inte %s, prova med \"true\" eller \"false\"."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Felaktig åtgärd %s"
@@ -2529,116 +2484,116 @@ msgstr "Kunde inte ta status på monteringspunkten %s."
msgid "Failed to stat the cdrom"
msgstr "Kunde inte ta status på cd-romen."
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problem med att stänga gzip-filen %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Använder inte låsning för skrivskyddade låsfilen %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Kunde inte öppna låsfilen %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Använder inte låsning för nfs-monterade låsfilen %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Kunde inte erhålla låset %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, 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:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Underprocessen %s tog emot signal %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "Underprocessen %s svarade med en felkod (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Underprocessen %s avslutades oväntat"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Kunde inte öppna filen %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Kunde inte öppna filhandtag %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Misslyckades med att skapa underprocess-IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Misslyckades med att starta komprimerare "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "läsning, har fortfarande %lu att läsa men ingenting finns kvar"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "skrivning, har fortfarande %lu att skriva men kunde inte"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Problem med att stänga filen %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problem med att byta namn på filen %s till %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Problem med att avlänka filen %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problem med att synkronisera filen"
@@ -2759,12 +2714,12 @@ msgstr "Misslyckades med att öppna StateFile %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Misslyckades med att skriva temporär StateFile %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Kunde inte tolka paketfilen %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Kunde inte tolka paketfilen %s (2)"
@@ -2839,7 +2794,7 @@ msgstr "Rad %u i källistan %s har fel format (typ)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2848,12 +2803,12 @@ msgstr ""
"Kunde inte genomföra omedelbar konfiguration på \"%s\". Se man 5 apt.conf "
"under APT::Immediate-Configure för information. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Kunde inte öppna filen \"%s\""
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2877,7 +2832,7 @@ msgid ""
msgstr ""
"Paketet %s måste installeras om, men jag kan inte hitta något arkiv för det."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2885,19 +2840,10 @@ msgstr ""
"Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero på "
"tillbakahållna paket."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Kunde inte korrigera problemen, du har hållit tillbaka trasiga paket."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Vissa indexfiler kunde inte hämtas, de har ignorerats eller så har de gamla "
-"använts istället."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2941,13 +2887,13 @@ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
"Mata in skivan med etiketten \"%s\" i enheten \"%s\" och tryck på Enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Paketsystemet \"%s\" stöds inte"
#
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Kunde inte fastställa en lämplig paketsystemstyp"
@@ -2980,17 +2926,17 @@ msgid ""
msgstr ""
# "Package" är en sträng i konfigurationsfilen
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Ogiltig post i konfigurationsfilen %s, \"Package\"-rubriken saknas"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Förstod inte nåltypen %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Prioritet ej angiven (eller noll) för nål"
@@ -3059,44 +3005,48 @@ msgstr "In-/utfel vid lagring av källcache"
msgid "rename failed, %s (%s -> %s)."
msgstr "namnbyte misslyckades, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5-kontrollsumman stämmer inte"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Hash-kontrollsumman stämmer inte"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Storleken stämmer inte"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Felaktig åtgärd %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Kunde inte tolka \"Release\"-filen %s"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Konflikt i distribution: %s (förväntade %s men fick %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3107,12 +3057,12 @@ msgstr ""
"%s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "GPG-fel: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3121,31 +3071,23 @@ 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:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
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:1781
+#: apt-pkg/acquire-item.cc:1829
#, 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:1879
-msgid "Size mismatch"
-msgstr "Storleken stämmer inte"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Kunde inte tolka \"Release\"-filen %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Inga sektioner i Release-filen %s"
@@ -3290,33 +3232,33 @@ msgstr "Kan inte hitta autentiseringspost för: %s"
msgid "Hash mismatch for: %s"
msgstr "Hash-kontrollsumman stämmer inte för: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Utgåvan \"%s\" för \"%s\" hittades inte"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Version \"%s\" för \"%s\" hittades inte"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Kunde inte hitta funktionen \"%s\""
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\""
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
"Kan inte välja versioner från paketet \"%s\" eftersom det är helt virtuellt"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3325,21 +3267,21 @@ msgstr ""
"Kan inte välja installerad version eller kandidatversion från paketet \"%s\" "
"eftersom det inte har någon av dem"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Kan inte välja senaste version från paketet \"%s\" eftersom det är helt "
"virtuellt"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
"Kan inte välja kandidatversion från paketet %s eftersom det inte har någon "
"kandidat"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3366,110 +3308,132 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Kör dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Vissa indexfiler kunde inte hämtas, de har ignorerats eller så har de gamla "
+"använts istället."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Installerar %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Konfigurerar %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Tar bort %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "Tar bort hela %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Uppmärksammar försvinnandet av %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Kör efterinstallationsutlösare %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Katalogen \"%s\" saknas"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Kunde inte öppna filen \"%s\""
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Förbereder %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Packar upp %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Förbereder konfigurering av %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Installerade %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Förbereder borttagning av %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Tog bort %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Förbereder borttagning av hela %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Tog bort hela %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Kunde inte skriva till %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Kan inte skriva loggfil, openpty() misslyckades (/dev/pts inte monterad?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Kör dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "Ingen apport-rapport skrevs därför att MaxReports redan har uppnåtts"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "beroendeproblem - lämnar okonfigurerad"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3477,7 +3441,7 @@ msgstr ""
"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att det är "
"ett efterföljande fel från ett tidigare problem."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3485,7 +3449,7 @@ msgstr ""
"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att "
"diskutrymmet är slut"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3493,7 +3457,16 @@ msgstr ""
"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att minnet "
"är slut"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att "
+"diskutrymmet är slut"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3526,6 +3499,95 @@ msgstr ""
msgid "Not locked"
msgstr "Inte låst"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Observera, väljer \"%s\" för funktionen \"%s\"\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Observera, väljer \"%s\" för det reguljära uttrycket \"%s\"\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Paketet %s är ett virtuellt paket som tillhandahålls av:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Inte kandidatversion]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Du bör uttryckligen ange ett att installera."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Paketet %s är inte tillgängligt, men ett annat paket hänvisar till det.\n"
+#~ "Det kan betyda att paketet saknas, har blivit föråldrat eller endast\n"
+#~ "är tillgängligt från andra källor\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Dock kan följande paket ersätta det:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Paketet \"%s\" har ingen installationskandidat"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Virtuella paket som \"%s\" kan inte tas bort\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "Paketet %s är inte installerat, så det tas inte bort\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Paketet %s är inte installerat, så det tas inte bort\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Observera, väljer \"%s\" istället för \"%s\"\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "Hoppar över %s, det är redan installerat och uppgradering har inte "
+#~ "valts.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Hoppar över %s, det är inte installerat och endast uppgraderingar har "
+#~ "begärts.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "Ominstallation av %s är inte möjlig, det kan inte hämtas.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s är redan den senaste versionen.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Valde version \"%s\" (%s) för \"%s\"\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Valde version \"%s\" (%s) för \"%s\"\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Ignorera otillgängliga målutgåvan \"%s\" av paketet \"%s\""
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Detta är inte ett giltigt DEB-arkiv, \"%s\", \"%s\" och \"%s\" saknas"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5-kontrollsumman stämmer inte"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Jag kunde inte hitta någon fil för paketet %s. Detta kan betyda att du "
+#~ "manuellt måste reparera detta paket."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "Kan inte skriva loggfil, openpty() misslyckades (/dev/pts inte "
+#~ "monterad?)\n"
+
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Hoppar över icke-existerande filen %s"
diff --git a/po/th.po b/po/th.po
index bb85ebc72..920bfc78e 100644
--- a/po/th.po
+++ b/po/th.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-10-27 22:44+0700\n"
"Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
"Language-Team: Thai <thai-l10n@googlegroups.com>\n"
@@ -18,150 +18,152 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "à¹à¸žà¸à¹€à¸à¸ˆ %s รุ่น %s ขาดà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ต้องใช้:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "จำนวนชื่อà¹à¸žà¸à¹€à¸à¸ˆà¸—ั้งหมด: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "จำนวนโครงสร้างà¹à¸žà¸à¹€à¸à¸ˆà¸—ั้งหมด: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " à¹à¸žà¸à¹€à¸à¸ˆà¸›à¸à¸•à¸´: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸­à¸™à¹à¸—้ๆ: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸­à¸™à¸—ี่มีà¹à¸žà¸à¹€à¸à¸ˆà¸ˆà¸£à¸´à¸‡à¹€à¸”ียว: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸­à¸™à¸œà¸ªà¸¡: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ขาดหาย: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "จำนวนรุ่นที่à¹à¸•à¸à¸•à¹ˆà¸²à¸‡à¸à¸±à¸™à¸—ั้งหมด: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "จำนวนคำบรรยายà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่à¹à¸•à¸à¸•à¹ˆà¸²à¸‡à¸à¸±à¸™à¸—ั้งหมด: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "จำนวนà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¹‚ยงระหว่างà¹à¸žà¸à¹€à¸à¸ˆà¸—ั้งหมด: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "จำนวนความสัมพันธ์ รุ่น/à¹à¸Ÿà¹‰à¸¡ ทั้งหมด: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "จำนวนความสัมพันธ์ คำบรรยาย/à¹à¸Ÿà¹‰à¸¡ ทั้งหมด: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "จำนวนผังà¸à¸²à¸£à¸•à¸£à¸°à¹€à¸•à¸£à¸µà¸¢à¸¡à¸—ั้งหมด: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "จำนวนสตริงทั้งหมด: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "ขนาดของพื้นที่ความเชื่อมโยงระหว่างà¹à¸žà¸à¹€à¸à¸ˆà¸—ั้งหมด: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "พื้นที่สำรองทั้งหมด: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "พื้นที่ที่นับรวมทั้งหมด: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "ข้อมูลà¹à¸Ÿà¹‰à¸¡ Package %s ไม่ตรงà¸à¸±à¸šà¸„วามเป็นจริง"
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆ"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "คุณต้องระบุà¹à¸žà¸•à¹€à¸—ิร์นสำหรับค้นหาอย่างน้อยหนึ่งà¹à¸žà¸•à¹€à¸—ิร์น"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr "คำสั่งนี้ไม่à¹à¸™à¸°à¸™à¸³à¹ƒà¸«à¹‰à¹ƒà¸Šà¹‰à¹à¸¥à¹‰à¸§ à¸à¸£à¸¸à¸“าใช้ 'apt-mark showauto' à¹à¸—น"
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆ %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "à¹à¸Ÿà¹‰à¸¡à¹à¸žà¸à¹€à¸à¸ˆ:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "ข้อมูลà¹à¸„ชไม่ตรงà¸à¸±à¸šà¸„วามเป็นจริงà¹à¸¥à¹‰à¸§ ไม่สามารถอ้างอิงไขว้ระหว่างà¹à¸Ÿà¹‰à¸¡à¹à¸žà¸à¹€à¸à¸ˆ"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ถูà¸à¸•à¸£à¸¶à¸‡:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(ไม่พบ)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " ที่ติดตั้งอยู่: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " รุ่นที่ติดตั้งได้: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ไม่มี)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " à¸à¸²à¸£à¸•à¸£à¸¶à¸‡à¹à¸žà¸à¹€à¸à¸ˆ: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " ตารางรุ่น:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s สำหรับ %s คอมไพล์เมื่อ %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -232,35 +234,35 @@ msgstr ""
"à¸à¸£à¸¸à¸“าอ่านข้อมูลเพิ่มเติมจาภmanual page apt-cache(8) à¹à¸¥à¸° apt.conf(5)\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "à¸à¸£à¸¸à¸“าตั้งชื่อà¹à¸œà¹ˆà¸™ เช่น 'Debian 5.0.3 Disk 1'"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "à¸à¸£à¸¸à¸“าใส่à¹à¸œà¹ˆà¸™à¸¥à¸‡à¹ƒà¸™à¹„ดรว์à¹à¸¥à¹‰à¸§à¸à¸” enter"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "ไม่สามารถเมานท์ '%s' ที่ '%s'"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "ทำเช่นนี้ต่อไปà¸à¸±à¸šà¹à¸œà¹ˆà¸™à¸‹à¸µà¸”ีที่เหลือในชุด"
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "อาร์à¸à¸´à¸§à¹€à¸¡à¸™à¸•à¹Œà¹„ม่ได้ระบุเป็นคู่ๆ"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -288,584 +290,55 @@ msgstr ""
" -c=? อ่านà¹à¸Ÿà¹‰à¸¡à¸„่าตั้งที่à¸à¸³à¸«à¸™à¸”\n"
" -o=? à¸à¸³à¸«à¸™à¸”ตัวเลือà¸à¸„่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr ""
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "คอมไพล์นิพจน์เรà¸à¸´à¸§à¸¥à¸²à¸£à¹Œà¹„ม่สำเร็จ - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ขาดà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ต้องใช้:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "à¹à¸•à¹ˆà¸£à¸¸à¹ˆà¸™à¸—ี่ติดตั้งไว้คือ %s"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "à¹à¸•à¹ˆà¸£à¸¸à¹ˆà¸™à¸—ี่จะติดตั้งคือ %s"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "à¹à¸•à¹ˆà¹„ม่สามารถติดตั้งได้"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "à¹à¸•à¹ˆà¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¹€à¸›à¹‡à¸™à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸­à¸™"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "à¹à¸•à¹ˆà¹„ด้ติดตั้งไว้"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "à¹à¸•à¹ˆà¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¸ˆà¸°à¹„ม่ถูà¸à¸•à¸´à¸”ตั้ง"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " หรือ"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "จะติดตั้งà¹à¸žà¸à¹€à¸à¸ˆ *ใหม่* ต่อไปนี้:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "จะ *ลบ* à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "จะคงรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "จะปรับรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ขึ้น:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "จะปรับรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ *ลง*:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "จะเปลี่ยนà¹à¸›à¸¥à¸‡à¸£à¸²à¸¢à¸à¸²à¸£à¸„งรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (เนื่องจาภ%s) "
-
-#: cmdline/apt-get.cc:600
-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"
-"คุณ *ไม่ควร* ทำเช่นนี้ นอà¸à¸ˆà¸²à¸à¸„ุณเข้าใจสิ่งที่จะทำ!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "ปรับรุ่นขึ้น %lu, ติดตั้งใหม่ %lu, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "ติดตั้งซ้ำ %lu, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "ปรับรุ่นลง %lu, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "ถอดถอน %lu à¹à¸¥à¸°à¹„ม่ปรับรุ่น %lu\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "ติดตั้งหรือถอดถอนไม่ครบ %lu\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "หมายเหตุ: จะเลือภ'%s' สำหรับงานติดตั้ง '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "หมายเหตุ: จะเลือภ'%s' สำหรับนิพจน์เรà¸à¸´à¸§à¸¥à¸²à¸£à¹Œ '%s'\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "à¹à¸žà¸à¹€à¸à¸ˆ %s เป็นà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸­à¸™à¸—ี่ตระเตรียมโดย:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [ติดตั้งอยู่]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [ไม่ใช่รุ่นสำหรับติดตั้ง]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "คุณควรเจาะจงเลือà¸à¹à¸žà¸à¹€à¸à¸ˆà¹ƒà¸”à¹à¸žà¸à¹€à¸à¸ˆà¸«à¸™à¸¶à¹ˆà¸‡à¹€à¸žà¸·à¹ˆà¸­à¸•à¸´à¸”ตั้ง"
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"ไม่มีà¹à¸žà¸à¹€à¸à¸ˆ %s ให้ใช้ติดตั้ง à¹à¸•à¹ˆà¸–ูà¸à¸­à¹‰à¸²à¸‡à¸–ึงโดยà¹à¸žà¸à¹€à¸à¸ˆà¸­à¸·à¹ˆà¸™\n"
-"à¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¸­à¸²à¸ˆà¸‚าดหายไป หรือตà¸à¸£à¸¸à¹ˆà¸™à¹„ปà¹à¸¥à¹‰à¸§ หรืออยู่ในà¹à¸«à¸¥à¹ˆà¸‡à¸­à¸·à¹ˆà¸™\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "อย่างไรà¸à¹‡à¸”ี à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ได้à¹à¸—นที่à¹à¸žà¸à¹€à¸à¸ˆà¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ปà¹à¸¥à¹‰à¸§:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "à¹à¸žà¸à¹€à¸à¸ˆ '%s' ไม่มีรุ่นที่จะใช้ติดตั้ง"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸­à¸™à¸­à¸¢à¹ˆà¸²à¸‡ '%s' ไม่สามารถถอดถอนได้\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "à¹à¸žà¸à¹€à¸à¸ˆ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีà¸à¸²à¸£à¸–อดถอน คุณหมายถึง '%s' หรือเปล่า?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "à¹à¸žà¸à¹€à¸à¸ˆ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีà¸à¸²à¸£à¸–อดถอน\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "หมายเหตุ: จะเลือภ'%s' à¹à¸—น '%s'\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "จะข้าม %s เนื่องจาà¸à¹à¸žà¸à¹€à¸à¸ˆà¸•à¸´à¸”ตั้งไว้à¹à¸¥à¹‰à¸§ à¹à¸¥à¸°à¹„ม่มีà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”ให้ปรับรุ่น\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "จะข้าม %s เนื่องจาà¸à¹à¸žà¸à¹€à¸à¸ˆà¹„ม่ได้ติดตั้งไว้ à¹à¸¥à¸°à¸„ำสั่งมีเพียงà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™à¹€à¸—่านั้น\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "ไม่สามารถติดตั้ง %s ซ้ำได้ เนื่องจาà¸à¹„ม่สามารถดาวน์โหลดได้\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่à¹à¸¥à¹‰à¸§\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "à¸à¸³à¸«à¸™à¸” %s ให้เป็นà¸à¸²à¸£à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¹€à¸¥à¸·à¸­à¸à¹€à¸­à¸‡à¹à¸¥à¹‰à¸§\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "เลือà¸à¸£à¸¸à¹ˆà¸™ '%s' (%s) สำหรับ '%s' à¹à¸¥à¹‰à¸§\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "เลือà¸à¸£à¸¸à¹ˆà¸™ '%s' (%s) สำหรับ '%s' à¹à¸¥à¹‰à¸§ อันเนื่องมาจาภ'%s'\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "à¸à¸³à¸¥à¸±à¸‡à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸„วามขึ้นต่อà¸à¸±à¸™à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¹à¸žà¸à¹€à¸à¸ˆ..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " ล้มเหลว"
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "ไม่สามารถà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸„วามขึ้นต่อà¸à¸±à¸™à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹„ด้"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "ไม่สามารถจำà¸à¸±à¸”รายà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™à¹ƒà¸«à¹‰à¸™à¹‰à¸­à¸¢à¸—ี่สุดได้"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " เสร็จà¹à¸¥à¹‰à¸§"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "คุณอาจต้องเรียภ'apt-get -f install' เพื่อà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹€à¸«à¸¥à¹ˆà¸²à¸™à¸µà¹‰"
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "รายà¸à¸²à¸£à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ต้องใช้ไม่ครบ à¸à¸£à¸¸à¸“าลองใช้ตัวเลือภ-f"
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "*คำเตือน*: à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ไม่สามารถยืนยันà¹à¸«à¸¥à¹ˆà¸‡à¸•à¹‰à¸™à¸•à¸­à¹„ด้!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "จะข้ามà¸à¸²à¸£à¹€à¸•à¸·à¸­à¸™à¹€à¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸à¸²à¸£à¸¢à¸·à¸™à¸¢à¸±à¸™à¹à¸«à¸¥à¹ˆà¸‡à¸•à¹‰à¸™à¸•à¸­\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "จะติดตั้งà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸«à¸¥à¹ˆà¸²à¸™à¸µà¹‰à¹‚ดยไม่ตรวจสอบหรือไม่?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "มีบางà¹à¸žà¸à¹€à¸à¸ˆà¹„ม่สามารถยืนยันà¹à¸«à¸¥à¹ˆà¸‡à¸•à¹‰à¸™à¸•à¸­à¹„ด้"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "มีปัà¸à¸«à¸²à¸šà¸²à¸‡à¸›à¸£à¸°à¸à¸²à¸£ à¹à¸¥à¸°à¸¡à¸µà¸à¸²à¸£à¹ƒà¸Šà¹‰ -y โดยไม่ระบุ --force-yes"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "เà¸à¸´à¸”ข้อผิดพลาดภายใน: มีà¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸ InstallPackages ด้วยà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่เสีย!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "มีà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จำเป็นต้องถอดถอน à¹à¸•à¹ˆà¸–ูà¸à¸«à¹‰à¸²à¸¡à¸à¸²à¸£à¸–อดถอนไว้"
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "ข้อผิดพลาดภายใน: à¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸‡à¸¥à¸³à¸”ับไม่เสร็จสิ้น"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "à¹à¸›à¸¥à¸à¸›à¸£à¸°à¸«à¸¥à¸²à¸”.. ขนาดไม่ตรงà¸à¸±à¸™ à¸à¸£à¸¸à¸“าอีเมลà¹à¸ˆà¹‰à¸‡ apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "ต้องดาวน์โหลดà¹à¸žà¸à¹€à¸à¸ˆ %sB/%sB\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "ต้องดาวน์โหลดà¹à¸žà¸à¹€à¸à¸ˆ %sB\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "หลังจาà¸à¸à¸²à¸£à¸à¸£à¸°à¸—ำนี้ ต้องใช้เนื้อที่บนดิสà¸à¹Œà¸­à¸µà¸ %sB\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "หลังจาà¸à¸à¸²à¸£à¸à¸£à¸°à¸—ำนี้ เนื้อที่บนดิสà¸à¹Œà¸ˆà¸°à¸§à¹ˆà¸²à¸‡à¹€à¸žà¸´à¹ˆà¸¡à¸­à¸µà¸ %sB\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "ไม่สามารถคำนวณพื้นที่ว่างใน %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s"
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Trivial Only ถูà¸à¸à¸³à¸«à¸™à¸”ไว้ à¹à¸•à¹ˆà¸„ำสั่งนี้ไม่ใช่คำสั่งเล็à¸à¸™à¹‰à¸­à¸¢"
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Yes, do as I say!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"คุณà¸à¸³à¸¥à¸±à¸‡à¸ˆà¸°à¸—ำสิ่งที่อาจเป็นอันตราย\n"
-"หาà¸à¸•à¹‰à¸­à¸‡à¸à¸²à¸£à¸”ำเนินà¸à¸²à¸£à¸•à¹ˆà¸­ ให้พิมพ์ประโยค '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "เลิà¸à¸—ำ"
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "คุณต้องà¸à¸²à¸£à¸ˆà¸°à¸”ำเนินà¸à¸²à¸£à¸•à¹ˆà¸­à¹„ปหรือไม่?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "ไม่สามารถดาวน์โหลด %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "ดาวน์โหลดบางà¹à¸Ÿà¹‰à¸¡à¹„ม่สำเร็จ"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "ดาวน์โหลดสำเร็จà¹à¸¥à¹‰à¸§ à¹à¸¥à¸°à¸­à¸¢à¸¹à¹ˆà¹ƒà¸™à¹‚หมดดาวน์โหลดอย่างเดียว"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"ดาวน์โหลดบางà¹à¸žà¸à¹€à¸à¸ˆà¹„ม่สำเร็จ บางที à¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸ apt-get update หรือลองใช้ตัวเลือภ--fix-"
-"missing อาจช่วยได้"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "ยังไม่รองรับ --fix-missing พร้อมà¸à¸±à¸šà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸œà¹ˆà¸™"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "ไม่สามารถà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ขาดหายได้"
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "จะล้มเลิà¸à¸à¸²à¸£à¸•à¸´à¸”ตั้ง"
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ได้หายไปจาà¸à¸£à¸°à¸šà¸šà¸‚องคุณ เพราะà¹à¸Ÿà¹‰à¸¡à¸—ั้งหมดได้ถูà¸à¹à¸—นที่\n"
-"โดยà¹à¸žà¸à¹€à¸à¸ˆà¸­à¸·à¹ˆà¸™à¹à¸¥à¹‰à¸§:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "หมายเหตุ: นี่เป็นสิ่งที่ dpkg ทำโดยอัตโนมัติโดยเจตนา"
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "จะละเลยรุ่นเป้าหมาย '%s' ซึ่งไม่มีอยู่ของà¹à¸žà¸à¹€à¸à¸ˆ '%s'"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "จะเลือภ'%s' เป็นà¹à¸žà¸à¹€à¸à¸ˆà¸‹à¸­à¸£à¹Œà¸ªà¹à¸—น '%s'\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "จะละเลยรุ่น '%s' ที่ไม่มีอยู่ของà¹à¸žà¸à¹€à¸à¸ˆ '%s'"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "คำสั่ง update ไม่รับอาร์à¸à¸´à¸§à¹€à¸¡à¸™à¸•à¹Œà¹€à¸žà¸´à¹ˆà¸¡"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr "apt ถูà¸à¸à¸³à¸«à¸™à¸”ไม่ให้มีà¸à¸²à¸£à¸¥à¸šà¹ƒà¸”ๆ จึงไม่สามารถดำเนินà¸à¸²à¸£à¸–อดถอนอัตโนมัติได้"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"ดูเหมือนà¸à¸²à¸£à¸–อดถอนอัตโนมัติได้สร้างความเสียหายบางอย่าง ซึ่งไม่ควรเà¸à¸´à¸”ขึ้น\n"
-"à¸à¸£à¸¸à¸“ารายงานบั๊à¸à¸™à¸µà¹‰à¸‚องà¹à¸žà¸à¹€à¸à¸ˆ apt"
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "ข้อมูลต่อไปนี้อาจช่วยà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹„ด้:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "เà¸à¸´à¸”ข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ถูà¸à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¸­à¸±à¸•à¹‚นมัติไว้ à¹à¸¥à¸°à¹„ม่ต้องใช้อีà¸à¸•à¹ˆà¸­à¹„ปà¹à¸¥à¹‰à¸§:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "มีà¹à¸žà¸à¹€à¸à¸ˆ %lu à¹à¸žà¸à¹€à¸à¸ˆà¸–ูà¸à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¸­à¸±à¸•à¹‚นมัติไว้ à¹à¸¥à¸°à¹„ม่ต้องใช้อีà¸à¸•à¹ˆà¸­à¹„ปà¹à¸¥à¹‰à¸§\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "ใช้ 'apt-get autoremove' เพื่อถอดถอนà¹à¸žà¸à¹€à¸à¸ˆà¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ด้"
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "เà¸à¸´à¸”ข้อผิดพลาดภายใน: AllUpgrade ทำความเสียหาย"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "คุณอาจเรียภ'apt-get -f install' เพื่อà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸™à¸µà¹‰à¹„ด้:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"มีปัà¸à¸«à¸²à¸„วามขึ้นต่อà¸à¸±à¸™à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¹à¸žà¸à¹€à¸à¸ˆ à¸à¸£à¸¸à¸“าลองใช้ 'apt-get -f install' โดยไม่ระบุà¹à¸žà¸à¹€à¸à¸ˆ "
-"(หรือจะระบุทางà¹à¸à¹‰à¸à¹‡à¹„ด้)"
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"ไม่สามารถติดตั้งบางà¹à¸žà¸à¹€à¸à¸ˆà¹„ด้ คุณอาจระบุเงื่อนไขà¸à¸²à¸£à¸•à¸´à¸”ตั้งที่เป็นไปไม่ได้\n"
-"หรือถ้าคุณà¸à¸³à¸¥à¸±à¸‡à¹ƒà¸Šà¹‰à¸£à¸¸à¹ˆà¸™ unstable à¸à¹‡à¹€à¸›à¹‡à¸™à¹„ปได้ว่าà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จำเป็นบางรายà¸à¸²à¸£\n"
-"ยังไม่ถูà¸à¸ªà¸£à¹‰à¸²à¸‡à¸‚ึ้น หรือถูà¸à¸¢à¹‰à¸²à¸¢à¸­à¸­à¸à¸ˆà¸²à¸ Incoming"
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸¡à¸µà¸›à¸±à¸à¸«à¸²"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "จะติดตั้งà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸žà¸´à¹ˆà¸¡à¹€à¸•à¸´à¸¡à¸•à¹ˆà¸­à¹„ปนี้:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่à¹à¸™à¸°à¸™à¸³:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ควรใช้ร่วมà¸à¸±à¸™:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆ %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "à¸à¸³à¸«à¸™à¸” %s ให้เป็นà¸à¸²à¸£à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¹€à¸¥à¸·à¸­à¸à¹€à¸­à¸‡à¹à¸¥à¹‰à¸§\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "à¸à¸³à¸«à¸™à¸” %s ให้เป็นà¸à¸²à¸£à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¸­à¸±à¸•à¹‚นมัติà¹à¸¥à¹‰à¸§\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr "คำสั่งนี้ไม่à¹à¸™à¸°à¸™à¸³à¹ƒà¸«à¹‰à¹ƒà¸Šà¹‰à¹à¸¥à¹‰à¸§ à¸à¸£à¸¸à¸“าใช้ 'apt-mark auto' à¹à¸¥à¸° 'apt-mark manual' à¹à¸—น"
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "à¸à¸³à¸¥à¸±à¸‡à¸„ำนวณà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "ล้มเหลว"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "เสร็จà¹à¸¥à¹‰à¸§"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "เà¸à¸´à¸”ข้อผิดพลาดภายใน: à¸à¸¥à¹„à¸à¸à¸²à¸£à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸—ำความเสียหาย"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "ไม่สามารถล็อคไดเรà¸à¸—อรีดาวน์โหลด"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "ไม่พบà¹à¸«à¸¥à¹ˆà¸‡à¸—ี่จะดาวน์โหลดรุ่น '%s' ของ '%s' ได้"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "à¸à¸³à¸¥à¸±à¸‡à¸”าวน์โหลด %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "ต้องระบุà¹à¸žà¸à¹€à¸à¸ˆà¸­à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸­à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จะดาวน์โหลดซอร์สโค้ด"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆà¸‹à¸­à¸£à¹Œà¸ªà¹‚ค้ดสำหรับ %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -874,7 +347,7 @@ msgstr ""
"ข้อสังเà¸à¸•: à¸à¸²à¸£à¸ˆà¸±à¸”ทำà¹à¸žà¸à¹€à¸à¸ˆ '%s' พัฒนาผ่านระบบควบคุมรุ่น '%s' อยู่ที่:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -885,68 +358,78 @@ msgstr ""
"bzr branch %s\n"
"เพื่อดึงรุ่นล่าสุด (ที่อาจยังไม่ปล่อยออà¸à¸¡à¸²) ของตัวà¹à¸žà¸à¹€à¸à¸ˆ\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "จะข้ามà¹à¸Ÿà¹‰à¸¡ '%s' ที่ดาวน์โหลดไว้à¹à¸¥à¹‰à¸§\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "ไม่สามารถคำนวณพื้นที่ว่างใน %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB/%sB\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "ดาวน์โหลดซอร์ส %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "ไม่สามารถดาวน์โหลดบางà¹à¸Ÿà¹‰à¸¡"
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "ดาวน์โหลดสำเร็จà¹à¸¥à¹‰à¸§ à¹à¸¥à¸°à¸­à¸¢à¸¹à¹ˆà¹ƒà¸™à¹‚หมดดาวน์โหลดอย่างเดียว"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "จะข้ามà¸à¸²à¸£à¹à¸•à¸à¸‹à¸­à¸£à¹Œà¸ªà¸‚องซอร์สที่à¹à¸•à¸à¹„ว้à¹à¸¥à¹‰à¸§à¹ƒà¸™ %s\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "คำสั่งà¹à¸•à¸à¹à¸Ÿà¹‰à¸¡ '%s' ล้มเหลว\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "à¸à¸£à¸¸à¸“าตรวจสอบว่าได้ติดตั้งà¹à¸žà¸à¹€à¸à¸ˆ 'dpkg-dev' à¹à¸¥à¹‰à¸§\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "คำสั่ง build '%s' ล้มเหลว\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "โพรเซสลูà¸à¸¥à¹‰à¸¡à¹€à¸«à¸¥à¸§"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr "ต้องระบุà¹à¸žà¸à¹€à¸à¸ˆà¸­à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸­à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จะตรวจสอบสิ่งที่ต้องà¸à¸²à¸£à¸ªà¸³à¸«à¸£à¸±à¸šà¸à¸²à¸£ build"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -954,17 +437,17 @@ msgid ""
msgstr ""
"ไม่มีข้อมูลสถาปัตยà¸à¸£à¸£à¸¡à¸ªà¸³à¸«à¸£à¸±à¸š %s ดูวิธีตั้งค่าที่หัวข้อ APT::Architectures ของ apt.conf(5)"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "ไม่สามารถอ่านข้อมูลสิ่งที่ต้องà¸à¸²à¸£à¸ªà¸³à¸«à¸£à¸±à¸šà¸à¸²à¸£ build ของ %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s ไม่ต้องà¸à¸²à¸£à¸ªà¸´à¹ˆà¸‡à¹ƒà¸”สำหรับ build\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -972,19 +455,19 @@ msgid ""
msgstr ""
"ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่สามารถใช้ %s à¸à¸±à¸šà¹à¸žà¸à¹€à¸à¸ˆ '%s' ได้"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, 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:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: à¹à¸žà¸à¹€à¸à¸ˆ %s ที่ติดตั้งไว้ใหม่เà¸à¸´à¸™à¹„ป"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -993,37 +476,37 @@ msgstr ""
"ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่มีà¹à¸žà¸à¹€à¸à¸ˆ %s "
"รุ่นที่จะสอดคล้องà¸à¸±à¸šà¸„วามต้องà¸à¸²à¸£à¸£à¸¸à¹ˆà¸™à¸‚องà¹à¸žà¸à¹€à¸à¸ˆà¹„ด้"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
"version"
msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะ %s ไม่มีรุ่นที่ติดตั้งได้"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับà¸à¸²à¸£ build ของ %s ได้"
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับà¸à¸²à¸£ build ไม่สำเร็จ"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "ปูมà¸à¸²à¸£à¹à¸à¹‰à¹„ขสำหรับ %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "มอดูลที่รองรับ:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1110,102 +593,53 @@ msgstr ""
"à¹à¸¥à¸° apt.conf(5)\n"
" APT นี้มีพลังของ Super Cow\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"หมายเหตุ: นี่เป็นเพียงà¸à¸²à¸£à¸ˆà¸³à¸¥à¸­à¸‡à¸à¸²à¸£à¸—ำงานเท่านั้น!\n"
-" à¸à¸²à¸£à¸—ำงานจริงของ apt-get ต้องอาศัยสิทธิ์ผู้ดูà¹à¸¥à¸£à¸°à¸šà¸š\n"
-" อย่าลืมด้วยว่าà¸à¸²à¸£à¸¥à¹‡à¸­à¸„à¸à¹‡à¹„ม่ทำงานเช่นà¸à¸±à¸™\n"
-" ดังนั้น อย่าถือผลลัพธ์นี้ว่าตรงà¸à¸±à¸šà¸ªà¸ à¸²à¸žà¸„วามเป็นจริงของระบบ!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "เจอ "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "ดึง:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "ข้าม "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "ปัà¸à¸«à¸² "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "ดาวน์โหลด %sB ใน %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [à¸à¸³à¸¥à¸±à¸‡à¸—ำงาน]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"เปลี่ยนà¹à¸œà¹ˆà¸™: à¸à¸£à¸¸à¸“าใส่à¹à¸œà¹ˆà¸™à¸Šà¸·à¹ˆà¸­\n"
-" '%s'\n"
-"ลงในไดรว์ %s à¹à¸¥à¹‰à¸§à¸à¸” enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s ไม่สามารถทำเครื่องหมายได้ เพราะไม่ได้ติดตั้งไว้\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s ถูà¸à¸à¸³à¸«à¸™à¸”ให้เป็นà¸à¸²à¸£à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¹€à¸¥à¸·à¸­à¸à¹€à¸­à¸‡à¸­à¸¢à¸¹à¹ˆà¸à¹ˆà¸­à¸™à¹à¸¥à¹‰à¸§\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s ถูà¸à¸à¸³à¸«à¸™à¸”ให้เป็นà¸à¸²à¸£à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¸­à¸±à¸•à¹‚นมัติอยู่à¸à¹ˆà¸­à¸™à¹à¸¥à¹‰à¸§\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s ถูà¸à¸à¸³à¸«à¸™à¸”ให้คงรุ่นอยู่à¸à¹ˆà¸­à¸™à¹à¸¥à¹‰à¸§\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s ไม่ได้คงรุ่นอยู่à¸à¹ˆà¸­à¸™à¹à¸¥à¹‰à¸§\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "รอโพรเซส %s à¹à¸•à¹ˆà¸•à¸±à¸§à¹‚พรเซสไม่อยู่"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "à¸à¸³à¸«à¸™à¸” %s ให้คงรุ่นà¹à¸¥à¹‰à¸§\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "ยà¸à¹€à¸¥à¸´à¸à¸à¸²à¸£à¸„งรุ่นของ %s à¹à¸¥à¹‰à¸§\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "เรียà¸à¸—ำงาน dpkg ไม่สำเร็จ คุณเป็น root หรือเปล่า?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1244,6 +678,23 @@ msgstr ""
" -o=? à¸à¸³à¸«à¸™à¸”ตัวเลือà¸à¸„่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
"à¸à¸£à¸¸à¸“าอ่านข้อมูลเพิ่มเติมจาภmanual page apt-mark(8) à¹à¸¥à¸° apt.conf(5)"
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1338,8 +789,8 @@ msgstr "หมดเวลารอเชื่อมต่อ"
msgid "Server closed the connection"
msgstr "เซิร์ฟเวอร์ปิดà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "à¸à¸²à¸£à¸­à¹ˆà¸²à¸™à¸‚้อมูลผิดพลาด"
@@ -1352,8 +803,8 @@ msgid "Protocol corruption"
msgstr "มีความเสียหายของโพรโทคอล"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "à¸à¸²à¸£à¹€à¸‚ียนข้อมูลผิดพลาด"
@@ -1365,6 +816,10 @@ msgstr "ไม่สามารถสร้างซ็อà¸à¹€à¸à¹‡à¸•"
msgid "Could not connect data socket, connection timed out"
msgstr "ไม่สามารถเชื่อมต่อซ็อà¸à¹€à¸à¹‡à¸•à¸‚้อมูล เนื่องจาà¸à¸«à¸¡à¸”เวลาคอย"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "ล้มเหลว"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "ไม่สามารถเชื่อมต่อซ็อà¸à¹€à¸à¸•à¹à¸šà¸š passive"
@@ -1407,7 +862,7 @@ msgstr "หมดเวลารอเชื่อมต่อซ็อà¸à¹€à¸
msgid "Unable to accept connection"
msgstr "ไม่สามารถรับà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะคำนวณค่าà¹à¸®à¸Šà¸‚องà¹à¸Ÿà¹‰à¸¡"
@@ -1535,81 +990,590 @@ msgstr "ลายเซ็นต่อไปนี้ไม่สามารถ
msgid "Empty files can't be valid archives"
msgstr "à¹à¸Ÿà¹‰à¸¡à¸§à¹ˆà¸²à¸‡à¹€à¸›à¸¥à¹ˆà¸²à¹„ม่สามารถเป็นà¹à¸Ÿà¹‰à¸¡à¸ˆà¸±à¸”เà¸à¹‡à¸šà¸—ี่ใช้à¸à¸²à¸£à¹„ด้"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "เà¸à¸´à¸”ข้อผิดพลาดขณะเขียนลงà¹à¸Ÿà¹‰à¸¡"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "เà¸à¸´à¸”ข้อผิดพลาดขณะอ่านข้อมูลจาà¸à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸­à¸£à¹Œ ปลายทางอีà¸à¸”้านหนึ่งปิดà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "เà¸à¸´à¸”ข้อผิดพลาดขณะอ่านข้อมูลจาà¸à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸­à¸£à¹Œ"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "เà¸à¸´à¸”ข้อผิดพลาดขณะเขียนลงà¹à¸Ÿà¹‰à¸¡"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "select ไม่สำเร็จ"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "หมดเวลารอเชื่อมต่อ"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "เà¸à¸´à¸”ข้อผิดพลาดขณะเขียนลงà¹à¸Ÿà¹‰à¸¡à¸œà¸¥à¸¥à¸±à¸žà¸˜à¹Œ"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "รอหัวข้อมูล"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "บรรทัดข้อมูลส่วนหัวผิดพลาด"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัวตอบมาไม่ถูà¸à¸•à¹‰à¸­à¸‡"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Length มาไม่ถูà¸à¸•à¹‰à¸­à¸‡"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Range มาไม่ถูà¸à¸•à¹‰à¸­à¸‡"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "à¸à¸²à¸£à¸ªà¸™à¸±à¸šà¸ªà¸™à¸¸à¸™ Content-Range ที่เซิร์ฟเวอร์ HTTP ผิดพลาด"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "พบรูปà¹à¸šà¸šà¸§à¸±à¸™à¸—ี่ที่ไม่รู้จัà¸"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "select ไม่สำเร็จ"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "ข้อมูลส่วนหัวผิดพลาด"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "หมดเวลารอเชื่อมต่อ"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "เชื่อมต่อไม่สำเร็จ"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "เà¸à¸´à¸”ข้อผิดพลาดขณะเขียนลงà¹à¸Ÿà¹‰à¸¡à¸œà¸¥à¸¥à¸±à¸žà¸˜à¹Œ"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "ข้อผิดพลาดภายใน"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "เà¸à¸´à¸”ข้อผิดพลาดขณะเขียนลงà¹à¸Ÿà¹‰à¸¡"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "เà¸à¸´à¸”ข้อผิดพลาดขณะเขียนลงà¹à¸Ÿà¹‰à¸¡"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "เà¸à¸´à¸”ข้อผิดพลาดภายใน: มีà¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸ InstallPackages ด้วยà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่เสีย!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "เà¸à¸´à¸”ข้อผิดพลาดขณะอ่านข้อมูลจาà¸à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸­à¸£à¹Œ ปลายทางอีà¸à¸”้านหนึ่งปิดà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "มีà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จำเป็นต้องถอดถอน à¹à¸•à¹ˆà¸–ูà¸à¸«à¹‰à¸²à¸¡à¸à¸²à¸£à¸–อดถอนไว้"
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "เà¸à¸´à¸”ข้อผิดพลาดขณะอ่านข้อมูลจาà¸à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸­à¸£à¹Œ"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "ข้อผิดพลาดภายใน: à¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸‡à¸¥à¸³à¸”ับไม่เสร็จสิ้น"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "ข้อมูลส่วนหัวผิดพลาด"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "à¹à¸›à¸¥à¸à¸›à¸£à¸°à¸«à¸¥à¸²à¸”.. ขนาดไม่ตรงà¸à¸±à¸™ à¸à¸£à¸¸à¸“าอีเมลà¹à¸ˆà¹‰à¸‡ apt@packages.debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "เชื่อมต่อไม่สำเร็จ"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "ต้องดาวน์โหลดà¹à¸žà¸à¹€à¸à¸ˆ %sB/%sB\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "ข้อผิดพลาดภายใน"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "ต้องดาวน์โหลดà¹à¸žà¸à¹€à¸à¸ˆ %sB\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "หลังจาà¸à¸à¸²à¸£à¸à¸£à¸°à¸—ำนี้ ต้องใช้เนื้อที่บนดิสà¸à¹Œà¸­à¸µà¸ %sB\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "หลังจาà¸à¸à¸²à¸£à¸à¸£à¸°à¸—ำนี้ เนื้อที่บนดิสà¸à¹Œà¸ˆà¸°à¸§à¹ˆà¸²à¸‡à¹€à¸žà¸´à¹ˆà¸¡à¸­à¸µà¸ %sB\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s"
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "มีปัà¸à¸«à¸²à¸šà¸²à¸‡à¸›à¸£à¸°à¸à¸²à¸£ à¹à¸¥à¸°à¸¡à¸µà¸à¸²à¸£à¹ƒà¸Šà¹‰ -y โดยไม่ระบุ --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Trivial Only ถูà¸à¸à¸³à¸«à¸™à¸”ไว้ à¹à¸•à¹ˆà¸„ำสั่งนี้ไม่ใช่คำสั่งเล็à¸à¸™à¹‰à¸­à¸¢"
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Yes, do as I say!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"คุณà¸à¸³à¸¥à¸±à¸‡à¸ˆà¸°à¸—ำสิ่งที่อาจเป็นอันตราย\n"
+"หาà¸à¸•à¹‰à¸­à¸‡à¸à¸²à¸£à¸”ำเนินà¸à¸²à¸£à¸•à¹ˆà¸­ ให้พิมพ์ประโยค '%s'\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "เลิà¸à¸—ำ"
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "คุณต้องà¸à¸²à¸£à¸ˆà¸°à¸”ำเนินà¸à¸²à¸£à¸•à¹ˆà¸­à¹„ปหรือไม่?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "ดาวน์โหลดบางà¹à¸Ÿà¹‰à¸¡à¹„ม่สำเร็จ"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"ดาวน์โหลดบางà¹à¸žà¸à¹€à¸à¸ˆà¹„ม่สำเร็จ บางที à¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸ apt-get update หรือลองใช้ตัวเลือภ--fix-"
+"missing อาจช่วยได้"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "ยังไม่รองรับ --fix-missing พร้อมà¸à¸±à¸šà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸œà¹ˆà¸™"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "ไม่สามารถà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ขาดหายได้"
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "จะล้มเลิà¸à¸à¸²à¸£à¸•à¸´à¸”ตั้ง"
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ได้หายไปจาà¸à¸£à¸°à¸šà¸šà¸‚องคุณ เพราะà¹à¸Ÿà¹‰à¸¡à¸—ั้งหมดได้ถูà¸à¹à¸—นที่\n"
+"โดยà¹à¸žà¸à¹€à¸à¸ˆà¸­à¸·à¹ˆà¸™à¹à¸¥à¹‰à¸§:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "หมายเหตุ: นี่เป็นสิ่งที่ dpkg ทำโดยอัตโนมัติโดยเจตนา"
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "apt ถูà¸à¸à¸³à¸«à¸™à¸”ไม่ให้มีà¸à¸²à¸£à¸¥à¸šà¹ƒà¸”ๆ จึงไม่สามารถดำเนินà¸à¸²à¸£à¸–อดถอนอัตโนมัติได้"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"ดูเหมือนà¸à¸²à¸£à¸–อดถอนอัตโนมัติได้สร้างความเสียหายบางอย่าง ซึ่งไม่ควรเà¸à¸´à¸”ขึ้น\n"
+"à¸à¸£à¸¸à¸“ารายงานบั๊à¸à¸™à¸µà¹‰à¸‚องà¹à¸žà¸à¹€à¸à¸ˆ apt"
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "ข้อมูลต่อไปนี้อาจช่วยà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹„ด้:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "เà¸à¸´à¸”ข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ถูà¸à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¸­à¸±à¸•à¹‚นมัติไว้ à¹à¸¥à¸°à¹„ม่ต้องใช้อีà¸à¸•à¹ˆà¸­à¹„ปà¹à¸¥à¹‰à¸§:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "มีà¹à¸žà¸à¹€à¸à¸ˆ %lu à¹à¸žà¸à¹€à¸à¸ˆà¸–ูà¸à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¸­à¸±à¸•à¹‚นมัติไว้ à¹à¸¥à¸°à¹„ม่ต้องใช้อีà¸à¸•à¹ˆà¸­à¹„ปà¹à¸¥à¹‰à¸§\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "ใช้ 'apt-get autoremove' เพื่อถอดถอนà¹à¸žà¸à¹€à¸à¸ˆà¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ด้"
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "คุณอาจเรียภ'apt-get -f install' เพื่อà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸™à¸µà¹‰à¹„ด้:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"มีปัà¸à¸«à¸²à¸„วามขึ้นต่อà¸à¸±à¸™à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¹à¸žà¸à¹€à¸à¸ˆ à¸à¸£à¸¸à¸“าลองใช้ 'apt-get -f install' โดยไม่ระบุà¹à¸žà¸à¹€à¸à¸ˆ "
+"(หรือจะระบุทางà¹à¸à¹‰à¸à¹‡à¹„ด้)"
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"ไม่สามารถติดตั้งบางà¹à¸žà¸à¹€à¸à¸ˆà¹„ด้ คุณอาจระบุเงื่อนไขà¸à¸²à¸£à¸•à¸´à¸”ตั้งที่เป็นไปไม่ได้\n"
+"หรือถ้าคุณà¸à¸³à¸¥à¸±à¸‡à¹ƒà¸Šà¹‰à¸£à¸¸à¹ˆà¸™ unstable à¸à¹‡à¹€à¸›à¹‡à¸™à¹„ปได้ว่าà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จำเป็นบางรายà¸à¸²à¸£\n"
+"ยังไม่ถูà¸à¸ªà¸£à¹‰à¸²à¸‡à¸‚ึ้น หรือถูà¸à¸¢à¹‰à¸²à¸¢à¸­à¸­à¸à¸ˆà¸²à¸ Incoming"
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸¡à¸µà¸›à¸±à¸à¸«à¸²"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "จะติดตั้งà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸žà¸´à¹ˆà¸¡à¹€à¸•à¸´à¸¡à¸•à¹ˆà¸­à¹„ปนี้:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่à¹à¸™à¸°à¸™à¸³:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ควรใช้ร่วมà¸à¸±à¸™:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "*คำเตือน*: à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ไม่สามารถยืนยันà¹à¸«à¸¥à¹ˆà¸‡à¸•à¹‰à¸™à¸•à¸­à¹„ด้!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "จะข้ามà¸à¸²à¸£à¹€à¸•à¸·à¸­à¸™à¹€à¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸à¸²à¸£à¸¢à¸·à¸™à¸¢à¸±à¸™à¹à¸«à¸¥à¹ˆà¸‡à¸•à¹‰à¸™à¸•à¸­\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "มีบางà¹à¸žà¸à¹€à¸à¸ˆà¹„ม่สามารถยืนยันà¹à¸«à¸¥à¹ˆà¸‡à¸•à¹‰à¸™à¸•à¸­à¹„ด้"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "จะติดตั้งà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸«à¸¥à¹ˆà¸²à¸™à¸µà¹‰à¹‚ดยไม่ตรวจสอบหรือไม่?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "ไม่สามารถดาวน์โหลด %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [ติดตั้งอยู่]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [ติดตั้งอยู่]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [ติดตั้งอยู่]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ขาดà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ต้องใช้:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "à¹à¸•à¹ˆà¸£à¸¸à¹ˆà¸™à¸—ี่ติดตั้งไว้คือ %s"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "à¹à¸•à¹ˆà¸£à¸¸à¹ˆà¸™à¸—ี่จะติดตั้งคือ %s"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "à¹à¸•à¹ˆà¹„ม่สามารถติดตั้งได้"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "à¹à¸•à¹ˆà¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¹€à¸›à¹‡à¸™à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸­à¸™"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "à¹à¸•à¹ˆà¹„ด้ติดตั้งไว้"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "à¹à¸•à¹ˆà¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¸ˆà¸°à¹„ม่ถูà¸à¸•à¸´à¸”ตั้ง"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " หรือ"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "จะติดตั้งà¹à¸žà¸à¹€à¸à¸ˆ *ใหม่* ต่อไปนี้:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "จะ *ลบ* à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "จะคงรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "จะปรับรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ขึ้น:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "จะปรับรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ *ลง*:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "จะเปลี่ยนà¹à¸›à¸¥à¸‡à¸£à¸²à¸¢à¸à¸²à¸£à¸„งรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (เนื่องจาภ%s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"*คำเตือน*: à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จำเป็นต่อไปนี้จะถูà¸à¸–อดถอน\n"
+"คุณ *ไม่ควร* ทำเช่นนี้ นอà¸à¸ˆà¸²à¸à¸„ุณเข้าใจสิ่งที่จะทำ!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "ปรับรุ่นขึ้น %lu, ติดตั้งใหม่ %lu, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "ติดตั้งซ้ำ %lu, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "ปรับรุ่นลง %lu, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "ถอดถอน %lu à¹à¸¥à¸°à¹„ม่ปรับรุ่น %lu\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "ติดตั้งหรือถอดถอนไม่ครบ %lu\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr ""
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "คอมไพล์นิพจน์เรà¸à¸´à¸§à¸¥à¸²à¸£à¹Œà¹„ม่สำเร็จ - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "à¸à¸³à¸¥à¸±à¸‡à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸„วามขึ้นต่อà¸à¸±à¸™à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¹à¸žà¸à¹€à¸à¸ˆ..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " ล้มเหลว"
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "ไม่สามารถà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸„วามขึ้นต่อà¸à¸±à¸™à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹„ด้"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "ไม่สามารถจำà¸à¸±à¸”รายà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™à¹ƒà¸«à¹‰à¸™à¹‰à¸­à¸¢à¸—ี่สุดได้"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " เสร็จà¹à¸¥à¹‰à¸§"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "คุณอาจต้องเรียภ'apt-get -f install' เพื่อà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹€à¸«à¸¥à¹ˆà¸²à¸™à¸µà¹‰"
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "รายà¸à¸²à¸£à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ต้องใช้ไม่ครบ à¸à¸£à¸¸à¸“าลองใช้ตัวเลือภ-f"
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "คำสั่ง update ไม่รับอาร์à¸à¸´à¸§à¹€à¸¡à¸™à¸•à¹Œà¹€à¸žà¸´à¹ˆà¸¡"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "à¸à¸³à¸¥à¸±à¸‡à¸„ำนวณà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "เà¸à¸´à¸”ข้อผิดพลาดภายใน: AllUpgrade ทำความเสียหาย"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "เสร็จà¹à¸¥à¹‰à¸§"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"หมายเหตุ: นี่เป็นเพียงà¸à¸²à¸£à¸ˆà¸³à¸¥à¸­à¸‡à¸à¸²à¸£à¸—ำงานเท่านั้น!\n"
+" à¸à¸²à¸£à¸—ำงานจริงของ apt-get ต้องอาศัยสิทธิ์ผู้ดูà¹à¸¥à¸£à¸°à¸šà¸š\n"
+" อย่าลืมด้วยว่าà¸à¸²à¸£à¸¥à¹‡à¸­à¸„à¸à¹‡à¹„ม่ทำงานเช่นà¸à¸±à¸™\n"
+" ดังนั้น อย่าถือผลลัพธ์นี้ว่าตรงà¸à¸±à¸šà¸ªà¸ à¸²à¸žà¸„วามเป็นจริงของระบบ!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "ไม่สามารถเปลี่ยนชื่อ %s ไปเป็น %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "เจอ "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "ดึง:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "ข้าม "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "ปัà¸à¸«à¸² "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "ดาวน์โหลด %sB ใน %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [à¸à¸³à¸¥à¸±à¸‡à¸—ำงาน]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"เปลี่ยนà¹à¸œà¹ˆà¸™: à¸à¸£à¸¸à¸“าใส่à¹à¸œà¹ˆà¸™à¸Šà¸·à¹ˆà¸­\n"
+" '%s'\n"
+"ลงในไดรว์ %s à¹à¸¥à¹‰à¸§à¸à¸” enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "ไม่สามารถอ่าน %s"
@@ -1669,32 +1633,32 @@ msgstr "ไม่สามารถสร้างไปป์ IPC ไปยัà
msgid "Connection closed prematurely"
msgstr "à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­à¸–ูà¸à¸›à¸´à¸”à¸à¹ˆà¸­à¸™à¹€à¸§à¸¥à¸²à¸­à¸±à¸™à¸„วร"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "ค่าตั้งปริยายผิดพลาด!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "à¸à¸” enter เพื่อดำเนินà¸à¸²à¸£à¸•à¹ˆà¸­"
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "คุณต้องà¸à¸²à¸£à¸ˆà¸°à¸¥à¸šà¹à¸Ÿà¹‰à¸¡ .deb ต่างๆ ที่ได้ดาวน์โหลดมาà¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰à¸«à¸£à¸·à¸­à¹„ม่?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "เà¸à¸´à¸”ข้อผิดพลาดขณะà¹à¸•à¸à¹à¸žà¸à¹€à¸à¸ˆ โปรà¹à¸à¸£à¸¡à¸ˆà¸°à¸•à¸±à¹‰à¸‡à¸„่าà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ติดตั้งà¹à¸¥à¹‰à¸§"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "อาจทำให้เà¸à¸´à¸”ข้อความà¹à¸ˆà¹‰à¸‡à¸‚้อผิดพลาดซ้ำ หรือข้อผิดพลาดเนื่องจาà¸à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ต้องใช้ขาดหาย"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "ซึ่งไม่มีปัà¸à¸«à¸²à¸­à¸°à¹„ร มีเฉพาะข้อผิดพลาดà¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²à¸‚้อความนี้เท่านั้นที่สำคัà¸"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "à¸à¸£à¸¸à¸“าà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹€à¸«à¸¥à¹ˆà¸²à¸™à¸±à¹‰à¸™ à¹à¸¥à¹‰à¸§à¹€à¸£à¸µà¸¢à¸à¸•à¸´à¸”ตั้งใหม่อีà¸à¸„รั้ง"
@@ -1937,36 +1901,36 @@ msgstr "readlink %s ไม่สำเร็จ"
msgid "Failed to unlink %s"
msgstr "unlink %s ไม่สำเร็จ"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** ลิงà¸à¹Œ %s ไปยัง %s ไม่สำเร็จ"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " มาถึงขีดจำà¸à¸±à¸”à¸à¸²à¸£ DeLink ที่ %sB à¹à¸¥à¹‰à¸§\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¹„ม่มีช่องข้อมูล 'Package'"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s ไม่มีข้อมูล override\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " ผู้ดูà¹à¸¥ %s คือ %s ไม่ใช่ %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s ไม่มีข้อมูล override สำหรับซอร์ส\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s ไม่มีข้อมูล override สำหรับไบนารีเช่นà¸à¸±à¸™\n"
@@ -2045,7 +2009,7 @@ msgstr "มีปัà¸à¸«à¸²à¸‚ณะลบà¹à¸Ÿà¹‰à¸¡ %s"
msgid "Failed to rename %s to %s"
msgstr "ไม่สามารถเปลี่ยนชื่อ %s ไปเป็น %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2114,7 +2078,7 @@ msgstr "à¹à¸Ÿà¹‰à¸¡à¸ˆà¸±à¸”เà¸à¹‡à¸šà¹€à¸ªà¸µà¸¢à¸«à¸²à¸¢"
msgid "Tar checksum failed, archive corrupted"
msgstr "checksum ของà¹à¸Ÿà¹‰à¸¡ tar ผิดพลาด à¹à¸Ÿà¹‰à¸¡à¸ˆà¸±à¸”เà¸à¹‡à¸šà¹€à¸ªà¸µà¸¢à¸«à¸²à¸¢"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "พบชนิด %u ของข้อมูลส่วนหัว TAR ที่ไม่รู้จัภที่สมาชิภ%s"
@@ -2238,22 +2202,17 @@ msgid "Unable to stat %s"
msgstr "ไม่สามารถ stat %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "à¹à¸Ÿà¹‰à¸¡à¸™à¸µà¹‰à¹„ม่ใช่à¹à¸žà¸à¹€à¸à¸ˆ DEB ที่ใช้à¸à¸²à¸£à¹„ด้ ขาดสมาชิภ'%s'"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "à¹à¸Ÿà¹‰à¸¡à¸™à¸µà¹‰à¹„ม่ใช่à¹à¸žà¸à¹€à¸à¸ˆ DEB ที่ใช้à¸à¸²à¸£à¹„ด้ ขาดข้อมูล '%s', '%s' หรือ '%s'"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "ข้อผิดพลาดภายใน: ไม่พบสมาชิภ%s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "ไม่สามารถà¹à¸ˆà¸‡à¹à¸Ÿà¹‰à¸¡à¸„วบคุมได้"
@@ -2310,85 +2269,85 @@ msgid ""
msgstr "ไม่สามารถเพิ่มขนาดของ MMap เนื่องจาà¸à¸œà¸¹à¹‰à¹ƒà¸Šà¹‰à¸›à¸´à¸”à¸à¸²à¸£à¸‚ยายขนาดอัตโนมัติ"
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%liชม. %liนาที %liวิ"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%liนาที %liวิ"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%liวิ"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "ไม่พบรายà¸à¸²à¸£à¹€à¸¥à¸·à¸­à¸ %s"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "พบตัวย่อของชนิดที่ข้อมูลไม่รู้จัà¸: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "ขณะเปิดà¹à¸Ÿà¹‰à¸¡à¸„่าตั้ง %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: เริ่มบล็อคโดยไม่มีชื่อ"
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: à¹à¸—็à¸à¸œà¸´à¸”รูปà¹à¸šà¸š"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: มีขยะเà¸à¸´à¸™à¸«à¸¥à¸±à¸‡à¸„่า"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: ใช้ include ซ้อนà¸à¸±à¸™à¸¡à¸²à¸à¹€à¸à¸´à¸™à¹„ป"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: include จาà¸à¸—ี่นี่"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: พบ directive '%s' ที่ไม่รองรับ"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: directive 'clear' ต้องมีอาร์à¸à¸´à¸§à¹€à¸¡à¸™à¸•à¹Œà¹€à¸›à¹‡à¸™à¸¥à¸³à¸”ับชั้นตัวเลือà¸"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: มีขยะเà¸à¸´à¸™à¸«à¸¥à¸±à¸‡à¸ˆà¸šà¹à¸Ÿà¹‰à¸¡"
@@ -2413,48 +2372,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... เสร็จà¹à¸¥à¹‰à¸§"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "ไม่รู้จัà¸à¸•à¸±à¸§à¹€à¸¥à¸·à¸­à¸à¸šà¸£à¸£à¸—ัดคำสั่ง '%c' [จาภ%s]"
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "ไม่เข้าใจตัวเลือà¸à¸šà¸£à¸£à¸—ัดคำสั่ง %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "ตัวเลือà¸à¸šà¸£à¸£à¸—ัดคำสั่ง %s ไม่ได้เป็นค่าบูลีน"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "ตัวเลือภ%s ต้องมีอาร์à¸à¸´à¸§à¹€à¸¡à¸™à¸•à¹Œ"
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "ตัวเลือภ%s: à¸à¸²à¸£à¸à¸³à¸«à¸™à¸”รายà¸à¸²à¸£à¸„่าตั้งต้องมี =<val>"
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "ตัวเลือภ%s ต้องà¸à¸²à¸£à¸­à¸²à¸£à¹Œà¸à¸´à¸§à¹€à¸¡à¸™à¸•à¹Œà¸ˆà¸³à¸™à¸§à¸™à¹€à¸•à¹‡à¸¡ ไม่ใช่ '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "ตัวเลือภ'%s' ยาวเà¸à¸´à¸™à¹„ป"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "ไม่เข้าใจค่าบูลีน %s à¸à¸£à¸¸à¸“าลองใช้ true หรือ false"
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "ไม่รู้จัà¸à¸„ำสั่ง %s"
@@ -2468,116 +2427,116 @@ msgstr "ไม่สามารถ stat จุดเมานท์ %s"
msgid "Failed to stat the cdrom"
msgstr "ไม่สามารถ stat ซีดีรอม"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะปิดà¹à¸Ÿà¹‰à¸¡ gzip %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "จะไม่ใช้à¸à¸²à¸£à¸¥à¹‡à¸­à¸„à¸à¸±à¸šà¹à¸Ÿà¹‰à¸¡à¸¥à¹‡à¸­à¸„ %s ที่อ่านได้อย่างเดียว"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "ไม่สามารถเปิดà¹à¸Ÿà¹‰à¸¡à¸¥à¹‡à¸­à¸„ %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "จะไม่ใช้à¸à¸²à¸£à¸¥à¹‡à¸­à¸„à¸à¸±à¸šà¹à¸Ÿà¹‰à¸¡à¸¥à¹‡à¸­à¸„ %s ที่เมานท์ผ่าน nfs"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "ไม่สามารถล็อค %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "ไม่สามารถสร้างรายชื่อà¹à¸Ÿà¹‰à¸¡à¹„ด้ เนื่องจาภ'%s' ไม่ใช่ไดเรà¸à¸—อรี"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "จะละเลย '%s' ในไดเรà¸à¸—อรี '%s' เนื่องจาà¸à¹„ม่ใช่à¹à¸Ÿà¹‰à¸¡à¸˜à¸£à¸£à¸¡à¸”า"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr "จะละเลย '%s' ในไดเรà¸à¸—อรี '%s' เนื่องจาà¸à¹„ม่มีส่วนขยายในชื่อà¹à¸Ÿà¹‰à¸¡"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr "จะละเลย '%s' ในไดเรà¸à¸—อรี '%s' เนื่องจาà¸à¸ªà¹ˆà¸§à¸™à¸‚ยายในชื่อà¹à¸Ÿà¹‰à¸¡à¹„ม่สามารถใช้à¸à¸²à¸£à¹„ด้"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "โพรเซสย่อย %s เà¸à¸´à¸”ข้อผิดพลาดของà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸¢à¹ˆà¸²à¸™à¸«à¸™à¹ˆà¸§à¸¢à¸„วามจำ (segmentation fault)"
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "โพรเซสย่อย %s ได้รับสัà¸à¸à¸²à¸“ %u"
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "โพรเซสย่อย %s คืนค่าข้อผิดพลาด (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "โพรเซสย่อย %s จบà¸à¸²à¸£à¸—ำงานà¸à¸°à¸—ันหัน"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "ไม่สามารถเปิดà¹à¸Ÿà¹‰à¸¡ %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "ไม่สามารถเปิด file destriptor %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "สร้าง IPC ของโพรเซสย่อยไม่สำเร็จ"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "เรียà¸à¸—ำงานตัวบีบอัดไม่สำเร็จ"
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "read: ยังเหลือ %llu ที่ยังไม่ได้อ่าน à¹à¸•à¹ˆà¸‚้อมูลหมดà¹à¸¥à¹‰à¸§"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "write: ยังเหลือ %llu ที่ยังไม่ได้เขียน à¹à¸•à¹ˆà¹„ม่สามารถเขียนได้"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะปิดà¹à¸Ÿà¹‰à¸¡ %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะเปลี่ยนชื่อà¹à¸Ÿà¹‰à¸¡ %s ไปเป็น %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะลบà¹à¸Ÿà¹‰à¸¡ %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะ sync à¹à¸Ÿà¹‰à¸¡"
@@ -2694,12 +2653,12 @@ msgstr "ไม่สามารถเปิดà¹à¸Ÿà¹‰à¸¡à¸ªà¸–านะ %s"
msgid "Failed to write temporary StateFile %s"
msgstr "ไม่สามารถเขียนà¹à¸Ÿà¹‰à¸¡à¸ªà¸–านะชั่วคราว %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "ไม่สามารถà¹à¸ˆà¸‡à¹à¸Ÿà¹‰à¸¡à¹à¸žà¸à¹€à¸à¸ˆ %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "ไม่สามารถà¹à¸ˆà¸‡à¹à¸Ÿà¹‰à¸¡à¹à¸žà¸à¹€à¸à¸ˆ %s (2)"
@@ -2774,7 +2733,7 @@ msgstr "บรรทัด %u ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸­à¹à¸«à¸¥à¹
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "ไม่รู้จัà¸à¸Šà¸™à¸´à¸” '%s' ที่บรรทัด %u ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸­à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2783,12 +2742,12 @@ msgstr ""
"ไม่สามารถตั้งค่า '%s' à¹à¸šà¸šà¸—ันทีได้ à¸à¸£à¸¸à¸“าอ่านรายละเอียดเพิ่มเติมจาภman 5 apt.conf ที่หัวข้อ "
"APT::Immediate-Configure (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "ไม่สามารถตั้งค่า '%s'"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2811,7 +2770,7 @@ msgid ""
"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr "จำเป็นต้องติดตั้งà¹à¸žà¸à¹€à¸à¸ˆ %s ซ้ำ à¹à¸•à¹ˆà¸«à¸²à¸•à¸±à¸§à¹à¸žà¸à¹€à¸à¸ˆà¹„ม่พบ"
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2819,16 +2778,10 @@ msgstr ""
"ข้อผิดพลาด: pkgProblemResolver::Resolve สร้างคำตอบที่ทำให้เà¸à¸´à¸”à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸µà¸¢ "
"อาจเà¸à¸´à¸”จาà¸à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ถูà¸à¸à¸³à¸«à¸™à¸”ให้คงรุ่นไว้"
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "ไม่สามารถà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹„ด้ คุณได้คงรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่เสียอยู่ไว้"
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr "ดาวน์โหลดà¹à¸Ÿà¹‰à¸¡à¸”ัชนีบางà¹à¸Ÿà¹‰à¸¡à¹„ม่สำเร็จ จะข้ามรายà¸à¸²à¸£à¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ป หรือใช้ข้อมูลเà¸à¹ˆà¸²à¹à¸—น"
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2871,12 +2824,12 @@ msgstr "ไม่สามารถเรียà¸à¸—ำงานวิธีà¸
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "à¸à¸£à¸¸à¸“าใส่à¹à¸œà¹ˆà¸™à¸Šà¸·à¹ˆà¸­: '%s' ลงในไดรว์ '%s' à¹à¸¥à¹‰à¸§à¸à¸” enter"
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "ไม่รองรับระบบà¹à¸žà¸à¹€à¸à¸ˆ '%s'"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "ไม่สามารถระบุชนิดของระบบà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่เหมาะสมได้"
@@ -2908,17 +2861,17 @@ msgid ""
"available in the sources"
msgstr "ค่า '%s' ไม่สามารถใช้à¸à¸±à¸š APT::Default-Release ได้ เนื่องจาà¸à¸£à¸¸à¹ˆà¸™à¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ม่มีในà¹à¸«à¸¥à¹ˆà¸‡"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "ระเบียนผิดรูปà¹à¸šà¸šà¹ƒà¸™à¹à¸Ÿà¹‰à¸¡à¸„่าปรับà¹à¸•à¹ˆà¸‡ %s: ไม่มีข้อมูลส่วนหัว 'Package'"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "ไม่เข้าใจชนิดà¸à¸²à¸£à¸•à¸£à¸¶à¸‡ %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "ไม่ได้ระบุลำดับความสำคัภ(หรือค่าศูนย์) สำหรับà¸à¸²à¸£à¸•à¸£à¸¶à¸‡"
@@ -2985,16 +2938,20 @@ msgstr "เà¸à¸´à¸”ข้อผิดพลาด IO ขณะบันทึà¸
msgid "rename failed, %s (%s -> %s)."
msgstr "เปลี่ยนชื่อไม่สำเร็จ: %s (%s -> %s)"
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum ไม่ตรงà¸à¸±à¸™"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "ผลรวมà¹à¸®à¸Šà¹„ม่ตรงà¸à¸±à¸™"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "ขนาดไม่ตรงà¸à¸±à¸™"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "ไม่รู้จัà¸à¸„ำสั่ง %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3003,16 +2960,16 @@ msgstr ""
"ไม่พบรายà¸à¸²à¸£ '%s' ที่ต้องà¸à¸²à¸£à¹ƒà¸™à¹à¸Ÿà¹‰à¸¡ Release (รายà¸à¸²à¸£ sources.list ไม่ถูà¸à¸•à¹‰à¸­à¸‡ "
"หรือà¹à¸Ÿà¹‰à¸¡à¸œà¸´à¸”รูปà¹à¸šà¸š)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "ไม่พบผลรวมà¹à¸®à¸Šà¸ªà¸³à¸«à¸£à¸±à¸š '%s' ในà¹à¸Ÿà¹‰à¸¡ Release"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "ไม่มีà¸à¸¸à¸à¹à¸ˆà¸ªà¸²à¸˜à¸²à¸£à¸“ะสำหรับà¸à¸¸à¸à¹à¸ˆà¸«à¸¡à¸²à¸¢à¹€à¸¥à¸‚ต่อไปนี้:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3021,12 +2978,12 @@ msgstr ""
"à¹à¸Ÿà¹‰à¸¡ Release สำหรับ %s หมดอายุà¹à¸¥à¹‰à¸§ (ตั้งà¹à¸•à¹ˆ %s ที่à¹à¸¥à¹‰à¸§) จะไม่ใช้รายà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™à¸•à¹ˆà¸²à¸‡à¹† "
"ของคลังà¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰"
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "ชุดจัดà¹à¸ˆà¸à¸‚ัดà¹à¸¢à¹‰à¸‡à¸à¸±à¸™: %s (ต้องà¸à¸²à¸£ %s à¹à¸•à¹ˆà¸žà¸š %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3036,41 +2993,35 @@ msgstr ""
"ข้อผิดพลาดจาภGPG: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "ข้อผิดพลาดจาภGPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, 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:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr "ไม่พบà¹à¸Ÿà¹‰à¸¡à¸ªà¸³à¸«à¸£à¸±à¸šà¹à¸žà¸à¹€à¸à¸ˆ %s คุณอาจต้องà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¹€à¸­à¸‡"
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "ไม่พบà¹à¸«à¸¥à¹ˆà¸‡à¸—ี่จะดาวน์โหลดรุ่น '%s' ของ '%s' ได้"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr "à¹à¸Ÿà¹‰à¸¡à¸”ัชนีà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸µà¸¢à¸«à¸²à¸¢ ไม่มีข้อมูล Filename: (ชื่อà¹à¸Ÿà¹‰à¸¡) สำหรับà¹à¸žà¸à¹€à¸à¸ˆ %s"
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "ขนาดไม่ตรงà¸à¸±à¸™"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "ไม่สามารถà¹à¸ˆà¸‡à¹à¸Ÿà¹‰à¸¡ Release %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "ไม่มีหัวข้อย่อยในà¹à¸Ÿà¹‰à¸¡ Release %s"
@@ -3213,32 +3164,32 @@ msgstr "ไม่พบระเบียนยืนยันความà¹à¸—
msgid "Hash mismatch for: %s"
msgstr "à¹à¸®à¸Šà¹„ม่ตรงà¸à¸±à¸™à¸ªà¸³à¸«à¸£à¸±à¸š: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "ไม่พบรุ่นย่อย '%s' ของ '%s'"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "ไม่พบรุ่น '%s' ของ '%s'"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "ไม่พบงานติดตั้ง '%s'"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ตรงà¸à¸±à¸šà¸™à¸´à¸žà¸ˆà¸™à¹Œà¹€à¸£à¸à¸´à¸§à¸¥à¸²à¸£à¹Œ '%s'"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "ไม่สามารถเลือà¸à¸£à¸¸à¹ˆà¸™à¸•à¹ˆà¸²à¸‡à¹† ของà¹à¸žà¸à¹€à¸à¸ˆ '%s' ได้ เนื่องจาà¸à¹€à¸›à¹‡à¸™à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸­à¸™à¸­à¸¢à¹ˆà¸²à¸‡à¹à¸—้จริง"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3246,17 +3197,17 @@ msgid ""
msgstr ""
"ไม่สามารถเลือà¸à¸£à¸¸à¹ˆà¸™à¸—ี่ติดตั้งไว้หรือรุ่นสำหรับติดตั้งของà¹à¸žà¸à¹€à¸à¸ˆ '%s' ได้ เนื่องจาà¸à¹„ม่มีทั้งสองอย่าง"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr "ไม่สามารถเลือà¸à¸£à¸¸à¹ˆà¸™à¹ƒà¸«à¸¡à¹ˆà¸—ี่สุดของà¹à¸žà¸à¹€à¸à¸ˆ '%s' ได้ เนื่องจาà¸à¹€à¸›à¹‡à¸™à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸­à¸™à¸­à¸¢à¹ˆà¸²à¸‡à¹à¸—้จริง"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr "ไม่สามารถเลือà¸à¸£à¸¸à¹ˆà¸™à¸ªà¸³à¸«à¸£à¸±à¸šà¸•à¸´à¸”ตั้งของà¹à¸žà¸à¹€à¸à¸ˆ '%s' ได้ เนื่องจาà¸à¹„ม่มีรุ่นสำหรับติดตั้ง"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr "ไม่สามารถเลือà¸à¸£à¸¸à¹ˆà¸™à¸—ี่ติดตั้งไว้ของà¹à¸žà¸à¹€à¸à¸ˆ '%s' ได้ เนื่องจาà¸à¹à¸žà¸à¹€à¸à¸ˆà¹„ม่ได้ติดตั้งไว้"
@@ -3281,130 +3232,155 @@ msgstr "à¸à¸¥à¹„à¸à¸à¸²à¸£à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸ à¸²à¸¢à¸™à¸­à¸à¸—ำง
msgid "Execute external solver"
msgstr "เรียà¸à¸à¸¥à¹„à¸à¸à¸²à¸£à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸ à¸²à¸¢à¸™à¸­à¸"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸£à¸µà¸¢à¸ dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr "ดาวน์โหลดà¹à¸Ÿà¹‰à¸¡à¸”ัชนีบางà¹à¸Ÿà¹‰à¸¡à¹„ม่สำเร็จ จะข้ามรายà¸à¸²à¸£à¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ป หรือใช้ข้อมูลเà¸à¹ˆà¸²à¹à¸—น"
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "à¸à¸³à¸¥à¸±à¸‡à¸•à¸´à¸”ตั้ง %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "à¸à¸³à¸¥à¸±à¸‡à¸•à¸±à¹‰à¸‡à¸„่า %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "à¸à¸³à¸¥à¸±à¸‡à¸–อดถอน %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "à¸à¸³à¸¥à¸±à¸‡à¸–อดถอน %s อย่างสมบูรณ์"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "à¸à¸³à¸¥à¸±à¸‡à¸ˆà¸”บันทึà¸à¸à¸²à¸£à¸«à¸²à¸¢à¹„ปของ %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸£à¸µà¸¢à¸à¸à¸²à¸£à¸ªà¸°à¸à¸´à¸” %s หลังà¸à¸²à¸£à¸•à¸´à¸”ตั้ง"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "ไม่มีไดเรà¸à¸—อรี '%s'"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "ไม่สามารถเปิดà¹à¸Ÿà¹‰à¸¡ '%s'"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸•à¸£à¸µà¸¢à¸¡ %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "à¸à¸³à¸¥à¸±à¸‡à¹à¸•à¸à¹à¸žà¸à¹€à¸à¸ˆ %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸•à¸£à¸µà¸¢à¸¡à¸•à¸±à¹‰à¸‡à¸„่า %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "ติดตั้ง %s à¹à¸¥à¹‰à¸§"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸•à¸£à¸µà¸¢à¸¡à¸–อดถอน %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "ถอดถอน %s à¹à¸¥à¹‰à¸§"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸•à¸£à¸µà¸¢à¸¡à¸–อดถอน %s อย่างสมบูรณ์"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "ถอดถอน %s อย่างสมบูรณ์à¹à¸¥à¹‰à¸§"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "ไม่สามารถเขียนลงà¹à¸Ÿà¹‰à¸¡ %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"ไม่สามารถเขียนบันทึà¸à¸›à¸à¸´à¸šà¸±à¸•à¸´à¸à¸²à¸£ เนื่องจาภopenpty() ล้มเหลว (ไม่ได้เมานท์ /dev/pts "
-"หรือเปล่า?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸£à¸µà¸¢à¸ dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "ปà¸à¸´à¸šà¸±à¸•à¸´à¸à¸²à¸£à¸–ูà¸à¸‚ัดจังหวะà¸à¹ˆà¸­à¸™à¸—ี่จะสามารถทำงานเสร็จ"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "ไม่มีà¸à¸²à¸£à¹€à¸‚ียนรายงาน apport เพราะถึงขีดจำà¸à¸±à¸” MaxReports à¹à¸¥à¹‰à¸§"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "มีปัà¸à¸«à¸²à¸„วามขึ้นต่อà¸à¸±à¸™ - จะทิ้งไว้โดยไม่ตั้งค่า"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
"ไม่มีà¸à¸²à¸£à¹€à¸‚ียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเป็นสิ่งที่ตามมาจาà¸à¸‚้อผิดพลาดà¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²"
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr "ไม่มีà¸à¸²à¸£à¹€à¸‚ียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเà¸à¸´à¸”จาà¸à¸”ิสà¸à¹Œà¹€à¸•à¹‡à¸¡"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr "ไม่มีà¸à¸²à¸£à¹€à¸‚ียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเà¸à¸´à¸”จาà¸à¸«à¸™à¹ˆà¸§à¸¢à¸„วามจำเต็ม"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr "ไม่มีà¸à¸²à¸£à¹€à¸‚ียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเà¸à¸´à¸”จาà¸à¸”ิสà¸à¹Œà¹€à¸•à¹‡à¸¡"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3434,6 +3410,87 @@ msgstr "dpkg ถูà¸à¸‚ัดจังหวะ คุณต้องเรี
msgid "Not locked"
msgstr "ไม่ได้ล็อคอยู่"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "หมายเหตุ: จะเลือภ'%s' สำหรับงานติดตั้ง '%s'\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "หมายเหตุ: จะเลือภ'%s' สำหรับนิพจน์เรà¸à¸´à¸§à¸¥à¸²à¸£à¹Œ '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "à¹à¸žà¸à¹€à¸à¸ˆ %s เป็นà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸­à¸™à¸—ี่ตระเตรียมโดย:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [ไม่ใช่รุ่นสำหรับติดตั้ง]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "คุณควรเจาะจงเลือà¸à¹à¸žà¸à¹€à¸à¸ˆà¹ƒà¸”à¹à¸žà¸à¹€à¸à¸ˆà¸«à¸™à¸¶à¹ˆà¸‡à¹€à¸žà¸·à¹ˆà¸­à¸•à¸´à¸”ตั้ง"
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "ไม่มีà¹à¸žà¸à¹€à¸à¸ˆ %s ให้ใช้ติดตั้ง à¹à¸•à¹ˆà¸–ูà¸à¸­à¹‰à¸²à¸‡à¸–ึงโดยà¹à¸žà¸à¹€à¸à¸ˆà¸­à¸·à¹ˆà¸™\n"
+#~ "à¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¸­à¸²à¸ˆà¸‚าดหายไป หรือตà¸à¸£à¸¸à¹ˆà¸™à¹„ปà¹à¸¥à¹‰à¸§ หรืออยู่ในà¹à¸«à¸¥à¹ˆà¸‡à¸­à¸·à¹ˆà¸™\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "อย่างไรà¸à¹‡à¸”ี à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸­à¹„ปนี้ได้à¹à¸—นที่à¹à¸žà¸à¹€à¸à¸ˆà¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ปà¹à¸¥à¹‰à¸§:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "à¹à¸žà¸à¹€à¸à¸ˆ '%s' ไม่มีรุ่นที่จะใช้ติดตั้ง"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸­à¸™à¸­à¸¢à¹ˆà¸²à¸‡ '%s' ไม่สามารถถอดถอนได้\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "à¹à¸žà¸à¹€à¸à¸ˆ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีà¸à¸²à¸£à¸–อดถอน คุณหมายถึง '%s' หรือเปล่า?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "à¹à¸žà¸à¹€à¸à¸ˆ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีà¸à¸²à¸£à¸–อดถอน\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "หมายเหตุ: จะเลือภ'%s' à¹à¸—น '%s'\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "จะข้าม %s เนื่องจาà¸à¹à¸žà¸à¹€à¸à¸ˆà¸•à¸´à¸”ตั้งไว้à¹à¸¥à¹‰à¸§ à¹à¸¥à¸°à¹„ม่มีà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”ให้ปรับรุ่น\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "จะข้าม %s เนื่องจาà¸à¹à¸žà¸à¹€à¸à¸ˆà¹„ม่ได้ติดตั้งไว้ à¹à¸¥à¸°à¸„ำสั่งมีเพียงà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™à¹€à¸—่านั้น\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "ไม่สามารถติดตั้ง %s ซ้ำได้ เนื่องจาà¸à¹„ม่สามารถดาวน์โหลดได้\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่à¹à¸¥à¹‰à¸§\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "เลือà¸à¸£à¸¸à¹ˆà¸™ '%s' (%s) สำหรับ '%s' à¹à¸¥à¹‰à¸§\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "เลือà¸à¸£à¸¸à¹ˆà¸™ '%s' (%s) สำหรับ '%s' à¹à¸¥à¹‰à¸§ อันเนื่องมาจาภ'%s'\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "จะละเลยรุ่นเป้าหมาย '%s' ซึ่งไม่มีอยู่ของà¹à¸žà¸à¹€à¸à¸ˆ '%s'"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "à¸à¸³à¸¥à¸±à¸‡à¸”าวน์โหลด %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "à¹à¸Ÿà¹‰à¸¡à¸™à¸µà¹‰à¹„ม่ใช่à¹à¸žà¸à¹€à¸à¸ˆ DEB ที่ใช้à¸à¸²à¸£à¹„ด้ ขาดข้อมูล '%s', '%s' หรือ '%s'"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum ไม่ตรงà¸à¸±à¸™"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr "ไม่พบà¹à¸Ÿà¹‰à¸¡à¸ªà¸³à¸«à¸£à¸±à¸šà¹à¸žà¸à¹€à¸à¸ˆ %s คุณอาจต้องà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¹€à¸­à¸‡"
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "ไม่สามารถเขียนบันทึà¸à¸›à¸à¸´à¸šà¸±à¸•à¸´à¸à¸²à¸£ เนื่องจาภopenpty() ล้มเหลว (ไม่ได้เมานท์ /dev/pts "
+#~ "หรือเปล่า?)\n"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "à¹à¸Ÿà¹‰à¸¡ %s ไม่ได้ขึ้นต้นด้วยà¸à¸²à¸£à¸£à¸°à¸šà¸¸à¸à¸²à¸£à¹€à¸‹à¹‡à¸™à¸à¸³à¸à¸±à¸šà¸„รอบในตัวข้อความ"
diff --git a/po/tl.po b/po/tl.po
index e2cb94d3f..35f950df6 100644
--- a/po/tl.po
+++ b/po/tl.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2007-03-29 21:36+0800\n"
"Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
"Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
@@ -20,154 +20,156 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n>1;\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Paketeng %s bersyon %s ay may kulang na dep:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Kabuuan ng mga Pakete : "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "Kabuuan ng mga Pakete : "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Normal na Pakete: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Purong Birtwual na Pakete: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Nag-iisang Birtwal na Pakete: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Halong Birtwal na Pakete: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Kulang/Nawawala: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Kabuuan ng Natatanging mga Bersyon: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
#, fuzzy
msgid "Total distinct descriptions: "
msgstr "Kabuuan ng Natatanging mga Bersyon: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Kabuuan ng mga Dependensiya: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Kabuuan ng ugnayang Ber/Talaksan: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
#, fuzzy
msgid "Total Desc/File relations: "
msgstr "Kabuuan ng ugnayang Ber/Talaksan: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Kabuuan ng Mapping ng Provides: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Kabuuan ng Globbed String: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Kabuuan ng gamit na puwang ng Dependensiyang Bersyon: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Kabuuan ng Hindi Nagamit na puwang: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Kabuuan ng puwang na napag-tuosan: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Wala sa sync ang talaksan ng paketeng %s."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Walang nahanap na mga pakete"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "Kailangan niyong magbigay ng isa lamang na pattern"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Hindi mahanap ang paketeng %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Talaksang Pakete:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Wala sa sync ang cache, hindi ma-x-ref ang talaksang pakete"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Mga naka-Pin na Pakete:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(hindi nahanap)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Nakaluklok: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Kandidato: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(wala)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Naka-Pin na Pakete: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Talaang Bersyon:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, fuzzy, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s para sa %s %s kinompile noong %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -244,36 +246,36 @@ msgstr ""
"karagdagang impormasyon\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
#, 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:100
+#: cmdline/apt-cdrom.cc:104
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:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Bigo ang pagpangalan muli ng %s tungong %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
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."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Mga argumento ay hindi naka-pares"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -301,606 +303,62 @@ msgstr ""
" -c=? Basahin itong talaksang pagkaayos\n"
" -o=? Itakda ang isang option sa pagkaayos, hal. -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[O/h]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[o/H]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "O"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "H"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Error sa pag-compile ng regex - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "ngunit ang %s ay nakaluklok"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "ngunit ang %s ay iluluklok"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "ngunit hindi ito maaaring iluklok"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "ngunit ito ay birtwal na pakete"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "ngunit ito ay hindi nakaluklok"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "ngunit ito ay hindi iluluklok"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " o"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Ang susunod na mga pakete ay iu-upgrade:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (dahil sa %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"BABALA: Ang susunod na mga paketeng esensyal ay tatanggalin.\n"
-"HINDI ito dapat gawin kung hindi niyo alam ng husto ang inyong ginagawa!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu na nai-upgrade, %lu na bagong luklok, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu iniluklok muli, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu nai-downgrade, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Paunawa, pinili ang %s para sa regex '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Paunawa, pinili ang %s para sa regex '%s'\n"
-
-#: cmdline/apt-get.cc:686
-#, 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:697
-msgid " [Installed]"
-msgstr " [Nakaluklok]"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "Bersyong Kandidato"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Dapat kayong mamili ng isa na iluluklok."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Hindi magamit ang %s, ngunit ito'y tinutukoy ng ibang pakete.\n"
-"Maaaring nawawala ang pakete, ito'y laos na, o ito'y makukuha lamang\n"
-"sa ibang pinagmulan.\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Gayunpaman, ang sumusunod na mga pakete ay humahalili sa kanya:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Ang paketeng %s ay walang kandidatong maaaring instolahin"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Paunawa, pinili ang %s imbes na %s\n"
-
-#: cmdline/apt-get.cc:847
-#, 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:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n"
-
-#: cmdline/apt-get.cc:863
-#, 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:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ay pinakabagong bersyon na.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, fuzzy, c-format
-msgid "%s set to manually installed.\n"
-msgstr "ngunit ang %s ay iluluklok"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Ang napiling bersyon %s (%s) para sa %s\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Ang napiling bersyon %s (%s) para sa %s\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Inaayos ang mga dependensiya..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " ay bigo."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Hindi maayos ang mga dependensiya"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Hindi mai-minimize ang upgrade set"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Tapos"
-
-#: cmdline/apt-get.cc:1069
-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:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f."
-
-#: cmdline/apt-get.cc:1097
-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:1101
-msgid "Authentication warning overridden.\n"
-msgstr ""
-"Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Iluklok ang mga paketeng ito na walang beripikasyon?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-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:1160
-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:1169
-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:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod"
-
-#: cmdline/apt-get.cc:1218
-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"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Kailangang kumuha ng %sB ng arkibo.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, 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"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, 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:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Hindi matantsa ang libreng puwang sa %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Kulang kayo ng libreng puwang sa %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Oo, gawin ang sinasabi ko!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Kayo ay gagawa ng bagay na maaaring makasama sa inyong sistema.\n"
-"Upang magpatuloy, ibigay ang pariralang '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Abort."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Nais niyo bang magpatuloy?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Bigo sa pagkuha ng %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "May mga talaksang hindi nakuha"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o "
-"subukang may --fix-missing?"
-
-#: cmdline/apt-get.cc:1414
-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:1419
-msgid "Unable to correct missing packages."
-msgstr "Hindi maayos ang mga kulang na pakete."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Ina-abort ang pag-instol."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, fuzzy, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-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:1853
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Error na internal, may nasira ang problem resolver"
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
-msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
-msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade"
-
-#: cmdline/apt-get.cc:1984
-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:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang "
-"mga pakete (o magtakda ng solusyon)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"May mga paketeng hindi ma-instol. Maaring may hiniling kayong imposible\n"
-"o kung kayo'y gumagamit ng pamudmod na unstable ay may ilang mga paketeng\n"
-"kailangan na hindi pa nalikha o linipat mula sa Incoming."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Sirang mga pakete"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Mga paketeng mungkahi:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Mga paketeng rekomendado:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Hindi mahanap ang paketeng %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "ngunit ang %s ay iluluklok"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "ngunit ang %s ay iluluklok"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Sinusuri ang pag-upgrade... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Bigo"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Tapos"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Error na internal, may nasira ang problem resolver"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Hindi maaldaba ang directory ng download"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
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:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Hindi mahanap ang paketeng source para sa %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -908,85 +366,95 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Linaktawan ang nakuha na na talaksan '%s'\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Hindi matantsa ang libreng puwang sa %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Kulang kayo ng libreng puwang sa %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Kailangang kumuha ng %sB ng arkibong source.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Kunin ang Source %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Bigo sa pagkuha ng ilang mga arkibo."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Bigo ang utos ng pagbuklat '%s'.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, 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:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Utos na build '%s' ay bigo.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Bigo ang prosesong anak"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "Walang build depends ang %s.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -995,7 +463,7 @@ msgstr ""
"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi "
"mahanap"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1004,14 +472,14 @@ msgstr ""
"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi "
"mahanap"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1020,7 +488,7 @@ msgstr ""
"Dependensiyang %s para sa %s ay hindi mabuo dahil walang magamit na bersyon "
"ng paketeng %s na tumutugon sa kinakailangang bersyon"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1029,30 +497,30 @@ msgstr ""
"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi "
"mahanap"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Hindi mabuo ang build-dependencies para sa %s."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Bigo sa pagproseso ng build dependencies"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "Kumokonekta sa %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Suportadong mga Module:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1137,98 +605,53 @@ msgstr ""
"para sa karagdagang impormasyon at mga option.\n"
" Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Tumama "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Kunin: "
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "DiPansin "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Err "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Nakakuha ng %sB ng %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [May ginagawa]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Pagpalit ng Media: Ikasa ang disk na may pangalang\n"
-" '%s'\n"
-"sa drive '%s' at pindutin ang enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "ngunit ito ay hindi nakaluklok"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "ngunit ang %s ay iluluklok"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "ngunit ang %s ay iluluklok"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s ay pinakabagong bersyon na.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s ay pinakabagong bersyon na.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Naghintay, para sa %s ngunit wala nito doon"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "ngunit ang %s ay iluluklok"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "Bigo ang pagbukas ng %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1250,6 +673,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1347,8 +787,8 @@ msgstr "Lumipas ang koneksyon"
msgid "Server closed the connection"
msgstr "Sinarhan ng server ang koneksyon"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Error sa pagbasa"
@@ -1361,8 +801,8 @@ msgid "Protocol corruption"
msgstr "Sira ang protocol"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Error sa pagsulat"
@@ -1374,6 +814,10 @@ msgstr "Hindi maka-likha ng socket"
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:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Bigo"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Hindi maka-konekta sa socket na passive."
@@ -1416,7 +860,7 @@ msgstr "Nag-timeout ang socket ng datos"
msgid "Unable to accept connection"
msgstr "Hindi makatanggap ng koneksyon"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Problema sa pag-hash ng talaksan"
@@ -1550,81 +994,597 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Error sa pagsusulat sa talaksan"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Error sa pagbasa mula sa server"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Error sa pagsulat sa talaksan"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Bigo ang pagpili"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Nag-timeout ang koneksyon"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Error sa pagsulat ng talaksang output"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Naghihintay ng panimula"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Maling linyang panimula"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "Nagpadala ang HTTP server ng di tanggap na reply header"
-#: methods/http.cc:606
+#: methods/server.cc:176
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:621
+#: methods/server.cc:199
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:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Sira ang range support ng HTTP server na ito"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Di kilalang anyo ng petsa"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Bigo ang pagpili"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Maling datos sa panimula"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Nag-timeout ang koneksyon"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Bigo ang koneksyon"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Error sa pagsulat ng talaksang output"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Internal na error"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Error sa pagsulat sa talaksan"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Error sa pagsusulat sa talaksan"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+"Error na internal, tinawagan ang InstallPackages na may sirang mga pakete!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr ""
+"May mga paketeng kailangang tanggalin ngunit naka-disable ang Tanggal/Remove."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Error sa pagbasa mula sa server"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Maling datos sa panimula"
+#: apt-private/private-install.cc:159
+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"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Bigo ang koneksyon"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Internal na error"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Kailangang kumuha ng %sB ng arkibo.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, 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"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Matapos magbuklat ay %sB na puwang sa disk ang mapapalaya.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Kulang kayo ng libreng puwang sa %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "May mga problema at -y ay ginamit na walang --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Oo, gawin ang sinasabi ko!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Kayo ay gagawa ng bagay na maaaring makasama sa inyong sistema.\n"
+"Upang magpatuloy, ibigay ang pariralang '%s'\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Abort."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Nais niyo bang magpatuloy?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "May mga talaksang hindi nakuha"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o "
+"subukang may --fix-missing?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing at pagpalit ng media ay kasalukuyang hindi suportado"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Hindi maayos ang mga kulang na pakete."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Ina-abort ang pag-instol."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr ""
+"Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:"
+
+#: apt-private/private-install.cc:517
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Error na internal, may nasira ang problem resolver"
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
+msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
+msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+"Maaaring patakbuhin niyo ang 'apt-get -f install' upang ayusin ang mga ito:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang "
+"mga pakete (o magtakda ng solusyon)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"May mga paketeng hindi ma-instol. Maaring may hiniling kayong imposible\n"
+"o kung kayo'y gumagamit ng pamudmod na unstable ay may ilang mga paketeng\n"
+"kailangan na hindi pa nalikha o linipat mula sa Incoming."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Sirang mga pakete"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Mga paketeng mungkahi:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Mga paketeng rekomendado:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr ""
+"BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr ""
+"Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Iluklok ang mga paketeng ito na walang beripikasyon?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Bigo sa pagkuha ng %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Nakaluklok]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Nakaluklok]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Nakaluklok]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "ngunit ang %s ay nakaluklok"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "ngunit ang %s ay iluluklok"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "ngunit hindi ito maaaring iluklok"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "ngunit ito ay birtwal na pakete"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "ngunit ito ay hindi nakaluklok"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "ngunit ito ay hindi iluluklok"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " o"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Ang susunod na mga pakete ay iu-upgrade:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (dahil sa %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"BABALA: Ang susunod na mga paketeng esensyal ay tatanggalin.\n"
+"HINDI ito dapat gawin kung hindi niyo alam ng husto ang inyong ginagawa!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu na nai-upgrade, %lu na bagong luklok, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu iniluklok muli, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu nai-downgrade, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[O/h]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[o/H]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "O"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "H"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Error sa pag-compile ng regex - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Inaayos ang mga dependensiya..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " ay bigo."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Hindi maayos ang mga dependensiya"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Hindi mai-minimize ang upgrade set"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Tapos"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Maaari ninyong patakbuhin ang 'apt-get -f install' upang ayusin ito."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Sinusuri ang pag-upgrade... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Tapos"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Bigo ang pagpangalan muli ng %s tungong %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Tumama "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Kunin: "
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "DiPansin "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Err "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Nakakuha ng %sB ng %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [May ginagawa]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Pagpalit ng Media: Ikasa ang disk na may pangalang\n"
+" '%s'\n"
+"sa drive '%s' at pindutin ang enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Hindi mabasa ang %s"
@@ -1683,35 +1643,35 @@ msgstr "Bigo sa paglikha ng IPC pipe sa subprocess"
msgid "Connection closed prematurely"
msgstr "Nagsara ng maaga ang koneksyon"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Maling nakatakda na default!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Pindutin ang enter upang magpatuloy."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr ""
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "May mga error na naganap habang nagbubuklat. Isasaayos ko ang"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "mga paketeng naluklok. Maaaring dumulot ito ng mga error na doble"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"o mga error na dulot ng kulang na dependensiya. Ito ay ayos lamang, yun lang"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -1967,36 +1927,36 @@ msgstr "Bigo ang pagbasa ng link %s"
msgid "Failed to unlink %s"
msgstr "Bigo ang pag-unlink ng %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Bigo ang pag-link ng %s sa %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " DeLink limit na %sB tinamaan.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Walang field ng pakete ang arkibo"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s ay walang override entry\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " Tagapangalaga ng %s ay %s hindi %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s ay walang override entry para sa pinagmulan\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s ay wala ring override entry na binary\n"
@@ -2075,7 +2035,7 @@ msgstr "Problema sa pag-unlink ng %s"
msgid "Failed to rename %s to %s"
msgstr "Bigo ang pagpangalan muli ng %s tungong %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2145,7 +2105,7 @@ msgstr "Sirang arkibo"
msgid "Tar checksum failed, archive corrupted"
msgstr "Bigo ang checksum ng tar, sira ang arkibo"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Hindi kilalang uri ng TAR header %u, miyembrong %s"
@@ -2269,23 +2229,17 @@ msgid "Unable to stat %s"
msgstr "Hindi ma-stat ang %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s'"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, fuzzy, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s' o '%s'"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Internal error, hindi mahanap ang miyembrong %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Di maintindihang talaksang control"
@@ -2343,87 +2297,87 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Piniling %s ay hindi nahanap"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Hindi kilalang katagang uri: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Binubuksan ang talaksang pagsasaayos %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Syntax error %s:%u: Maling anyo ng Tag"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, 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:849
+#: apt-pkg/contrib/configuration.cc:861
#, 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:856
+#: apt-pkg/contrib/configuration.cc:868
#, 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:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Syntax error %s:%u: Sinama mula dito"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan"
@@ -2448,50 +2402,50 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Tapos"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Opsyon sa command line '%c' [mula %s] ay di kilala."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Opsyon sa command line %s ay di naintindihan."
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Opsyon sa command line %s ay hindi boolean"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Opsyon %s ay nangangailangan ng argumento"
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"Opsyon %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng "
"=<halaga>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Opsyon %s ay nangangailangan ng argumentong integer, hindi '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Opsyon '%s' ay labis ang haba"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Hindi naintindihan ang %s, subukan ang true o false."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Di tanggap na operasyon %s"
@@ -2505,119 +2459,119 @@ msgstr "Di mai-stat ang mount point %s"
msgid "Failed to stat the cdrom"
msgstr "Bigo sa pag-stat ng cdrom"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "Problema sa pagsara ng talaksan"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
"Hindi ginagamit ang pagaldaba para sa basa-lamang na talaksang aldaba %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Hindi mabuksan ang talaksang aldaba %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
"Hindi gumagamit ng pag-aldaba para sa talaksang aldaba %s na naka-mount sa "
"nfs"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "hindi makuha ang aldaba %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Nakatanggap ang sub-process %s ng segmentation fault."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "Nakatanggap ang sub-process %s ng segmentation fault."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, 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:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Ang sub-process %s ay lumabas ng di inaasahan"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Hindi mabuksan ang talaksang %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "Hindi makapag-bukas ng pipe para sa %s"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Bigo ang paglikha ng subprocess IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Bigo ang pag-exec ng taga-compress"
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "Problema sa pagsara ng talaksan"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Problema sa pag-sync ng talaksan"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "Problema sa pag-unlink ng talaksan"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Problema sa pag-sync ng talaksan"
@@ -2736,12 +2690,12 @@ msgstr "Bigo ang pagbukas ng %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Bigo sa pagsulat ng talaksang %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Hindi ma-parse ang talaksang pakete %s (2)"
@@ -2816,19 +2770,19 @@ msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)"
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "Hindi mabuksan ang talaksang %s"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2853,7 +2807,7 @@ msgstr ""
"Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo "
"para dito."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2861,20 +2815,11 @@ msgstr ""
"Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot "
"ito ng mga paketeng naka-hold."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
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:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang "
-"mga luma na lamang."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2918,12 +2863,12 @@ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
"Ikasa ang disk na may pangalang: '%s' sa drive '%s' at pindutin ang enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Hindi suportado ang sistema ng paketeng '%s'"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete "
@@ -2958,17 +2903,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Di tanggap na record sa talaksang pagtatangi, walang Package header"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Hindi naintindihan ang uri ng pin %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Walang prioridad (o sero) na nakatakda para sa pin"
@@ -3038,45 +2983,49 @@ msgstr "IO Error sa pag-imbak ng source cache"
msgid "rename failed, %s (%s -> %s)."
msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Di tugmang MD5Sum"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
#, fuzzy
msgid "Hash Sum mismatch"
msgstr "Di tugmang MD5Sum"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Di tugmang laki"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Di tanggap na operasyon %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
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:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3084,12 +3033,12 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3098,16 +3047,12 @@ msgstr ""
"Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin "
"niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
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:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3115,16 +3060,12 @@ msgstr ""
"Sira ang talaksang index ng mga pakete. Walang Filename: field para sa "
"paketeng %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Di tugmang laki"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, fuzzy, c-format
msgid "Unable to parse Release file %s"
msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, fuzzy, c-format
msgid "No sections in Release file %s"
msgstr "Paunawa, pinili ang %s imbes na %s\n"
@@ -3270,49 +3211,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "Di tugmang MD5Sum"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Release '%s' para sa '%s' ay hindi nahanap"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "Hindi mahanap ang paketeng %s"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Hindi mahanap ang paketeng %s"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3337,127 +3278,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang "
+"mga luma na lamang."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, fuzzy, c-format
msgid "Installing %s"
msgstr "Iniluklok ang %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Isasaayos ang %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Tinatanggal ang %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "Natanggal ng lubusan ang %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr ""
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, fuzzy, c-format
msgid "Directory '%s' missing"
msgstr "Nawawala ang directory ng talaan %spartial."
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "Hindi mabuksan ang talaksang %s"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Hinahanda ang %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Binubuklat ang %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Hinahanda ang %s upang isaayos"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Iniluklok ang %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Naghahanda para sa pagtanggal ng %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Tinanggal ang %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Naghahanda upang tanggalin ng lubusan ang %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Natanggal ng lubusan ang %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Hindi makapagsulat sa %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3487,6 +3457,90 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Paunawa, pinili ang %s para sa regex '%s'\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Paunawa, pinili ang %s para sa regex '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Ang paketeng %s ay paketeng birtwal na bigay ng:\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "Bersyong Kandidato"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Dapat kayong mamili ng isa na iluluklok."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Hindi magamit ang %s, ngunit ito'y tinutukoy ng ibang pakete.\n"
+#~ "Maaaring nawawala ang pakete, ito'y laos na, o ito'y makukuha lamang\n"
+#~ "sa ibang pinagmulan.\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Gayunpaman, ang sumusunod na mga pakete ay humahalili sa kanya:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Ang paketeng %s ay walang kandidatong maaaring instolahin"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Paunawa, pinili ang %s imbes na %s\n"
+
+#~ 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"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "Ang pagluklok muli ng %s ay hindi maaari, hindi ito makuha.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s ay pinakabagong bersyon na.\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Ang napiling bersyon %s (%s) para sa %s\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Ang napiling bersyon %s (%s) para sa %s\n"
+
+#, fuzzy
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s' o '%s'"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Di tugmang MD5Sum"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin "
+#~ "niyong ayusin ng de kamay ang paketeng ito."
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "Binubuksan ang talaksang pagsasaayos %s"
diff --git a/po/tr.po b/po/tr.po
index 90e453e54..669195cf6 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2013-02-18 03:41+0200\n"
"Last-Translator: Mert Dirik <mertdirik@gmail.com>\n"
"Language-Team: Debian l10n Turkish\n"
@@ -20,152 +20,154 @@ msgstr ""
"X-Generator: Poedit 1.5.5\n"
"X-Launchpad-Export-Date: 2013-02-04 12:16+0000\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "%s paketinin (sürüm %s) karşılanamayan bir bağımlılığı var:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Toplam paketlerin adları: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Toplam paket yapıları: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Normal paketler: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Saf sanal paketler: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Tekil sanal paketler: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Karışık sanal paketler: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Eksik: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Toplam farklı sürümler: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Toplam farklı açıklamalar: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Toplam bağımlılıklar: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Toplam sürüm/dosya ilişkileri: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Toplam Tanım/Dosya ilişkileri: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Toplam destekleme eÅŸleÅŸtirmeleri: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Toplam birikmiÅŸ dizgiler: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Toplam bağlımlık sürümü alanı: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Toplam serbest alan: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Hesaplanan toplam alan: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "%s paket dosyası eşzamansız."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Hiç paket bulunamadı"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "En az bir arama örüntüsü vermelisiniz"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
"Bu komutun kullanımı bırakılmıştır. Lütfen bunun yerine 'apt-mark showauto' "
"komutunu kullanın."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "%s paketi bulunamadı"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Paket dosyaları:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Önbellek eşzamanlı değil, paket dosyası 'x-ref' yapılamıyor."
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "SabitlenmiÅŸ paketler:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(bulunamadı)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Kurulu: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Aday: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(hiçbiri)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Paket sabitleme: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Sürüm çizelgesi:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s (%s için) %s %s tarihinde derlendi\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -238,35 +240,35 @@ msgstr ""
"atın.\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Lütfen bu CD/DVD'ye bir isim verin, örneğin 'Debian 5.0.3 Disk 1'"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Lütfen sürücüye bir Disk yerleştirin ve giriş tuşuna (Enter) basın"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "'%s', '%s' konumuna bağlanamadı"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Kalan CD'leriniz için bu işlemi yineleyin."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Değişkenler (argüman) çiftler halinde değil"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -295,564 +297,32 @@ msgstr ""
" -o=? İsteğe bağlı ayar seçeneği belirtmenizi sağlar, örneğin -o dir::"
"cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[E/h]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[e/H]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "E"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "H"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Regex derleme hatası - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Aşağıdaki paketler karşılanmamış bağımlılıklara sahip:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "ama %s kurulu"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "ama %s kurulacak"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "ama kurulabilir deÄŸil"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "ama o bir sanal paket"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "ama kurulu deÄŸil"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "ama kurulmayacak"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " ya da"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Aşağıdaki YENİ paketler kurulacak:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Aşağıdaki paketler KALDIRILACAK:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Aşağıdaki paketlerin mevcut durumları korunacak:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Aşağıdaki paketler yükseltilecek:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Aşağıdaki paketlerin SÜRÜMLERİ DÜŞÜRÜLECEK:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Aşağıdaki eski sürümlerinde tutulan paketler değiştirilecek:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (%s nedeniyle) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"UYARI: Aşağıdaki temel paketler kaldırılacak.\n"
-"Bu işlem ne yaptığınızı tam olarak bilmediğiniz takdirde YAPILMAMALIDIR!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu paket yükseltilecek, %lu yeni paket kurulacak, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu paket yeniden kurulacak, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu paketin sürümü düşürülecek, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu paket kaldırılacak ve %lu paket yükseltilmeyecek.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Bilgi, '%2$s' görevi için '%1$s' seçiliyor\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Bilgi, '%2$s' düzenli ifadesi için '%1$s' seçiliyor\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "%s paketi sanal bir pakettir, bu paketi saÄŸlayan:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [Kuruldu]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Aday sürüm değil]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Kurmak için adaylardan birini açıkça seçmelisiniz."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"%s paketi mevcut değil, ancak başka paket içerisinden işaret edilmiş.\n"
-"Bu durum bu paketin kayıp, eskidiği için bırakılmış, ya da başka bir\n"
-"yazılım kaynağında bulunduğu anlamına gelebilir.\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Yine de aşağıdaki paketler onun yerine geçecek:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "'%s' paketi için kurulum adayı yok"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "'%s' gibi sanal paketler kaldırılamaz\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"'%s' kurulu değildi, dolayısıyla kaldırılmadı. Bunu mu demek istediniz: "
-"'%s'?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "'%s' kurulu değildi, dolayısıyla kaldırılmadı.\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Bilgi, '%2$s' yerine '%1$s' seçiliyor\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "%s atlanıyor, bu paket zaten kurulu ve yükseltme seçilmemiş.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"%s atlanıyor, bu paket kurulu değil ve sadece yükseltmeler isteniyor.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr ""
-"%s paketinin yeniden kurulumu mümkün değil, çünkü paket internetten "
-"indirilemedi.\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s zaten en yeni sürümde.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s elle kurulmuş olarak ayarlı.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "'%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "'%4$s' nedeniyle '%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Bağımlılıklar düzeltiliyor..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " başarısız oldu."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Bağımlılıklar düzeltilemedi"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Yükseltme kümesi küçültülemiyor"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Tamamlandı"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr ""
-"Bu sorunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız "
-"gerekebilir."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "UYARI: Aşağıdaki paketler doğrulanamıyor!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Kimlik denetimi uyarısı görmezden geliniyor.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Paketler doÄŸrulanmadan kurulsun mu?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "Bazı paketlerin kimlik denetimi yapılamadı"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Bazı sorunlar çıktı ve -y seçeneği, --force-yes olmadan kullanıldı"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "İç hata, InstallPackages bozuk paketler ile çağrıldı!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr ""
-"Paketlerin kaldırılması gerekiyor ancak kaldırma işlemi devre dışı "
-"bırakılmış."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "İç hata, Sıralama tamamlanamadı"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Ne kadar ilginç.. Boyutlar eşleşmedi, apt@packages.debian.org adresine "
-"eposta atın."
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "%sB/%sB arşiv dosyası indirilecek.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "%sB arşiv dosyası indirilecek.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Bu işlem tamamlandıktan sonra %sB ek disk alanı kullanılacak.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "Bu işlem tamamlandıktan sonra %sB disk alanı boşalacak.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "%s içindeki boş alan miktarı belirlenemedi"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "%s içinde yeterli boş alanınız yok."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"Yalnızca Önemsiz seçeneği ayarlandı, fakat bu önemsiz bir işlem bir değil."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Evet, söylediğim şekilde yap!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Tehlikeli bir iş yapmak üzeresiniz.\n"
-"Devam etmek için '%s' ifadesini yazınız\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Vazgeç."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Devam etmek istiyor musunuz?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "%s ağdan alınamadı. %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Bazı dosyalar indirilemedi"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "İndirme işlemi tamamlandı ve sadece indirme kipinde"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Bazı arşivler alınamıyor, apt-get update'i çalıştırmayı ya da --fix-missing "
-"seçeneğini ekleyerek düzeltmeyi deneyin."
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing seçeneği ve ortam takası şu an için desteklenmiyor"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Eksik paketler düzeltilemedi."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Kurulum iptal ediliyor."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Tüm dosyalarının üzerine yazıldığı için aşağıdaki paket\n"
-"sisteminizden kayboldu:"
-msgstr[1] ""
-"Tüm dosyalarının üzerine yazıldığı için aşağıdaki paketler\n"
-"sisteminizden kayboldu:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Not: Bu eylem dpkg tarafından otomatik ve kasıtlı olarak yapılmıştır."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Mevcut olmayan hedef '%s' sürüm '%s' paketini ihmal et"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Kaynak paket olarak '%s' yerine '%s' kullanılacak\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "'%2$s' paketinin mevcut olmayan '%1$s' sürümünü görmezden gel"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "'update' komutu bağımsız değişken almamaktadır"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr "Nesneleri silmemiz beklenemez, AutoRemover çalıştırılamıyor"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"AutoRemover yapmaması gereken bir yıkıma\n"
-"sebep oldu. Lütfen apt hakkında bir hata raporu doldurun."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Aşağıdaki bilgiler durumu çözmenize yardımcı olabilir:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "İç hata, AutoRemover bazı şeyleri bozdu"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"Aşağıdaki paket otomatik olarak kurulmuş ve artık bu pakete gerek duyulmuyor:"
-msgstr[1] ""
-"Aşağıdaki paketler otomatik olarak kurulmuş ve artık bu paketlere gerek "
-"duyulmuyor:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n"
-msgstr[1] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Bu paketi kaldırmak için 'apt-get autoremove' komutunu kullanın."
-msgstr[1] "Bu paketleri kaldırmak için 'apt-get autoremove' komutunu kullanın."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "İç hata, AllUpgrade bazı şeyleri bozdu"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr ""
-"Bunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız "
-"gerekebilir:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Karşılanmamış bağımlılıklar. 'apt-get -f install' komutunu paket seçeneği "
-"vermeden deneyin (ya da bir çözüm belirtin)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Bazı paketler kurulamadı. Bu durum, olanaksız bir durum istemiş\n"
-"olduğunuzu ya da kararsız (unstable) dağıtımı kullandığınızı ve\n"
-"bazı paketlerin henüz oluşturulamamış ya da oluşturulmakta\n"
-"olduğunu gösterir."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Bozuk paketler"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Aşağıdaki ek paketler de kurulacak:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Önerilen paketler:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Tavsiye edilen paketler:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "%s paketi bulunamadı"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s elle kurulmuş olarak ayarlı.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s otomatik olarak kurulmuş şekilde ayarlandı.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -860,46 +330,24 @@ msgstr ""
"Bu komut artık kullanılmamaktadır. Bunun yerine 'apt-mark auto' ve 'apt-mark "
"manual' kullanın."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Yükseltme hesaplanıyor... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Başarısız"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Bitti"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "İç hata, sorun çözücü nesneyi bozdu"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Ä°ndirme dizini kilitlenemiyor"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "'%2$s' paketinin '%1$s' sürümü hiçbir kaynakta bulunamadı"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "Ä°ndiriliyor %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "Kaynağının indirileceği en az bir paket seçilmeli"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "%s paketinin kaynak paketi bulunamadı"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -909,7 +357,7 @@ msgstr ""
"yapılmaktadır:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -921,68 +369,78 @@ msgstr ""
"bzr branch %s\n"
"komutunu kullanın.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Zaten indirilmiş olan '%s' dosyası atlanıyor\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "%s içindeki boş alan miktarı belirlenemedi"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "%s üzerinde yeterli boş alan yok"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "%sB/%sB kaynak arÅŸivi indirilecek.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "%sB kaynak arÅŸivi indirilecek.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "%s kaynağını al\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Bazı arşivler alınamadı."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "İndirme işlemi tamamlandı ve sadece indirme kipinde"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "%s için zaten açılmış bazı paketlerin açılması atlanıyor.\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Paket açma komutu '%s' başarısız.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "'dpkg-dev' paketinin kurulu olduÄŸundan emin olun.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "İnşa komutu '%s' başarısız oldu.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Alt süreç başarısız"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr "İnşa bağımlılıklarının denetleneceği en az bir paket belirtilmedilir"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -991,17 +449,17 @@ msgstr ""
"%s mimarisine uygun mimari bilgileri mevcut değil. Kurulumu için apt.conf(5) "
"rehber sayfasındaki APT::Architectures kısmına göz atın."
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "%s paketinin inşa-bağımlılığı bilgisi alınamıyor"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s paketinin hiç inşa bağımlılığı yok.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1010,7 +468,7 @@ msgstr ""
"'%4$s' paketlerinde %3$s paketine izin verilmediği için %2$s kaynağının %1$s "
"bağımlılığı karşılanamıyor."
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1018,12 +476,12 @@ msgid ""
msgstr ""
"%2$s için %1$s bağımlılığı, %3$s paketi bulunamadığı için karşılanamadı."
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr "%2$s için %1$s bağımlılığı karşılanamadı: Kurulu %3$s paketi çok yeni."
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1032,7 +490,7 @@ msgstr ""
"%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü "
"gerekli sürüm şartlarını karşılamıyor"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1040,30 +498,30 @@ msgid ""
msgstr ""
"%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü yok"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "%2$s için %1$s bağımlılığı karşılanamadı: %3$s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "%s için inşa bağımlılıkları karşılanamadı."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "İnşa bağımlılıklarını işleme başarısız oldu"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "%s (%s) paketinin değişim günlüğü"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Desteklenen birimler:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1153,102 +611,53 @@ msgstr ""
"sayfalarına bakabilirsiniz.\n"
" Bu APT'nin Süper İnek Güçleri vardır.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"NOT: Bu sadece simülasyondur!\n"
-" apt-get sadece root hakları ile gerçekten kullanılabilir.\n"
-" Unutmayın ki simülasyonda kilitleme yapılmaz,\n"
-" bu nedenle bu simülasyonun tam uygunluğuna güvenmeyin."
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Bağlandı "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Alınıyor: "
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Yoksay "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Hata "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%2$s'de %1$sB alındı (%3$sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Çalışıyor]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Ortam değişimi: Lütfen '%2$s' sürücüsüne\n"
-" '%1$s'\n"
-"olarak etiketlenmiş diski takın ve enter tuşuna basın.\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s kurulu olmadığı için işaretlenemedi.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s zaten elle kurulmuş olarak ayarlı.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s zaten otomatik kurulmuş olarak ayarlı.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s zaten tutulacak şekilde ayarlanmış.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s zaten tutulmayacak şekilde ayarlanmış.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "%s için beklenildi ama o gelmedi"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s paketi tutuluyor.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "%s paketini tutma iÅŸlemi iptal edildi.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "'dpkg' çalıştırılamadı. root olduğunuzdan emin misiniz?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1289,6 +698,23 @@ msgstr ""
"Ayrıntılı bilgi için apt-mark(8) ve apt.conf(5) rehber sayfalarına\n"
"bakabilirsiniz."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1386,8 +812,8 @@ msgstr "Bağlantı zaman aşımına uğradı"
msgid "Server closed the connection"
msgstr "Sunucu bağlantıyı kesti"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Okuma hatası"
@@ -1400,8 +826,8 @@ msgid "Protocol corruption"
msgstr "İletişim kuralları bozulması"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Yazma hatası"
@@ -1413,6 +839,10 @@ msgstr "Bir soket oluşturulamadı"
msgid "Could not connect data socket, connection timed out"
msgstr "Veri soketine bağlanılamadı, bağlantı zaman aşımına uğradı"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Başarısız"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Edilgen sokete bağlanılamadı."
@@ -1455,7 +885,7 @@ msgstr "Veri soketi bağlantısı zaman aşımına uğradı"
msgid "Unable to accept connection"
msgstr "Bağlantı kabul edilemiyor"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Dosya sağlaması yapılamadı"
@@ -1583,81 +1013,609 @@ msgstr "Aşağıdaki imzalar doğrulanamadı, çünkü genel anahtar mevcut değ
msgid "Empty files can't be valid archives"
msgstr "Boş dosyalar geçerli birer arşiv dosyası olamazlar"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Dosyaya yazılamadı"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Sunucundan okunurken hata. Uzak sonlu kapalı bağlantı"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Sunucundan okunurken hata"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Dosyaya yazılamadı"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Seçme başarısız"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Bağlantı zaman aşımına uğradı"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Çıktı dosyasına yazılırken hata"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Başlıklar bekleniyor"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Kötü başlık satırı"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "HTTP sunucusu geçersiz bir cevap başlığı gönderdi"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "HTTP sunucusu geçersiz bir Content-Length başlığı gönderdi"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "HTTP sunucusu geçersiz bir Content-Range başlığı gönderdi"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "HTTP sunucusunun aralık desteği bozuk"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Bilinmeyen tarih biçimi"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Seçme başarısız"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Kötü başlık verisi"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Bağlantı zaman aşımına uğradı"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Bağlantı başarısız"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Çıktı dosyasına yazılırken hata"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "İç hata"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Dosyaya yazılamadı"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Dosyaya yazılamadı"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "İç hata, InstallPackages bozuk paketler ile çağrıldı!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Sunucundan okunurken hata. Uzak sonlu kapalı bağlantı"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr ""
+"Paketlerin kaldırılması gerekiyor ancak kaldırma işlemi devre dışı "
+"bırakılmış."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Sunucundan okunurken hata"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "İç hata, Sıralama tamamlanamadı"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Kötü başlık verisi"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Ne kadar ilginç.. Boyutlar eşleşmedi, apt@packages.debian.org adresine "
+"eposta atın."
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Bağlantı başarısız"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "%sB/%sB arşiv dosyası indirilecek.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "İç hata"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "%sB arşiv dosyası indirilecek.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Bu işlem tamamlandıktan sonra %sB ek disk alanı kullanılacak.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Bu işlem tamamlandıktan sonra %sB disk alanı boşalacak.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "%s içinde yeterli boş alanınız yok."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Bazı sorunlar çıktı ve -y seçeneği, --force-yes olmadan kullanıldı"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"Yalnızca Önemsiz seçeneği ayarlandı, fakat bu önemsiz bir işlem bir değil."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Evet, söylediğim şekilde yap!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Tehlikeli bir iş yapmak üzeresiniz.\n"
+"Devam etmek için '%s' ifadesini yazınız\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Vazgeç."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Devam etmek istiyor musunuz?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Bazı dosyalar indirilemedi"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Bazı arşivler alınamıyor, apt-get update'i çalıştırmayı ya da --fix-missing "
+"seçeneğini ekleyerek düzeltmeyi deneyin."
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing seçeneği ve ortam takası şu an için desteklenmiyor"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Eksik paketler düzeltilemedi."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Kurulum iptal ediliyor."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Tüm dosyalarının üzerine yazıldığı için aşağıdaki paket\n"
+"sisteminizden kayboldu:"
+msgstr[1] ""
+"Tüm dosyalarının üzerine yazıldığı için aşağıdaki paketler\n"
+"sisteminizden kayboldu:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Not: Bu eylem dpkg tarafından otomatik ve kasıtlı olarak yapılmıştır."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Nesneleri silmemiz beklenemez, AutoRemover çalıştırılamıyor"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"AutoRemover yapmaması gereken bir yıkıma\n"
+"sebep oldu. Lütfen apt hakkında bir hata raporu doldurun."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Aşağıdaki bilgiler durumu çözmenize yardımcı olabilir:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "İç hata, AutoRemover bazı şeyleri bozdu"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"Aşağıdaki paket otomatik olarak kurulmuş ve artık bu pakete gerek duyulmuyor:"
+msgstr[1] ""
+"Aşağıdaki paketler otomatik olarak kurulmuş ve artık bu paketlere gerek "
+"duyulmuyor:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n"
+msgstr[1] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Bu paketi kaldırmak için 'apt-get autoremove' komutunu kullanın."
+msgstr[1] "Bu paketleri kaldırmak için 'apt-get autoremove' komutunu kullanın."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+"Bunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız "
+"gerekebilir:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Karşılanmamış bağımlılıklar. 'apt-get -f install' komutunu paket seçeneği "
+"vermeden deneyin (ya da bir çözüm belirtin)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Bazı paketler kurulamadı. Bu durum, olanaksız bir durum istemiş\n"
+"olduğunuzu ya da kararsız (unstable) dağıtımı kullandığınızı ve\n"
+"bazı paketlerin henüz oluşturulamamış ya da oluşturulmakta\n"
+"olduğunu gösterir."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Bozuk paketler"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Aşağıdaki ek paketler de kurulacak:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Önerilen paketler:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Tavsiye edilen paketler:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "UYARI: Aşağıdaki paketler doğrulanamıyor!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Kimlik denetimi uyarısı görmezden geliniyor.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Bazı paketlerin kimlik denetimi yapılamadı"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Paketler doÄŸrulanmadan kurulsun mu?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "%s ağdan alınamadı. %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Kuruldu]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Kuruldu]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Kuruldu]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Aşağıdaki paketler karşılanmamış bağımlılıklara sahip:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "ama %s kurulu"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "ama %s kurulacak"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "ama kurulabilir deÄŸil"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "ama o bir sanal paket"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "ama kurulu deÄŸil"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "ama kurulmayacak"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " ya da"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Aşağıdaki YENİ paketler kurulacak:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Aşağıdaki paketler KALDIRILACAK:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Aşağıdaki paketlerin mevcut durumları korunacak:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Aşağıdaki paketler yükseltilecek:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Aşağıdaki paketlerin SÜRÜMLERİ DÜŞÜRÜLECEK:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Aşağıdaki eski sürümlerinde tutulan paketler değiştirilecek:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (%s nedeniyle) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"UYARI: Aşağıdaki temel paketler kaldırılacak.\n"
+"Bu işlem ne yaptığınızı tam olarak bilmediğiniz takdirde YAPILMAMALIDIR!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu paket yükseltilecek, %lu yeni paket kurulacak, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu paket yeniden kurulacak, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu paketin sürümü düşürülecek, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu paket kaldırılacak ve %lu paket yükseltilmeyecek.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[E/h]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[e/H]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "E"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "H"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Regex derleme hatası - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Bağımlılıklar düzeltiliyor..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " başarısız oldu."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Bağımlılıklar düzeltilemedi"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Yükseltme kümesi küçültülemiyor"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Tamamlandı"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr ""
+"Bu sorunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız "
+"gerekebilir."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "'update' komutu bağımsız değişken almamaktadır"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Yükseltme hesaplanıyor... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "İç hata, AllUpgrade bazı şeyleri bozdu"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Bitti"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"NOT: Bu sadece simülasyondur!\n"
+" apt-get sadece root hakları ile gerçekten kullanılabilir.\n"
+" Unutmayın ki simülasyonda kilitleme yapılmaz,\n"
+" bu nedenle bu simülasyonun tam uygunluğuna güvenmeyin."
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "%s, %s olarak yeniden adlandırılamadı"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Bağlandı "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Alınıyor: "
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Yoksay "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Hata "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%2$s'de %1$sB alındı (%3$sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Çalışıyor]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Ortam değişimi: Lütfen '%2$s' sürücüsüne\n"
+" '%1$s'\n"
+"olarak etiketlenmiş diski takın ve enter tuşuna basın.\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "%s okunamıyor"
@@ -1719,35 +1677,35 @@ msgstr "Altsürece IPC borusu oluşturulamadı"
msgid "Connection closed prematurely"
msgstr "Bağlantı vaktinden önce kapandı"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Geçersiz öntanımlı ayar!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Devam etmek için giriş (enter) tuşuna basın."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Daha önceden indirilmiş .deb dosyalarını silmek istiyor musunuz?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
"Paket açılırken bazı sorunlar çıktı. Kurulan paketler yapılandırılacak."
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "Bu durum, çift hata iletilerine ya da eksik bağımlılıkların neden"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"olduğu hatalara yol açabilir. Bu durum bir sorun teşkil etmez, yalnızca bu "
"iletinin"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -2000,36 +1958,36 @@ msgstr "%s bağlantı okuması başarılamadı"
msgid "Failed to unlink %s"
msgstr "%s bağlantı koparma başarılamadı"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** %s, %s konumuna bağlanamadı"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " %sB'lik bağlantı koparma (DeLink) sınırına ulaşıldı.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Arşivde paket alanı yok"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s için geçersiz kılma girdisi yok\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s geliÅŸtiricisi %s, %s deÄŸil\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " '%s' paketinin yerine geçecek bir kaynak paket yok\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " '%s' paketinin yerine geçecek bir ikili paket de yok\n"
@@ -2108,7 +2066,7 @@ msgstr "%s bağı koparılırken sorun çıktı"
msgid "Failed to rename %s to %s"
msgstr "%s, %s olarak yeniden adlandırılamadı"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2178,7 +2136,7 @@ msgstr "Bozuk arÅŸiv"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar sağlama toplamı başarısız, arşiv bozulmuş"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Bilinmeyen TAR başlığı türü %u, üye %s"
@@ -2302,22 +2260,17 @@ msgid "Unable to stat %s"
msgstr "%s durum bilgisi alınamadı"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Bu dosya geçerli bir DEB arşivi değil, '%s' üyesi eksik"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "Bu dosya geçerli bir DEB arşivi değil, '%s', '%s' ya da '%s' üyesi yok"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "İç hata, %s üyesi bulunamadı"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Ayrıştırılamayan 'control' dosyası"
@@ -2377,87 +2330,87 @@ msgstr ""
"artırılamadı."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr "%li gün %li saat %li dk. %li sn."
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%li saat %li dk. %li sn."
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%li dk. %li sn."
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%li sn."
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "%s seçimi bulunamadı"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Tanınamayan tür kısaltması: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Yapılandırma dosyası (%s) açılıyor"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "Sözdizim hatası %s:%u: Blok ad olmadan başlıyor."
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Sözdizim hatası %s:%u: Kötü biçimlendirilmiş etiket"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Sözdizim hatası %s:%u: Değerden sonra ilave gereksiz"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "Sözdizim hatası %s:%u: Yönergeler yalnızca en üst düzeyde bitebilir"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Sözdizim hatası %s:%u: Çok fazla yuvalanmış 'include'"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Sözdizim hatası %s:%u: Buradan 'include' edilmiş"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Sözdizim hatası %s:%u: Desteklenmeyen yönerge '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Sözdizim hatası %s:%u: clear yönergesi argüman olarak bir seçenek ağacı "
"gerektirir."
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Sözdizim hatası %s:%u: Dosya sonunda ilave gereksiz"
@@ -2482,50 +2435,50 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Bitti"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Komut satırı seçeneği '%c' [%s içinden] tanınmıyor."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Komut satırı seçeneği %s anlaşılamadı"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Komut satırı seçeneği %s mantıksal değer değil"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "%s seçeneği bir bağımsız değişkene gerek duyar."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"%s seçeneği: Yapılandırma öğesi tanımlaması =<değer> şeklinde değer "
"içermelidir."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "%s seçeneği bir tam sayı bağımsız değişkene gerek duyar, '%s' değil"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "'%s' seçeneği çok uzun"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "%s algılaması anlaşılamadı, true (doğru) ya da false (yanlış) deneyin."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Geçersiz işlem: %s"
@@ -2539,49 +2492,49 @@ msgstr "Bağlama noktasının (%s) durum bilgisi alınamadı"
msgid "Failed to stat the cdrom"
msgstr "Cdrom durum bilgisi alınamadı"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Gzip dosyası %s kapatılamadı"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Kilitleme dosyası %s salt okunur olduğu için kilitleme kullanılmıyor"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Kilit dosyası %s açılamadı"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "nfs ile bağlanmış kilit dosyası %s için kilitleme kullanılmıyor"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "%s kilidi alınamadı"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "'%s' dizin olmadığı için dosya listeli oluşturulamıyor"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
"'%2$s' dizinindeki '%1$s' normal bir dosya olmadığı için görmezden geliniyor."
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
"'%2$s' dizinindeki '%1$s' dosyası uzantısı olmadığı için görmezden geliniyor."
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
@@ -2589,70 +2542,70 @@ msgstr ""
"'%2$s' dizinindeki '%1$s' dosyası geçersiz bir dosya uzantısı olduğu için "
"yok sayılıyor."
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "%s altsüreci bir bölümleme hatası aldı (segmentation fault)."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "%s altsüreci %u sinyali aldı"
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "%s altsüreci bir hata kodu gönderdi (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "%s altsüreci beklenmeyen bir şekilde sona erdi"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "%s dosyası açılamadı"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Dosya tanımlayıcı %d açılamadı"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Altsüreç IPC'si oluşturulamadı"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Sıkıştırma programı çalıştırılamadı "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "read, %llu bayt okunması gerekli fakat hiç kalmamış"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "write, yazılması gereken %llu bayt yazılamıyor"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "%s dosyası kapatılamadı"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "%s dosyası %s olarak yeniden adlandırılamadı"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "%s dosyasından bağ kaldırma sorunu"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Dosya eşitlenirken sorun çıktı"
@@ -2769,12 +2722,12 @@ msgstr "Durum dosyası (StateFile) %s açılamadı."
msgid "Failed to write temporary StateFile %s"
msgstr "Geçici durum dosyasına (%s) yazma başarısız oldu"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Paket dosyası %s ayrıştırılamadı (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Paket dosyası %s ayrıştırılamadı (2)"
@@ -2860,7 +2813,7 @@ msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı hatalı (tür)"
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "'%s' türü bilinmiyor. (Satır: %u, Kaynak Listesi: %s)"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2869,12 +2822,12 @@ msgstr ""
"\"%s\" paketinin anında yapılandırması başarısız oldu. Ayrıntılar için apt."
"conf(5) rehber sayfasının APT::Immediate-Configure kısmına bakın. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "'%s' paketi yapılandırılamadı. "
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2899,7 +2852,7 @@ msgstr ""
"%s paketinin tekrar kurulması gerekli, ancak gereken arşiv dosyası "
"bulunamıyor."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2907,18 +2860,10 @@ msgstr ""
"Hata, pkgProblemResolver::Resolve bozuk paketlere yol açtı, bu sorunun "
"nedeni tutulan paketler olabilir."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Sorunlar giderilemedi, tutulan bozuk paketleriniz var."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Bazı indeks dosyaları indirilemedi. Bu dosyalar yok sayıldılar ya da önceki "
-"sürümleri kullanıldı."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2963,12 +2908,12 @@ msgstr ""
"Lütfen '%s' olarak etiketlenmiş diski '%s' sürücüsüne yerleştirin ve giriş "
"(enter) tuşuna basın."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Paketleme sistemi '%s' desteklenmiyor"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Uygun bir paketleme sistemi türü bulunamıyor"
@@ -3003,17 +2948,17 @@ msgstr ""
"APT::Default-Release için '%s' değeri geçersizdir, çünkü kaynaklarda böyle "
"bir sürüm yok."
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "%s tercihler dosyasında geçersiz kayıt, Paket başlığı yok"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "İğne türü %s anlaşılamadı"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "İğne için öncelik belirlenmedi (ya da sıfır)"
@@ -3080,16 +3025,20 @@ msgstr "Kaynak önbelleği kaydedilirken GÇ Hatası"
msgid "rename failed, %s (%s -> %s)."
msgstr "yeniden adlandırma başarısız, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5 toplamı eşleşmiyor"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Sağlama toplamları eşleşmiyor"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Boyutlar eÅŸleÅŸmiyor"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Geçersiz işlem: %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3098,17 +3047,17 @@ msgstr ""
"'Release' dosyasında olması beklenilen '%s' girdisi bulunamadı (sources.list "
"dosyasındaki girdi ya da satır hatalı)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "'Release' dosyasında '%s' için uygun bir sağlama toplamı bulunamadı"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
"Aşağıdaki anahtar kimlikleri için kullanılır hiçbir genel anahtar yok:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3117,12 +3066,12 @@ msgstr ""
"%s konumundaki 'Release' dosyasının vâdesi dolmuş (%s önce). Bu deponun "
"güncelleştirmeleri uygulanmayacak."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Dağıtım çakışması: %s (beklenen %s ama eldeki %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3132,12 +3081,12 @@ msgstr ""
"indeks dosyaları kullanılacak. GPG hatası: %s:%s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "GPG hatası: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3146,31 +3095,23 @@ msgstr ""
"%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi elle "
"düzeltmeniz gerektiği anlamına gelebilir. (eksik mimariden dolayı)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi elle "
-"düzeltmeniz gerektiği anlamına gelebilir."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "'%2$s' paketinin '%1$s' sürümü hiçbir kaynakta bulunamadı"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr "Paket indeks dosyaları bozuk. %s paketinin 'Filename:' alanı yok."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "Boyutlar eÅŸleÅŸmiyor"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "'Release' dosyası (%s) ayrıştırılamadı"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "'Release' dosyası %s içinde hiç bölüm yok"
@@ -3315,32 +3256,32 @@ msgstr "%s için kimlik doğrulama kaydı bulunamadı."
msgid "Hash mismatch for: %s"
msgstr "Sağlama yapılamadı: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "'%s' görevi bulunamadı"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "'%s' paketi tamamen sanal olduğu için sürümü seçilemiyor"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3349,17 +3290,17 @@ msgstr ""
"'%s' paketi kurulu olmadığı ve aday sürüme sahip olmadığı için her ikisi de "
"seçilemiyor"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr "'%s' paketi sanal olduğu için en yeni sürümü seçilemiyor"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr "'%s' paketinin aday sürümü olmadığı için aday sürüm seçilemiyor"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr "'%s' paketi kurulu olmadığı için kurulu sürüm seçilemiyor"
@@ -3384,111 +3325,132 @@ msgstr "Harici çözücü düzgün bir hata iletisi göstermeden başarısız ol
msgid "Execute external solver"
msgstr "Harici çözücüyü çalıştır"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "dpkg çalıştırılıyor"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Bazı indeks dosyaları indirilemedi. Bu dosyalar yok sayıldılar ya da önceki "
+"sürümleri kullanıldı."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "%s kuruluyor"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "%s yapılandırılıyor"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "%s kaldırılıyor"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "%s tamamen kaldırılıyor"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "%s paketinin kaybolduÄŸu not ediliyor"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Kurulum sonrası tetikleyicisi %s çalıştırılıyor"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "'%s' dizini bulunamadı"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "'%s' dosyası açılamadı"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "%s hazırlanıyor"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "%s paketi açılıyor"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "%s paketini yapılandırmaya hazırlanılıyor"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "%s kuruldu"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "%s paketinin kaldırılmasına hazırlanılıyor"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "%s kaldırıldı"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "%s paketinin tamamen kaldırılmasına hazırlanılıyor"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "%s tamamen kaldırıldı"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "%s dosyasına yazılamıyor"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Günlük yazılamadı, openpty() başarısız oldu (/dev/pts bağlanmadı mı?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "dpkg çalıştırılıyor"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "İşlem yarıda kesildi"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
"En fazla rapor miktarına (MaxReports) ulaşıldığı için apport raporu yazılmadı"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "bağımlılık sorunları - yapılandırılmamış durumda bırakılıyor"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3496,14 +3458,14 @@ msgstr ""
"Apport raporu yazılmadı çünkü hata iletisi bu durumun bir önceki hatadan "
"kaynaklanan bir hata olduÄŸunu belirtiyor."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
"Hata iletisi diskin dolu olduğunu belirttiği için apport raporu yazılamadı"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3511,7 +3473,15 @@ msgstr ""
"Hata iletisi bir bellek yetersizliği hatasına işaret ettiği için apport "
"raporu yazılamadı"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Hata iletisi diskin dolu olduğunu belirttiği için apport raporu yazılamadı"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3545,5 +3515,94 @@ msgstr ""
msgid "Not locked"
msgstr "KilitlenmemiÅŸ"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Bilgi, '%2$s' görevi için '%1$s' seçiliyor\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Bilgi, '%2$s' düzenli ifadesi için '%1$s' seçiliyor\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "%s paketi sanal bir pakettir, bu paketi saÄŸlayan:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Aday sürüm değil]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Kurmak için adaylardan birini açıkça seçmelisiniz."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "%s paketi mevcut değil, ancak başka paket içerisinden işaret edilmiş.\n"
+#~ "Bu durum bu paketin kayıp, eskidiği için bırakılmış, ya da başka bir\n"
+#~ "yazılım kaynağında bulunduğu anlamına gelebilir.\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Yine de aşağıdaki paketler onun yerine geçecek:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "'%s' paketi için kurulum adayı yok"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "'%s' gibi sanal paketler kaldırılamaz\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "'%s' kurulu değildi, dolayısıyla kaldırılmadı. Bunu mu demek istediniz: "
+#~ "'%s'?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "'%s' kurulu değildi, dolayısıyla kaldırılmadı.\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Bilgi, '%2$s' yerine '%1$s' seçiliyor\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "%s atlanıyor, bu paket zaten kurulu ve yükseltme seçilmemiş.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "%s atlanıyor, bu paket kurulu değil ve sadece yükseltmeler isteniyor.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr ""
+#~ "%s paketinin yeniden kurulumu mümkün değil, çünkü paket internetten "
+#~ "indirilemedi.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s zaten en yeni sürümde.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "'%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "'%4$s' nedeniyle '%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Mevcut olmayan hedef '%s' sürüm '%s' paketini ihmal et"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "Ä°ndiriliyor %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Bu dosya geçerli bir DEB arşivi değil, '%s', '%s' ya da '%s' üyesi yok"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5 toplamı eşleşmiyor"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi "
+#~ "elle düzeltmeniz gerektiği anlamına gelebilir."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "Günlük yazılamadı, openpty() başarısız oldu (/dev/pts bağlanmadı mı?)\n"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "%s dosyası açıkimzalı bir iletiyle başlamıyor"
diff --git a/po/uk.po b/po/uk.po
index dbb764c4c..c9179ac28 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt-all\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2012-09-25 20:19+0300\n"
"Last-Translator: A. Bondarenko <artem.brz@gmail.com>\n"
"Language-Team: УкраїнÑька <uk@li.org>\n"
@@ -24,153 +24,155 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Пакунок %s верÑÑ–Ñ— %s має незадоволену залежніÑÑ‚ÑŒ:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Ð’Ñього імен пакунків: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Ð’Ñього Ñтруктур пакунків: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Ðормальних пакунків: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Цілком віртуальних пакунків: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Окремих віртуальних пакунків: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Змішаних віртуальних пакунків: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " ВідÑутні: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Ð’Ñього унікальних верÑій: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Ð’Ñього унікальних опиÑів: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Ð’Ñього залежноÑтей: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Ð’Ñього відноÑин ВерÑÑ–Ñ/Файл: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Ð’Ñього відноÑин ОпиÑ/Файл: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
#, fuzzy
msgid "Total Provides mappings: "
msgstr "Ð’Ñього карт 'Provides': "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Ð’Ñього відфільтрованих (globbed) Ñ€Ñдків: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
#, fuzzy
msgid "Total dependency version space: "
msgstr "Ð’Ñього інформації про залежноÑÑ‚Ñ–: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
#, fuzzy
msgid "Total slack space: "
msgstr "Порожнього міÑÑ†Ñ Ð² кеші: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Загальний проÑÑ‚Ñ–Ñ€ полічений длÑ: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Перелік пакунків %s розÑинхронізований."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Ðе знайдено жодного пакунка"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Ви повинні задати не менше одного шаблону пошуку"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr "Ð¦Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° Ñ” заÑтарілою. Будь-лаÑка викориÑтовуйте 'apt-mark showauto'"
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Ðе можу знайти пакунок %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Переліки пакунків:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "Кеш не Ñинхронізований, неможливо знайти поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð½Ð° перелік пакунків"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "ЗафікÑовані пакунки:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(не знайдено)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Ð’Ñтановлено: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Кандидат: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(відÑутній)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " ФікÑатор(pin) пакунка: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Ð¢Ð°Ð±Ð»Ð¸Ñ†Ñ Ð²ÐµÑ€Ñій:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s Ð´Ð»Ñ %s Ñкомпільовано %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -241,35 +243,35 @@ msgstr ""
"ДивітьÑÑ Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð¸Ñ†Ñ– на man-Ñторінках apt-cache(8) Ñ– apt.conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "Задайте назву Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ ДиÑка, наприклад 'Debian 5.0.3 Disk 1'"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Будь-лаÑка, вÑтавте ДиÑк у приÑтрій Ñ– натиÑніть Enter"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Ðе вдалоÑÑ Ð¿Ñ–Ð´'єднати '%s' до '%s'"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "Повторіть цей Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð´Ð»Ñ Ñ€ÐµÑˆÑ‚Ð¸ CD з вашого набору."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Ðргументи не в парах"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -297,568 +299,32 @@ msgstr ""
" -Ñ=? Читати зазначений конфігураційний файл.\n"
" -o=? Ð’Ñтановити умовну опцію, наприклад, -o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr ""
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Помилка компілÑції регулÑрного виразу - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Пакунки, що мають незадоволені залежноÑÑ‚Ñ–:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "але %s вже вÑтановлений"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "але %s буде вÑтановлений"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "але він не може бути вÑтановлений"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "але це віртуальний пакунок"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "але він не вÑтановлений"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "але він не буде вÑтановлений"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " чи"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "ÐОВІ пакунки, Ñкі будуть вÑтановлені:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Пакунки, Ñкі будуть ВИДÐЛЕÐІ:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Пакунки, Ñкі залишені в незмінному Ñтані:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Пакунки, Ñкі будуть ОÐОВЛЕÐІ:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Пакунки, Ñкі будуть замінені на СТÐРІШІ верÑÑ–Ñ—:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Пакунки, Ñкі мали б залишитиÑÑ Ð±ÐµÐ· змін, але будуть замінені:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (внаÑлідок %s) "
-
-#: cmdline/apt-get.cc:600
-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"
-"ÐЕ РОБІТЬ цього, Ñкщо ви ÐЕ уÑвлÑєте Ñобі вÑÑ– можливі наÑлідки!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "оновлено %lu, вÑтановлено %lu нових, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu перевÑтановлено, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu замінено на Ñтаріші верÑÑ–Ñ—, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu відмічено Ð´Ð»Ñ Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ñ– %lu не оновлено.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "не вÑтановлено(видалено) до ÐºÑ–Ð½Ñ†Ñ %lu пакунків.\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Помітьте, вибираєтьÑÑ '%s' Ð´Ð»Ñ Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ '%s'\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "Помітьте, вибираєтьÑÑ '%s' Ð´Ð»Ñ Ñ€ÐµÐ³ÑƒÐ»Ñрного виразу '%s'\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Пакунок %s - віртуальний, його функції надаютьÑÑ Ð¿Ð°ÐºÑƒÐ½ÐºÐ°Ð¼Ð¸:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [Ð’Ñтановлено]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [ВерÑÑ–Ñ Ð½Ðµ кандидат]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Ви повинні Ñвно вказати, Ñкий Ñаме ви хочете вÑтановити."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Пакунок %s недоÑтупний, але згадуєтьÑÑ Ñƒ переліку залежноÑтей іншого "
-"пакунка.\n"
-"Це може означати, що пакунок відÑутній, заÑтарів, або доÑтупний з джерел, не "
-"згаданих в sources.list\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Однак наÑтупні пакунки замінÑÑŽÑ‚ÑŒ його:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "Ð”Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÐ° '%s' не знайдено кандидатів на вÑтановленнÑ"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Віртуальні пакунки Ñк '%s' не можуть бути видаленими\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr ""
-"Пакунок '%s' не вÑтановлений, тому не видалений. Можливо ви мали на увазі "
-"'%s'?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Пакунок '%s' не вÑтановлений, тому не видалений\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Помітьте, вибираєтьÑÑ '%s' заміÑÑ‚ÑŒ '%s'\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"ПропуÑкаєтьÑÑ %s, пакунок вже вÑтановлений Ñ– Ð¾Ð¿Ñ†Ñ–Ñ ÐžÐОВИТИ не вÑтановлена.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"ПропуÑкаєтьÑÑ %s, пакунок не вÑтановлений, а запитуютьÑÑ Ñ‚Ñ–Ð»ÑŒÐºÐ¸ оновленнÑ.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "ПеревÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ %s неможливе, бо він не може бути завантаженим.\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "Вже вÑтановлена найновіша верÑÑ–Ñ %s.\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s позначений Ñк вÑтановлений вручну.\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "Обрана верÑÑ–Ñ '%s' (%s) Ð´Ð»Ñ '%s'\n"
-
-#: cmdline/apt-get.cc:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Обрана верÑÑ–Ñ '%s' (%s) Ð´Ð»Ñ '%s' через '%s'\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Ð’Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ð·Ð°Ð»ÐµÐ¶Ð½Ð¾Ñтей..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " невдача."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Ðеможливо Ñкоригувати залежноÑÑ‚Ñ–"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Ðеможливо мінімізувати набір оновлень"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Виконано"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr ""
-"Ð”Ð»Ñ Ð²Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ñ†Ð¸Ñ… помилок ви можете ÑкориÑтатиÑÑ 'apt-get -f install'."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "Ðезадоволені залежноÑÑ‚Ñ–. Спробуйте викориÑтати -f."
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "УВÐГÐ: ÐаÑтупні пакунки неможливо автентифікувати!"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Ðвтентифікаційне Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð¶ÐµÐ½Ð½Ñ Ð½Ðµ прийнÑто до уваги.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Ð’Ñтановити ці пакунки без перевірки?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "ДеÑкі пакунки неможливо автентифікувати"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "ВиÑвлено проблеми, а Ð¾Ð¿Ñ†Ñ–Ñ -y була викориÑтана без --force-yes"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-"Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, InstallPackages була викликана з непрацездатними "
-"пакунками!"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Ðеобхідно видалити пакунки, але Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð·Ð°Ð±Ð¾Ñ€Ð¾Ð½ÐµÐ½Ðµ."
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, Ordering не завершилаÑÑ"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "Дивно.. РозбіжніÑÑ‚ÑŒ розмірів, напишіть на apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Ðеобхідно завантажити %sB/%sB архівів.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Ðеобхідно завантажити %sB архівів.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr ""
-"ПіÑÐ»Ñ Ñ†Ñ–Ñ”Ñ— операції об'єм зайнÑтого диÑкового проÑтору зроÑте на %sB.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr ""
-"ПіÑÐ»Ñ Ñ†Ñ–Ñ”Ñ— операції об'єм зайнÑтого диÑкового проÑтору зменшитьÑÑ Ð½Ð° %sB.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð¸Ñ‚Ð¸ кількіÑÑ‚ÑŒ вільного міÑÑ†Ñ Ð² %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "ÐедоÑтатньо вільного міÑÑ†Ñ Ð² %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"Вказано Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñ‚Ñ–Ð»ÑŒÐºÐ¸ тривіальних операцій, але це не тривіальна операціÑ."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Так, робити, Ñк Ñ Ñкажу!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Те, що ви хочете зробити, може мати небажані наÑлідки.\n"
-"Щоб продовжити, введіть фразу: '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Перервано."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Бажаєте продовжити?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Ðе вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸ %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "ДеÑкі файли не вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¾ в режимі \"тільки завантаженнÑ\""
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Ðеможливо завантажити деÑкі архіви, імовірно треба виконати apt-get update "
-"або Ñпробувати повторити запуÑк з ключем --fix-missing?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing Ñ– зміна ноÑÑ–Ñ Ð² даний момент не підтримуєтьÑÑ"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Ðеможливо виправити втрачені пакунки."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "ПерериваєтьÑÑ Ð²ÑтановленнÑ."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Вказаний пакунок зник з вашої ÑиÑтеми, так Ñк\n"
-"уÑÑ– файли були перезапиÑані іншими пакунками:"
-msgstr[1] ""
-"Вказані пакунки зникли з вашої ÑиÑтеми, так Ñк\n"
-"уÑÑ– файли були перезапиÑані іншими пакунками:"
-msgstr[2] ""
-"Вказані пакунки зникли з вашої ÑиÑтеми, так Ñк\n"
-"уÑÑ– файли були перезапиÑані іншими пакунками:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Увага: це зроблено автоматично Ñ– умиÑно dpkg'ем."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Ігнорувати недоÑтупний випуÑк '%s' пакунку '%s'"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Обираю '%s' Ñк пакунок вихідних текÑтів, заміÑÑ‚ÑŒ '%s'\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Ігнорувати недоÑтупну верÑÑ–ÑŽ '%s' пакунку '%s'"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Команді update не потрібні аргументи"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr "Ðам не дозволено видалÑти, неможливо запуÑтити AutoRemover"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Хм, виглÑдає так, що AutoRemover помилково знищив щоÑÑŒ потрібне.\n"
-"Будь-лаÑка відправте багрепорт щодо apt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "ÐаÑтупна Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¼Ð¾Ð¶Ð»Ð¸Ð²Ð¾ допоможе Вам виправити Ñитуацію:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ ÐŸÐ¾Ð¼Ð¸Ð»ÐºÐ°, AutoRemover щоÑÑŒ поламав"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"ÐаÑтупний пакунок був вÑтановлений автоматично Ñ– більше не потрібен:"
-msgstr[1] "ÐаÑтупні пакунки були вÑтановлені автоматично Ñ– більше не потрібні:"
-msgstr[2] "ÐаÑтупні пакунки були вÑтановлені автоматично Ñ– більше не потрібні:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "%lu пакунок був вÑтановлений автоматично Ñ– більше не потрібен.\n"
-msgstr[1] ""
-"%lu пакунка було вÑтановлено автоматично Ñ– вони більше не потрібні.\n"
-msgstr[2] ""
-"%lu пакунків було вÑтановлено автоматично Ñ– вони більше не потрібні.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "ВикориÑтовуйте 'apt-get autoremove' щоб видалити його."
-msgstr[1] "ВикориÑтовуйте 'apt-get autoremove' щоб видалити Ñ—Ñ…."
-msgstr[2] "ВикориÑтовуйте 'apt-get autoremove' щоб видалити Ñ—Ñ…."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, AllUpgrade щоÑÑŒ поламав"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr ""
-"Можливо, Ð´Ð»Ñ Ð²Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ñ†Ð¸Ñ… помилок Ви захочете ÑкориÑтатиÑÑ 'apt-get -f "
-"install':"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Ðезадоволені залежноÑÑ‚Ñ–. Спробуйте виконати 'apt-get -f install', не "
-"вказуючи назв пакунків (або вкажіть рішеннÑ)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"ДеÑкі пакунки неможливо вÑтановити. Можливо, Ви проÑите неможливого,\n"
-"або ж викориÑтовуєте неÑтабільний диÑтрибутив, Ñ– запитані Вами пакунки\n"
-"ще не Ñтворені або були вилучені з Incoming."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Зламані пакунки"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "Будуть вÑтановлені наÑтупні додаткові пакунки:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "Пропоновані пакунки:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Рекомендовані пакунки:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Ðе можу знайти пакунок %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s позначений Ñк вÑтановлений вручну.\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s позначений Ñк автоматично вÑтановлений.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -866,48 +332,26 @@ msgstr ""
"Ð¦Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° заÑтаріла. Будь-лаÑка, викориÑтовуйте заміÑÑ‚ÑŒ неї 'apt-mark auto' "
"Ñ– 'apt-mark manual'."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "ОбчиÑÐ»ÐµÐ½Ð½Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½ÑŒ... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Ðевдача"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Виконано"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, вирішувач проблем щоÑÑŒ поламав"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Ðеможливо заблокувати директорію Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "Ðеможливо знайти джерело Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð²ÐµÑ€ÑÑ–Ñ— '%s' Ð´Ð»Ñ '%s'"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr ""
"Вкажіть Ñк мінімум один пакунок, Ð´Ð»Ñ Ñкого необхідно завантажити вихідні "
"текÑти"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Ðеможливо знайти пакунок з вихідними текÑтами Ð´Ð»Ñ %s"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -916,7 +360,7 @@ msgstr ""
"УВÐГÐ: ÐŸÐ°ÐºÑƒÐ²Ð°Ð½Ð½Ñ '%s' відбуваєтьÑÑ Ð² ÑиÑтемі контролю верÑій '%s' на:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -927,71 +371,81 @@ msgstr ""
"bzr branch %s\n"
"щоб отримати найновіші (потенційно не випущені) Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð´Ð¾ пакунку.\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "ПропуÑкаємо вже завантажений файл '%s'\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð¸Ñ‚Ð¸ кількіÑÑ‚ÑŒ вільного міÑÑ†Ñ Ð² %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "ÐедоÑтатньо міÑÑ†Ñ Ð² %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Ðеобхідно завантажити %sB/%sB з архівів вихідних текÑтів.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Потрібно завантажити %sB архівів з вихідними текÑтами.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð²Ð¸Ñ…Ñ–Ð´Ð½Ð¸Ñ… текÑтів %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "ДеÑкі архіви не вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¾ в режимі \"тільки завантаженнÑ\""
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr ""
"ПропуÑкаєтьÑÑ Ñ€Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¸Ñ…Ñ–Ð´Ð½Ð¸Ñ… текÑтів, тому що вже розпаковано в %s\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Команда Ñ€Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ '%s' завершилаÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Перевірте, чи вÑтановлений пакунок 'dpkg-dev'.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Команда побудови '%s' закінчилаÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Породжений Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð·Ð°Ð²ÐµÑ€ÑˆÐ¸Ð²ÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"Ð”Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ñ–Ñ€ÐºÐ¸ залежноÑтей Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸ необхідно вказати Ñк мінімум один "
"пакунок"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -1000,17 +454,17 @@ msgstr ""
"ВідÑÑƒÑ‚Ð½Ñ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ архітектуру Ð´Ð»Ñ %s. ДивиÑÑŒ apt.conf(5) APT::"
"Ðрхітектури Ð´Ð»Ñ Ð½Ð°Ð»Ð°Ñ‰Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Ðеможливо одержати інформацію про залежноÑÑ‚Ñ– Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸ %s"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s не має залежноÑтей Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸.\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1019,7 +473,7 @@ msgstr ""
"ЗалежніÑÑ‚ÑŒ типу %s Ð´Ð»Ñ %s не може бути задоволена, бо %s не Ñ” дозволеним на "
"'%s' пакунках"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1027,14 +481,14 @@ msgid ""
msgstr ""
"ЗалежніÑÑ‚ÑŒ типу %s Ð´Ð»Ñ %s не може бути задоволена, бо пакунок %s не знайдено"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"Ðе вдалоÑÑ Ð·Ð°Ð´Ð¾Ð²Ð¾Ð»ÑŒÐ½Ð¸Ñ‚Ð¸ залежніÑÑ‚ÑŒ типу %s Ð´Ð»Ñ %s: Ð’Ñтановлений пакунок %s "
"новіше, аніж треба"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1043,7 +497,7 @@ msgstr ""
"ЗалежніÑÑ‚ÑŒ типу %s Ð´Ð»Ñ %s не може бути задоволена, бо верÑÑ–Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑƒ-"
"кандидата %s не задовольнÑÑ” умови по верÑÑ–Ñм"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1052,30 +506,30 @@ msgstr ""
"ЗалежніÑÑ‚ÑŒ типу %s Ð´Ð»Ñ %s не може бути задоволена, бо немає пакунку-"
"кандидата %s потрібної верÑÑ–Ñ—"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Ðеможливо задовольнити залежніÑÑ‚ÑŒ типу %s Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÐ° %s: %s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "ЗалежноÑÑ‚Ñ– Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸ %s не можуть бути задоволені."
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "Обробка залежноÑтей Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸ закінчилаÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Журнал змін Ð´Ð»Ñ %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Підтримувані модулі:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1167,102 +621,53 @@ msgstr ""
"міÑÑ‚ÑÑ‚ÑŒ більше інформації Ñ– опцій.\n"
" Цей APT має Супер-Коров'Ñчу Силу.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"УВÐГÐ: Це тільки ÑимулÑціÑ!\n"
-" apt-get потребує права root Ð´Ð»Ñ Ñ€ÐµÐ°Ð»ÑŒÐ½Ð¾Ð³Ð¾ запуÑку.\n"
-" Також не забувайте, що Ð±Ð»Ð¾ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¸Ð¼Ð¸ÐºÐ°Ñ”Ñ‚ÑŒÑÑ,\n"
-" тому не очікуйте на відповідніÑÑ‚ÑŒ поточній реальній Ñитуації!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "В кеші "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Отр:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Ігн "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Пом "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Отримано %sB за %sB (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Йде робота]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Зміна ноÑÑ–Ñ: вÑтавте диÑк з міткою\n"
-" '%s'\n"
-"у приÑтрій '%s' Ñ– натиÑніть Enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "%s не може бути позначений, тому що він не вÑтановлений.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s вже був позначений, Ñк вÑтановлений вручну.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s вже був позначений, Ñк автоматично вÑтановлений.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s вже був зафікÑований.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s вже був незафікÑований.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Очікував на %s, але його там не було"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s зафікÑовано.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "ФікÑацію Ð´Ð»Ñ %s відмінено.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr "Ðе вдалоÑÑ Ð²Ð¸ÐºÐ¾Ð½Ð°Ñ‚Ð¸ dpkg. Ви root?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1303,6 +708,23 @@ msgstr ""
" -o=? Ð’Ñтановити умовну опцію конфігурації, наприклад, -o dir::cache=/tmp\n"
"Ð”Ð»Ñ Ð´Ð¾ÐºÐ»Ð°Ð´Ð½Ð¾Ñ— інформації дивітьÑÑ ÐºÐµÑ€Ñ–Ð²Ð½Ð¸Ñ†Ñ‚Ð²Ð° Ð´Ð»Ñ apt-mark(8) Ñ– apt.conf(5)."
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1402,8 +824,8 @@ msgstr "Ð§Ð°Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð²Ð¸Ñ‡ÐµÑ€Ð¿Ð°Ð²ÑÑ"
msgid "Server closed the connection"
msgstr "Сервер закрив з'єднаннÑ"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Помилка зчитуваннÑ"
@@ -1416,8 +838,8 @@ msgid "Protocol corruption"
msgstr "Спотворений протокол"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Помилка запиÑу"
@@ -1429,6 +851,10 @@ msgstr "Ðеможливо Ñтворити Ñокет (socket)"
msgid "Could not connect data socket, connection timed out"
msgstr "Ðеможливо під'єднати Ñокет (socket) з даними, Ñ‡Ð°Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð²Ð¸Ñ‡ÐµÑ€Ð¿Ð°Ð²ÑÑ"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Ðевдача"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Ðеможливо під'єднати паÑивний Ñокет (passive socket)."
@@ -1471,7 +897,7 @@ msgstr "Ð§Ð°Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· Ñокетом даних вичерпавÑ
msgid "Unable to accept connection"
msgstr "Ðеможливо прийнÑти з'єднаннÑ"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Проблема Ñ…ÐµÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ð°"
@@ -1603,81 +1029,613 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "ПуÑÑ‚Ñ– файли не можуть бути правильними архівами"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Помилка запиÑу у файл"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Помилка Ð·Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð· Ñервера. Віддалена Ñторона закрила з'єднаннÑ"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Помилка Ð·Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð· Ñервера"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Помилка запиÑу у файл"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Вибір проваливÑÑ"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Ð§Ð°Ñ Ð¾Ñ‡Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð²Ð¸Ð¹ÑˆÐ¾Ð²"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Помилка запиÑу у вихідний файл"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "ÐžÑ‡Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ð° заголовки"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Ðевірний Ñ€Ñдок заголовку"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "HTTP Ñервер відіÑлав невірний заголовок 'reply'"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "HTTP Ñервер відіÑлав невірний заголовок 'Content-Length'"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "HTTP Ñервер відіÑлав невірний заголовок 'Content-Range'"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Цей HTTP Ñервер має поламану підтримку 'range'"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Ðевідомий формат дати"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Вибір проваливÑÑ"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Погана заголовкова інформаціÑ"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Ð§Ð°Ñ Ð¾Ñ‡Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð²Ð¸Ð¹ÑˆÐ¾Ð²"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "З'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð½Ðµ вдалоÑÑ"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Помилка запиÑу у вихідний файл"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Помилка запиÑу у файл"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Помилка запиÑу у файл"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+"Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, InstallPackages була викликана з непрацездатними "
+"пакунками!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Помилка Ð·Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð· Ñервера. Віддалена Ñторона закрила з'єднаннÑ"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Ðеобхідно видалити пакунки, але Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð·Ð°Ð±Ð¾Ñ€Ð¾Ð½ÐµÐ½Ðµ."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Помилка Ð·Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð· Ñервера"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, Ordering не завершилаÑÑ"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Погана заголовкова інформаціÑ"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "Дивно.. РозбіжніÑÑ‚ÑŒ розмірів, напишіть на apt@packages.debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "З'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð½Ðµ вдалоÑÑ"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Ðеобхідно завантажити %sB/%sB архівів.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Ðеобхідно завантажити %sB архівів.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr ""
+"ПіÑÐ»Ñ Ñ†Ñ–Ñ”Ñ— операції об'єм зайнÑтого диÑкового проÑтору зроÑте на %sB.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr ""
+"ПіÑÐ»Ñ Ñ†Ñ–Ñ”Ñ— операції об'єм зайнÑтого диÑкового проÑтору зменшитьÑÑ Ð½Ð° %sB.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "ÐедоÑтатньо вільного міÑÑ†Ñ Ð² %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "ВиÑвлено проблеми, а Ð¾Ð¿Ñ†Ñ–Ñ -y була викориÑтана без --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"Вказано Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñ‚Ñ–Ð»ÑŒÐºÐ¸ тривіальних операцій, але це не тривіальна операціÑ."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Так, робити, Ñк Ñ Ñкажу!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Те, що ви хочете зробити, може мати небажані наÑлідки.\n"
+"Щоб продовжити, введіть фразу: '%s'\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Перервано."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Бажаєте продовжити?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "ДеÑкі файли не вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Ðеможливо завантажити деÑкі архіви, імовірно треба виконати apt-get update "
+"або Ñпробувати повторити запуÑк з ключем --fix-missing?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing Ñ– зміна ноÑÑ–Ñ Ð² даний момент не підтримуєтьÑÑ"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Ðеможливо виправити втрачені пакунки."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "ПерериваєтьÑÑ Ð²ÑтановленнÑ."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Вказаний пакунок зник з вашої ÑиÑтеми, так Ñк\n"
+"уÑÑ– файли були перезапиÑані іншими пакунками:"
+msgstr[1] ""
+"Вказані пакунки зникли з вашої ÑиÑтеми, так Ñк\n"
+"уÑÑ– файли були перезапиÑані іншими пакунками:"
+msgstr[2] ""
+"Вказані пакунки зникли з вашої ÑиÑтеми, так Ñк\n"
+"уÑÑ– файли були перезапиÑані іншими пакунками:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Увага: це зроблено автоматично Ñ– умиÑно dpkg'ем."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Ðам не дозволено видалÑти, неможливо запуÑтити AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Хм, виглÑдає так, що AutoRemover помилково знищив щоÑÑŒ потрібне.\n"
+"Будь-лаÑка відправте багрепорт щодо apt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "ÐаÑтупна Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¼Ð¾Ð¶Ð»Ð¸Ð²Ð¾ допоможе Вам виправити Ñитуацію:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ ÐŸÐ¾Ð¼Ð¸Ð»ÐºÐ°, AutoRemover щоÑÑŒ поламав"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"ÐаÑтупний пакунок був вÑтановлений автоматично Ñ– більше не потрібен:"
+msgstr[1] "ÐаÑтупні пакунки були вÑтановлені автоматично Ñ– більше не потрібні:"
+msgstr[2] "ÐаÑтупні пакунки були вÑтановлені автоматично Ñ– більше не потрібні:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "%lu пакунок був вÑтановлений автоматично Ñ– більше не потрібен.\n"
+msgstr[1] ""
+"%lu пакунка було вÑтановлено автоматично Ñ– вони більше не потрібні.\n"
+msgstr[2] ""
+"%lu пакунків було вÑтановлено автоматично Ñ– вони більше не потрібні.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "ВикориÑтовуйте 'apt-get autoremove' щоб видалити його."
+msgstr[1] "ВикориÑтовуйте 'apt-get autoremove' щоб видалити Ñ—Ñ…."
+msgstr[2] "ВикориÑтовуйте 'apt-get autoremove' щоб видалити Ñ—Ñ…."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr ""
+"Можливо, Ð´Ð»Ñ Ð²Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ñ†Ð¸Ñ… помилок Ви захочете ÑкориÑтатиÑÑ 'apt-get -f "
+"install':"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Ðезадоволені залежноÑÑ‚Ñ–. Спробуйте виконати 'apt-get -f install', не "
+"вказуючи назв пакунків (або вкажіть рішеннÑ)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"ДеÑкі пакунки неможливо вÑтановити. Можливо, Ви проÑите неможливого,\n"
+"або ж викориÑтовуєте неÑтабільний диÑтрибутив, Ñ– запитані Вами пакунки\n"
+"ще не Ñтворені або були вилучені з Incoming."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Зламані пакунки"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Будуть вÑтановлені наÑтупні додаткові пакунки:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Пропоновані пакунки:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Рекомендовані пакунки:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "УВÐГÐ: ÐаÑтупні пакунки неможливо автентифікувати!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Ðвтентифікаційне Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð¶ÐµÐ½Ð½Ñ Ð½Ðµ прийнÑто до уваги.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "ДеÑкі пакунки неможливо автентифікувати"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Ð’Ñтановити ці пакунки без перевірки?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Ðе вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸ %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Ð’Ñтановлено]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Ð’Ñтановлено]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Ð’Ñтановлено]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Пакунки, що мають незадоволені залежноÑÑ‚Ñ–:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "але %s вже вÑтановлений"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "але %s буде вÑтановлений"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "але він не може бути вÑтановлений"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "але це віртуальний пакунок"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "але він не вÑтановлений"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "але він не буде вÑтановлений"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " чи"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "ÐОВІ пакунки, Ñкі будуть вÑтановлені:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Пакунки, Ñкі будуть ВИДÐЛЕÐІ:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Пакунки, Ñкі залишені в незмінному Ñтані:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Пакунки, Ñкі будуть ОÐОВЛЕÐІ:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Пакунки, Ñкі будуть замінені на СТÐРІШІ верÑÑ–Ñ—:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Пакунки, Ñкі мали б залишитиÑÑ Ð±ÐµÐ· змін, але будуть замінені:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (внаÑлідок %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"УВÐГÐ: ÐаÑтупні важливі пакунки будуть вилучені.\n"
+"ÐЕ РОБІТЬ цього, Ñкщо ви ÐЕ уÑвлÑєте Ñобі вÑÑ– можливі наÑлідки!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "оновлено %lu, вÑтановлено %lu нових, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu перевÑтановлено, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu замінено на Ñтаріші верÑÑ–Ñ—, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu відмічено Ð´Ð»Ñ Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ñ– %lu не оновлено.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "не вÑтановлено(видалено) до ÐºÑ–Ð½Ñ†Ñ %lu пакунків.\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr ""
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Помилка компілÑції регулÑрного виразу - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Ð’Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ð·Ð°Ð»ÐµÐ¶Ð½Ð¾Ñтей..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " невдача."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Ðеможливо Ñкоригувати залежноÑÑ‚Ñ–"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Ðеможливо мінімізувати набір оновлень"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Виконано"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr ""
+"Ð”Ð»Ñ Ð²Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ñ†Ð¸Ñ… помилок ви можете ÑкориÑтатиÑÑ 'apt-get -f install'."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "Ðезадоволені залежноÑÑ‚Ñ–. Спробуйте викориÑтати -f."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Команді update не потрібні аргументи"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "ОбчиÑÐ»ÐµÐ½Ð½Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½ÑŒ... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, AllUpgrade щоÑÑŒ поламав"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Виконано"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"УВÐГÐ: Це тільки ÑимулÑціÑ!\n"
+" apt-get потребує права root Ð´Ð»Ñ Ñ€ÐµÐ°Ð»ÑŒÐ½Ð¾Ð³Ð¾ запуÑку.\n"
+" Також не забувайте, що Ð±Ð»Ð¾ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¸Ð¼Ð¸ÐºÐ°Ñ”Ñ‚ÑŒÑÑ,\n"
+" тому не очікуйте на відповідніÑÑ‚ÑŒ поточній реальній Ñитуації!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Ðе вдалоÑÑ Ð¿ÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ñ‚Ð¸ %s на %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "В кеші "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Отр:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Ігн "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Пом "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Отримано %sB за %sB (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Йде робота]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Зміна ноÑÑ–Ñ: вÑтавте диÑк з міткою\n"
+" '%s'\n"
+"у приÑтрій '%s' Ñ– натиÑніть Enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Ðеможливо прочитати %s"
@@ -1740,35 +1698,35 @@ msgstr "Ðе вдалоÑÑ Ñтворити IPC канал Ð´Ð»Ñ Ð¿Ñ–Ð´Ð¿Ñ€Ð¾Ñ
msgid "Connection closed prematurely"
msgstr "З'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¾ передчаÑно"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Ðеправильне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð° умовчаннÑм!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Ð”Ð»Ñ Ð¿Ñ€Ð¾Ð´Ð¾Ð²Ð¶ÐµÐ½Ð½Ñ Ð½Ð°Ñ‚Ð¸Ñніть Enter."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Чи хочете ви видалити вÑÑ– раніше завантажені .deb файли?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr ""
"Під Ñ‡Ð°Ñ Ñ€Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¸Ð½Ð¸ÐºÐ»Ð¸ ÑкіÑÑŒ помилки. Пакунки, Ñкі були вÑтановлені"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "будуть налаштовані. Це може призвеÑти до Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€ÐµÐ½Ð½Ñ Ð¿Ð¾Ð¼Ð¸Ð»Ð¾Ðº"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
"або Ð²Ð¸Ð½Ð¸ÐºÐ½ÐµÐ½Ð½Ñ Ð½Ð¾Ð²Ð¸Ñ… через незадоволені залежноÑÑ‚Ñ–. Це нормально,тільки "
"помилки"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -2028,36 +1986,36 @@ msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ поÑÐ¸Ð»Ð°Ð½Ð½Ñ (readlink) %s"
msgid "Failed to unlink %s"
msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ поÑÐ¸Ð»Ð°Ð½Ð½Ñ (unlink) %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Ðе вдалоÑÑ Ñтворити поÑÐ¸Ð»Ð°Ð½Ð½Ñ %s на %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Перевищено ліміт в %sB в DeLink.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Ðрхів не мав Ð¿Ð¾Ð»Ñ 'package'"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, fuzzy, c-format
msgid " %s has no override entry\n"
msgstr " ВідÑутній Ð·Ð°Ð¿Ð¸Ñ Ð¿Ñ€Ð¾ Ð¿ÐµÑ€ÐµÐ¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ (override) Ð´Ð»Ñ %s\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " пакунок %s ÑупроводжуєтьÑÑ %s, а не %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, fuzzy, c-format
msgid " %s has no source override entry\n"
msgstr " ВідÑутній Ð·Ð°Ð¿Ð¸Ñ Ð¿Ñ€Ð¾ Ð¿ÐµÑ€ÐµÐ¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²Ð¸Ñ…Ñ–Ð´Ð½Ð¸Ñ… текÑтів Ð´Ð»Ñ %s\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, fuzzy, c-format
msgid " %s has no binary override entry either\n"
msgstr " Крім того, відÑутній Ð·Ð°Ð¿Ð¸Ñ Ð¿Ñ€Ð¾ бінарне Ð¿ÐµÑ€ÐµÐ¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ %s\n"
@@ -2136,7 +2094,7 @@ msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ %s"
msgid "Failed to rename %s to %s"
msgstr "Ðе вдалоÑÑ Ð¿ÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ñ‚Ð¸ %s на %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2207,7 +2165,7 @@ msgstr "Пошкоджений архів"
msgid "Tar checksum failed, archive corrupted"
msgstr "Контрольна Ñума tar архіва невірна, архів пошкоджений"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Ðевідомий тип заголовку TAR - %u, член %s"
@@ -2335,22 +2293,17 @@ msgid "Unable to stat %s"
msgstr "Ðеможливо прочитати атрибути %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Ðевірний DEB архів, відÑутній член '%s'"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "Це невірний DEB архів, відÑутній член '%s', '%s' чи '%s'"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, не можу знайти Ñкладову чаÑтину %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Контрольний файл не можливо обробити"
@@ -2410,89 +2363,89 @@ msgstr ""
"кориÑтувачем."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%liг %liхв %liÑ"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%liхв %liÑ"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%liÑ"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Вибір %s не знайдено"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Ðерозпізнаваний тип абревіатури: '%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "ВідкриваєтьÑÑ ÐºÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ð¹Ð½Ð¸Ð¹ файл %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "СинтакÑична помилка %s:%u: Блок починаєтьÑÑ Ð±ÐµÐ· назви."
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "СинтакÑична помилка %s:%u: Ñпотворений тег"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "СинтакÑична помилка %s:%u: зайві Ñимволи піÑÐ»Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½Ð¸"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
"СинтакÑична помилка %s:%u: Директиви можуть бути виконані тільки на "
"найвищому рівні"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "СинтакÑична помилка %s:%u: Забагато вмонтованих (nested) включень"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "СинтакÑична помилка %s:%u: Включено звідÑи"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "СинтакÑична помилка %s:%u: Директива '%s' не підтримуєтьÑÑ"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"СинтакÑична помилка %s:%u: 'clear directive' потребує дерево налаштувань Ñк "
"аргумент"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "СинтакÑична помилка %s:%u: Зайве ÑÐ¼Ñ–Ñ‚Ñ‚Ñ Ð² кінці файла"
@@ -2517,49 +2470,49 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... Виконано"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Ðевідомий параметр командного Ñ€Ñдка '%c' [з %s]."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Ðезрозумілий параметр %s командного Ñ€Ñдка"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Параметр %s командного Ñ€Ñдка не Ñ” логічного типу 'boolean'"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Параметр %s потребує аргумента."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
"ÐžÐ¿Ñ†Ñ–Ñ %s: Ð¡Ð¿ÐµÑ†Ð¸Ñ„Ñ–ÐºÐ°Ñ†Ñ–Ñ Ð²Ð¸Ð¼Ð°Ð³Ð°Ñ”, щоб Ñ€Ñдки у конфігурації мали вираз =<val>."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Параметр %s потребує цілочиÑлений аргумент, але не '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Параметр '%s' є занадто довгим"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Ðезрозумілий вираз %s, Ñпробуйте true чи false."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Ðевірна Ð´Ñ–Ñ %s"
@@ -2573,121 +2526,121 @@ msgstr "Ðеможливо прочитати атрибути точки мон
msgid "Failed to stat the cdrom"
msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ атрибути cdrom"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Проблема з закриттÑм gzip файла %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
"Ð‘Ð»Ð¾ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ðµ викориÑтовуєтьÑÑ, так Ñк файл Ð±Ð»Ð¾ÐºÑƒÐ²Ð°Ð½Ð½Ñ %s доÑтупний тільки "
"Ð´Ð»Ñ Ð·Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Ðеможливо відкрити 'lock' файл %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
"Ð‘Ð»Ð¾ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ðµ викориÑтовуєтьÑÑ, так Ñк файл Ð±Ð»Ð¾ÐºÑƒÐ²Ð°Ð½Ð½Ñ %s знаходитьÑÑ Ð½Ð° "
"файловій ÑиÑтемі nfs"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Ðеможливо отримати замок %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr "Ðеможливо Ñтворити перелік файлів, так Ñк '%s' не Ñ” директорією"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "ІгноруєтьÑÑ '%s' у директорії '%s', так Ñк не Ñ” звичайним файлом"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr "ІгноруєтьÑÑ Ñ„Ð°Ð¹Ð» '%s' у директорії '%s', так Ñк він не має розширеннÑ"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
"ІгноруєтьÑÑ Ñ„Ð°Ð¹Ð» '%s' у директорії '%s', так Ñк він має невірне розширеннÑ"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "ÐŸÑ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ %s отримав 'segmentation fault' (фатальна помилка)."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "ÐŸÑ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ %s отримав Ñигнал %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "ÐŸÑ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ %s повернув код помилки (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "ÐŸÑ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ %s раптово завершивÑÑ"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Ðеможливо відкрити файл %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Ðеможливо відкрити файловий деÑкриптор %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Ðе вдалоÑÑ Ñтворити IPC з породженим процеÑом"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Ðе вдалоÑÑ Ð²Ð¸ÐºÐ¾Ð½Ð°Ñ‚Ð¸ компреÑор "
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "зчитуваннÑ, повинен зчитати ще %llu байт, але нічого більше нема"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "запиÑуваннÑ, повинен був запиÑати ще %llu байт, але не вдалоÑÑ"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Проблема з закриттÑм файла %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Проблема з перейменуваннÑм файла %s на %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Проблема з роз'єднаннÑм файла %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Проблема з Ñинхронізацією файла"
@@ -2804,12 +2757,12 @@ msgstr "Ðе вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ StateFile %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Ðе вдалоÑÑ Ð·Ð°Ð¿Ð¸Ñати до тимчаÑового StateFile файла %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Ðеможливо проаналізувати файл пакунку %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Ðеможливо проаналізувати файл пакунку %s (2)"
@@ -2886,7 +2839,7 @@ msgstr "Спотворений Ñ€Ñдок %u у переліку джерел %s
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "Ðевідомий тип '%s' на Ñ€Ñдку %u в переліку джерел %s"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2895,12 +2848,12 @@ msgstr ""
"Ðеможливо прÑмо налаштувати конфігурацію на '%s'. Будь-лаÑка, дивітьÑÑ man 5 "
"apt.conf, нижче APT::Immediate-Configure Ð´Ð»Ñ Ð´ÐµÑ‚Ð°Ð»ÐµÐ¹. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "Ðеможливо налаштувати '%s'."
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2924,7 +2877,7 @@ msgid ""
msgstr ""
"Пакунок %s повинен бути перевÑтановленим, але Ñ Ð½Ðµ можу знайти його архів."
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2932,18 +2885,10 @@ msgstr ""
"Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути "
"пов'Ñзано з зафікÑованими пакунками."
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Ðеможливо уÑунути проблеми, ви маєте поламані зафікÑовані пакунки."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"ДеÑкі індекÑні файли не вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸. Вони були зігноровані, або "
-"заміÑÑ‚ÑŒ них були викориÑтані Ñтаріші верÑÑ–Ñ—."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2987,12 +2932,12 @@ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
"Будь-лаÑка, вÑтавте диÑк з поміткою: '%s' в привід '%s' Ñ– натиÑніть Enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "СиÑтема Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ '%s' не підтримуєтьÑÑ"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Ðеможливо визначити тип необхідної ÑиÑтеми пакуваннÑ"
@@ -3026,17 +2971,17 @@ msgstr ""
"Ðевірне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ '%s' Ð´Ð»Ñ APT::Default-Release, так Ñк такий випуÑк не Ñ” "
"доÑтупним у вихідних кодах"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "Ðевірний Ð·Ð°Ð¿Ð¸Ñ Ñƒ файлі налаштувань %s, відÑутній заголовок Package"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Ðе зрозумів тип %s Ð´Ð»Ñ Ñ„Ñ–ÐºÑатора пакунків (pin)"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Ðе вÑтановлено пріоритету (або Ñтоїть 0) Ð´Ð»Ñ Ñ„Ñ–ÐºÑатора пакунків (pin)"
@@ -3104,16 +3049,20 @@ msgstr "Помилка IO під Ñ‡Ð°Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ ÐºÐµÑˆÑƒ вихід
msgid "rename failed, %s (%s -> %s)."
msgstr "не вдалоÑÑ Ð¿ÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ñ‚Ð¸, %s (%s -> %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "ÐевідповідніÑÑ‚ÑŒ MD5Sum"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "ÐевідповідніÑÑ‚ÑŒ хешу MD5Sum"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "ÐевідповідніÑÑ‚ÑŒ розміру"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Ðевірна Ð´Ñ–Ñ %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3122,16 +3071,16 @@ msgstr ""
"Ðеможливо знайти очікуваний Ð·Ð°Ð¿Ð¸Ñ '%s' у 'Release' файлі (Ðевірний Ð·Ð°Ð¿Ð¸Ñ Ñƒ "
"sources.list, або пошкоджений файл)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Ðеможливо знайти хеш-Ñуму Ð´Ð»Ñ '%s' у 'Release' файлі"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "ВідÑутній публічний ключ Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð¸Ñ… ідентифікаторів (ID) ключа:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3140,12 +3089,12 @@ msgstr ""
"Файл 'Release' Ð´Ð»Ñ %s заÑтарів (недійÑний з %s). ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ "
"Ñ€ÐµÐ¿Ð¾Ð·Ð¸Ñ‚Ð¾Ñ€Ñ–Ñ Ð½Ðµ будуть заÑтоÑовані."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Конфліктуючий диÑтрибутив: %s (очікувавÑÑ %s, але Ñ” %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3155,12 +3104,12 @@ msgstr ""
"попередні індекÑні файли будуть викориÑтані. Помилка GPG: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Помилка GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3169,32 +3118,24 @@ msgstr ""
"Я не зміг знайти файл Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑƒ %s. Можливо, це значить, що вам потрібно "
"влаÑноруч виправити цей пакунок. (через відÑутніÑÑ‚ÑŒ 'arch')"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr ""
-"Я не зміг знайти файл Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑƒ %s. Можливо, це значить, що вам потрібно "
-"влаÑноруч виправити цей пакунок."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "Ðеможливо знайти джерело Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð²ÐµÑ€ÑÑ–Ñ— '%s' Ð´Ð»Ñ '%s'"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
"ІндекÑні файли пакунків пошкоджені. Ðемає Ð¿Ð¾Ð»Ñ 'Filename' Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑƒ %s."
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "ÐевідповідніÑÑ‚ÑŒ розміру"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Ðеможливо проаналізувати 'Release' файл %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Ðемає Ñекцій у 'Release' файлі %s"
@@ -3339,32 +3280,32 @@ msgstr "Ðеможливо знайти аутентифікаційний заÐ
msgid "Hash mismatch for: %s"
msgstr "ÐевідповідніÑÑ‚ÑŒ хешу длÑ: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "ВипуÑк '%s' Ð´Ð»Ñ '%s' не знайдено"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "ВерÑÑ–Ñ '%s' Ð´Ð»Ñ '%s' не знайдена"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Ðеможливо знайти Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ '%s'"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Ðеможливо знайти ніÑкий пакунок через рег.вираз '%s'"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "Ðеможливо вибирати верÑÑ–Ñ— пакунку '%s', так Ñк він Ñ” чиÑто віртуальним"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3373,19 +3314,19 @@ msgstr ""
"Ðеможливо вибрати вÑтановлений пакунок, або верÑÑ–ÑŽ-кандидат пакунку '%s', "
"так Ñк вони відÑутні"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
"Ðеможливо вибрати найновішу верÑÑ–ÑŽ пакунку '%s', так Ñк він Ñ” чиÑто "
"віртуальним"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr "Ðеможливо вибрати верÑÑ–ÑŽ пакунку %s, так Ñк він не має кандидатів"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3418,112 +3359,133 @@ msgstr ""
msgid "Execute external solver"
msgstr "Виконати зовнішній розв'Ñзувач"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "ВиконуєтьÑÑ dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"ДеÑкі індекÑні файли не вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸. Вони були зігноровані, або "
+"заміÑÑ‚ÑŒ них були викориÑтані Ñтаріші верÑÑ–Ñ—."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Ð’ÑтановлюєтьÑÑ %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "ÐалаштовуєтьÑÑ %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "ВидалÑєтьÑÑ %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "ПовніÑÑ‚ÑŽ видалÑєтьÑÑ %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "ВзÑто до відома Ð·Ð½Ð¸ÐºÐ½ÐµÐ½Ð½Ñ %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "ВиконуєтьÑÑ Ð¿Ñ–ÑлÑуÑтановочний ініціатор %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ñ–Ñ '%s' відÑутнÑ"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Ðеможливо відкрити файл '%s'"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Підготовка %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Ð Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Підготовка до конфігурації %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Ð’Ñтановлено %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Підготовка до Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Видалено %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Підготовка до повного Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "ПовніÑÑ‚ÑŽ видалено %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Ðеможливо запиÑати в %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
msgstr ""
-"Ðеможливо запиÑати в лог, проблема з openpty() (не змонтовано /dev/pts?)\n"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "ВиконуєтьÑÑ dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "Операцію було перервано до того, Ñк вона мала завершитиÑÑ"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
"Звіт apport не був запиÑаний, тому що параметр MaxReports вже доÑÑгнув "
"макÑимальної величини"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "проблеми з залежноÑÑ‚Ñми - залишено неналаштованим"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3531,7 +3493,7 @@ msgstr ""
"Звіт apport не був запиÑаний, тому що Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ помилку вказує на те, "
"що Ñ†Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ° Ñ” наÑлідком попередньої невдачі."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
@@ -3539,7 +3501,7 @@ msgstr ""
"Звіт apport не був запиÑаний, тому що Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ помилку вказує на "
"відÑутніÑÑ‚ÑŒ вільного міÑÑ†Ñ Ð½Ð° диÑку"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3547,7 +3509,16 @@ msgstr ""
"Звіт apport не був запиÑаний, тому що Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ помилку вказує на "
"відÑутніÑÑ‚ÑŒ вільного міÑÑ†Ñ Ñƒ пам'ÑÑ‚Ñ–"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Звіт apport не був запиÑаний, тому що Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ помилку вказує на "
+"відÑутніÑÑ‚ÑŒ вільного міÑÑ†Ñ Ð½Ð° диÑку"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3582,6 +3553,96 @@ msgstr ""
msgid "Not locked"
msgstr "Ðе заблоковано"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Помітьте, вибираєтьÑÑ '%s' Ð´Ð»Ñ Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ '%s'\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "Помітьте, вибираєтьÑÑ '%s' Ð´Ð»Ñ Ñ€ÐµÐ³ÑƒÐ»Ñрного виразу '%s'\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Пакунок %s - віртуальний, його функції надаютьÑÑ Ð¿Ð°ÐºÑƒÐ½ÐºÐ°Ð¼Ð¸:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [ВерÑÑ–Ñ Ð½Ðµ кандидат]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Ви повинні Ñвно вказати, Ñкий Ñаме ви хочете вÑтановити."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Пакунок %s недоÑтупний, але згадуєтьÑÑ Ñƒ переліку залежноÑтей іншого "
+#~ "пакунка.\n"
+#~ "Це може означати, що пакунок відÑутній, заÑтарів, або доÑтупний з джерел, "
+#~ "не згаданих в sources.list\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Однак наÑтупні пакунки замінÑÑŽÑ‚ÑŒ його:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Ð”Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÐ° '%s' не знайдено кандидатів на вÑтановленнÑ"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Віртуальні пакунки Ñк '%s' не можуть бути видаленими\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Пакунок '%s' не вÑтановлений, тому не видалений. Можливо ви мали на увазі "
+#~ "'%s'?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Пакунок '%s' не вÑтановлений, тому не видалений\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Помітьте, вибираєтьÑÑ '%s' заміÑÑ‚ÑŒ '%s'\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "ПропуÑкаєтьÑÑ %s, пакунок вже вÑтановлений Ñ– Ð¾Ð¿Ñ†Ñ–Ñ ÐžÐОВИТИ не "
+#~ "вÑтановлена.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "ПропуÑкаєтьÑÑ %s, пакунок не вÑтановлений, а запитуютьÑÑ Ñ‚Ñ–Ð»ÑŒÐºÐ¸ "
+#~ "оновленнÑ.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "ПеревÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ %s неможливе, бо він не може бути завантаженим.\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "Вже вÑтановлена найновіша верÑÑ–Ñ %s.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Обрана верÑÑ–Ñ '%s' (%s) Ð´Ð»Ñ '%s'\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Обрана верÑÑ–Ñ '%s' (%s) Ð´Ð»Ñ '%s' через '%s'\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Ігнорувати недоÑтупний випуÑк '%s' пакунку '%s'"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "Це невірний DEB архів, відÑутній член '%s', '%s' чи '%s'"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "ÐевідповідніÑÑ‚ÑŒ MD5Sum"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "Я не зміг знайти файл Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑƒ %s. Можливо, це значить, що вам "
+#~ "потрібно влаÑноруч виправити цей пакунок."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr ""
+#~ "Ðеможливо запиÑати в лог, проблема з openpty() (не змонтовано /dev/pts?)\n"
+
#~ msgid "File %s doesn't start with a clearsigned message"
#~ msgstr "Файл %s починаєтьÑÑ Ð· не 'clearsigned' повідомленнÑм"
diff --git a/po/vi.po b/po/vi.po
index 44b7fec72..607bd5fa2 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt-0.9.11\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2013-08-25 14:13+0700\n"
"Last-Translator: Trần Ngá»c Quân <vnwildman@gmail.com>\n"
"Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n"
@@ -21,152 +21,154 @@ msgstr ""
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-Basepath: ../\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "Gói %s phiên bản %s chÆ°a thá»a mãn quan hệ phụ thuá»™c:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "Tổng các tên gói: "
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "Tổng các cấu trúc gói: "
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " Gói thÆ°á»ng: "
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " Gói thuần ảo: "
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " Gói ảo đơn: "
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " Gói ảo hỗn hợp: "
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " Thiếu: "
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "Tổng phiên bản riêng: "
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "Tổng mô tả riêng: "
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "Tổng gói phụ thuộc: "
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "Tổng liên quan phiên bản và tập tin: "
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "Tổng quan hệ mô-tả/tập-tin: "
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "Tổng ánh xạ Cung cấp: "
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Tổng chuỗi mở rộng mẫu tìm kiếm: "
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "Tổng chỗ phiên bản phụ thuộc: "
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Tổng chỗ nghỉ: "
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "Tổng chỗ đã tính dành cho: "
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "Tập tin gói %s không đồng bộ được."
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "Không tìm thấy gói"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "Bạn phải đưa ra ít nhất một mẫu tìm kiếm"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
"Lệnh này đã lạc hậu. Xin hãy dùng lệnh 'apt-mark showauto' để thay thế."
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "Không thể xác định vị trí của gói %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "Tập tin gói:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
"Bộ nhớ tạm không đồng bộ được nên không thể tham chiếu chéo tập tin gói"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "Các gói đã ghim:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(không tìm thấy)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " Äã cài đặt: "
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " Ứng cử: "
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(không có)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " Ghim gói: "
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " Bảng phiên bản:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s dành cho %s được biên dịch vào %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
msgid ""
"Usage: apt-cache [options] command\n"
" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
@@ -241,7 +243,7 @@ msgstr ""
" apt-cache(8) và apt.conf(5).\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
@@ -252,28 +254,28 @@ msgstr ""
"Xem 'man apt-cdrom' để có thêm thông tin vỠtự động dò tìm và điểm gắn CD-"
"ROM."
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
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, ví dụ nhÆ° là: “Debian 5.0.3 ÄÄ©a 1â€"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "Hãy đưa đĩa vào ổ và bấm nút Enter"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "Gặp lá»—i khi gắn “%s†vào “%sâ€"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
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."
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "Các đối số không thành cặp"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -303,548 +305,32 @@ msgstr ""
" -c=? Äá»c tập tin cấu hình này\n"
" -o=? Äặt má»™t tùy chá»n cấu hình tùy ý, v.d. “-o dir::cache=/tmpâ€\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr "[C/k]"
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr "[c/K]"
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr "C"
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr "K"
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Lỗi biên dịch biểu thức chính quy - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "Những gói theo đây chÆ°a thá»a mãn quan hệ phụ thuá»™c:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "nhưng mà %s đã được cài đặt"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "nhưng mà %s sẽ được cài đặt"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "nhưng mà nó không có khả năng cài đặt"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "nhưng mà nó là gói ảo"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "nhưng mà nó chưa được cài đặt"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "nhưng mà nó sẽ không được cài đặt"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " hay"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "Theo đây có những gói MỚI sẽ được cài đặt:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "Theo đây có những gói sẽ bị GỠ BỎ:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "Theo đây có những gói đã được giữ lại:"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "Theo đây có những gói sẽ được nâng cấp:"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Theo đây có những gói sẽ được HẠ CẤP:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "Theo đây có những gói sẽ được thay đổi:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (bởi vì %s) "
-
-#: cmdline/apt-get.cc:600
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"CẢNH BÃO: Có những gói chủ yếu sau đây sẽ bị gỡ bá».\n"
-"ÄỪNG làm nhÆ° thế trừ khi bạn biết chính xác mình Ä‘ang làm gì!"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu nâng cấp, %lu được cài đặt mới, "
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu được cài đặt lại, "
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu bị hạ cấp, "
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu cần gỡ bá», và %lu chÆ°a được nâng cấp.\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu chÆ°a được cài đặt toàn bá»™ hay được gỡ bá».\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "Ghi chú: Ä‘ang chá»n “%s†cho tác vụ “%sâ€\n"
-
-#: cmdline/apt-get.cc:669
-#, 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:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Gói %s là gói ảo được cung cấp bởi:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [Äã cài đặt]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [Không phải phiên bản ứng cử]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "Bạn nên chá»n má»™t rõ ràng gói cần cài."
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"Gói %s không phải sẵn sàng, nhưng mà một gói khác\n"
-"đã tham chiếu đến nó. Có lẽ có gói còn thiếu,\n"
-"không còn dùng nữa, hay chỉ sẵn sàng từ một nguồn khác.\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "Tuy nhiên, những gói theo đây thay thế nó:"
-
-#: cmdline/apt-get.cc:741
-#, 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:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "Không thể gỡ bỠđược gói ảo nhÆ° “%sâ€\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "Chưa cài đặt gói %s nên không thể gỡ bỠnó. Có phải ý bạn là '%s'?\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "Gói %s chưa được cài đặt, thế nên không thể gỡ bỠnó\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "Ghi chú: Ä‘ang chá»n “%s†thay cho “%sâ€\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "Äang bá» qua %s vì nó đã được cài đặt và chÆ°a đặt tùy chá»n Nâng cấp.\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr ""
-"Äang bá» qua %s vì nó chÆ°a được cài đặt và chỉ Nâng cấp là được yêu cầu.\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Không thể cài đặt lại %s vì không thể tải nó vá».\n"
-
-#: cmdline/apt-get.cc:868
-#, 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:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, 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:913
-#, 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:918
-#, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "Äã chá»n phiên bản '%s' (%s) cho '%s' vì '%s'\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "Äang sá»­a chữa quan hệ phụ thuá»™c..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " gặp lỗi."
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "Không thể sửa phần phụ thuộc"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "Không thể tối thiểu hóa tập hợp nâng cấp"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " Xong"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "Bạn có thể chạy lệnh “apt-get -f install†để sửa những lỗi trên."
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "ChÆ°a thá»a mãn quan hệ phụ thuá»™c. Hãy thá»­ dùng tùy chá»n “-fâ€."
-
-#: cmdline/apt-get.cc:1097
-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:1101
-msgid "Authentication warning overridden.\n"
-msgstr "Cảnh báo xác thực bị đè.\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "Cài đặt những gói này mà không cần thẩm tra?"
-
-#: cmdline/apt-get.cc:1110
-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:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Có lá»—i và đã dùng tùy chá»n “-y†mà không có “--force-yesâ€"
-
-#: cmdline/apt-get.cc:1160
-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:1169
-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:1180
-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:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Lạ nhỉ... Kích cỡ không khớp nhau. Hãy gửi thư cho <apt@packages.debian.org>"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Cần phải lấy %sB/%sB từ kho chứa.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Cần phải lấy %sB từ kho chứa.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "Sau thao tác này, %sB dung lượng đĩa sẽ bị chiếm dụng.\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "Sau thao tác này, %sB dung lượng đĩa sẽ được giải phóng.\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Không thể tìm được chỗ trống trong %s"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Bạn không có đủ dung lượng đĩa còn trống trong %s."
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"Äã Ä‘Æ°a ra “Chỉ không đáng kể†(Trivial Only) nhÆ°ng mà thao tác này là đáng "
-"kể."
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Có, làm đi!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"Bạn sắp làm việc mà nó có thể gây hư hại cho hệ thống.\n"
-"Nếu vẫn muốn tiếp tục thì hãy gõ cụm từ “%sâ€\n"
-"?]"
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "Hủy bá»."
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "Bạn có muốn tiếp tục không?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Gặp lỗi khi lấy vỠ%s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "Một số tập tin không tải vỠđược"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "Hoàn tất việc tải vá» và trong chế Ä‘á»™ chỉ tải vá»"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Không thể lấy một số kho, có lẽ hãy chạy lệnh “apt-get update†(apt lấy cập "
-"nhật)\n"
-"hay dùng tùy chá»n “--fix-missing†(sá»­a thiếu sót) không?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr ""
-"ChÆ°a há»— trợ tùy chá»n “--fix-missing†(sá»­a khi thiếu) và trao đổi phÆ°Æ¡ng tiện."
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "Không thể sửa những gói còn thiếu."
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "Äang hủy bá» tiến trình cài đặt."
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-"Những gói theo đây không còn nằm trên hệ thống này vì má»i tập tin Ä‘á»u bị gói "
-"khác ghi đè:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "Ghi chú: Thay đổi này được tự động thực hiện bởi dpkg."
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "Bá» qua bản phát hành đích không sẵn sàng “%s†của gói “%sâ€"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "Äang chá»n “%s†làm gói nguồn, thay thế cho “%sâ€\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "Bá» qua phiên bản không sẵn sàng “%s†của gói “%sâ€"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "Lệnh cập nhật không chấp nhận đối số"
-
-#: cmdline/apt-get.cc:1742
-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:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"Ừm, có vẻ là Bá»™ Gỡ bá» Tá»± Ä‘á»™ng đã hủy cái gì, má»™t trÆ°á»ng hợp thá»±c sá»± không "
-"nên xảy ra. Hãy thông báo lỗi vỠapt."
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "Có lẽ thông tin theo đây sẽ giúp đỡ bạn giải quyết tình trạng này:"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Lá»—i ná»™i bá»™: Bá»™ Gỡ bá» Tá»± Ä‘á»™ng đã làm há»ng má»™t thứ gì đó"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] ""
-"(Các) gói sau đây đã được tự động cài đặt nên không còn cần yêu cầu lại:"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "%lu gói đã được tự động cài đặt nên không còn cần yêu cầu lại.\n"
-
-#: cmdline/apt-get.cc:1866
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "Hãy dùng lệnh `apt-get autoremove' để gỡ bỠchúng."
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Lá»—i ná»™i bá»™: AllUpgrade (toàn bá»™ nâng cấp) đã làm há»ng thứ gì đó"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "Có lẽ bạn cần chạy lệnh “apt-get -f install†để sửa những cái đó:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"ThÆ°a thá»a mãn quan hệ phụ thuá»™c. Hãy thá»­ chạy lệnh “apt-get -f install†mà "
-"không có gói nào (hoặc chỉ định cách thức giải quyết)."
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"Không thể cài đặt má»™t số gói. Äiá»u đó có nghÄ©a là bạn đã yêu cầu\n"
-"má»™t trÆ°á»ng hợp không thể, hoặc nếu bạn Ä‘ang sá»­ dụng bản phân phối\n"
-"chưa ổn định cái mà yêu cầu các gói mà nó còn chưa được tạo ra\n"
-"hay chÆ°a được chuyển ra khá»i phần Incoming (Äến)."
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "Gói bị há»ng"
-
-#: cmdline/apt-get.cc:2049
-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:2139
-msgid "Suggested packages:"
-msgstr "Các gói đỠnghị:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "Gói khuyến khích:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "Không tìm thấy gói %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, 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:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s được đặt thành “được tá»± Ä‘á»™ng cài đặtâ€.\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
@@ -852,46 +338,24 @@ msgstr ""
"Lệnh này đã lá»—i thá»i. Xin hãy dùng lệnh 'apt-mark auto' và 'apt-mark manual' "
"để thay thế."
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "Äang tính bÆ°á»›c nâng cấp... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "Gặp lỗi"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "Xong"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
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:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "Không thể khoá thÆ° mục tải vá»"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr "Không tìm thấy nguồn cho việc tải vỠphiên bản '%s' of '%s'"
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr "Äang tải vá» %s %s"
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "Phải chỉ định ít nhất một gói để mà lấy mã nguồn vỠcho nó"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, 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:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -901,7 +365,7 @@ msgstr ""
"“%s†tại:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -912,69 +376,79 @@ msgstr ""
"bzr branch %s\n"
"để lấy các gói mới nhất (có thể là chưa phát hành).\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, 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:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Không thể tìm được chỗ trống trong %s"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Không đủ chỗ trống trên %s"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Cần phải lấy %sB/%sB kho nguồn.\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Cần phải lấy %sB từ kho nguồn.\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "Lấy mã nguồn %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "Gặp lỗi khi lấy một số kho."
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "Hoàn tất việc tải vá» và trong chế Ä‘á»™ chỉ tải vá»"
+
+#: cmdline/apt-get.cc:891
#, 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:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Lệnh giải nén “%s†bị lỗi.\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Hãy kiểm tra xem gói “dpkg-dev†đã được cài đặt chưa.\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Lệnh xây dựng “%s†bị lỗi.\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "Tiến trình con bị lỗi"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
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:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
@@ -983,17 +457,17 @@ msgstr ""
"Không có thông tin kiến trúc sẵn sàng cho %s. Xem apt.conf(5) APT::"
"Architectures để cài đặt"
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, 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:2870
+#: cmdline/apt-get.cc:1037
#, 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:3040
+#: cmdline/apt-get.cc:1207
#, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
@@ -1001,7 +475,7 @@ msgid ""
msgstr ""
"phụ thuá»™c %s cho %s không ổn thá»a bởi vì %s không được cho phép trên gói '%s'"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
@@ -1009,14 +483,14 @@ msgid ""
msgstr ""
"cách phụ thuá»™c %s cho %s không thể được thá»a mãn vì không tìm thấy gói %s"
-#: cmdline/apt-get.cc:3081
+#: cmdline/apt-get.cc:1248
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"Việc cố thá»a mãn quan hệ phụ thuá»™c %s cho %s bị lá»—i vì gói đã cài đặt %s là "
"quá mới"
-#: cmdline/apt-get.cc:3120
+#: cmdline/apt-get.cc:1287
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -1025,7 +499,7 @@ msgstr ""
"cách phụ thuá»™c %s cho %s không thể được thá»a mãn phiên bản ứng cá»­ của gói %s "
"có thể thá»a mãn Ä‘iá»u kiện phiên bản"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
@@ -1034,30 +508,30 @@ msgstr ""
"cách phụ thuá»™c %s cho %s không thể được thá»a mãn bởi vì gói %s không có bản "
"ứng cử"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, 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:3164
+#: cmdline/apt-get.cc:1331
#, 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:3169
+#: cmdline/apt-get.cc:1336
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:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, c-format
msgid "Changelog for %s (%s)"
msgstr "Changelog cho %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "Hỗ trợ các mô-đun:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
@@ -1151,103 +625,54 @@ msgstr ""
" apt-get(8), sources.list(5) và apt.conf(5).\n"
" Trình APT này có năng lực của siêu bò.\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"GHI CHÚ: đây chỉ là mô phá»ng!\n"
-" apt-get yêu cầu quyá»n root để thá»±c hiện thật.\n"
-" Cần nhớ rằng chức năng khóa đã bị tắt,\n"
-" nên có thể nó không chính xác như những gì làm thật!"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "Lần tìm "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "Lấy:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "Bá»q "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "Lá»—i "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Äã lấy %sB trong tổng số %s (%sB/g).\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [Hoạt động]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Chuyển đổi thiết bị lưu trữ: hãy nạp đĩa có nhãn\n"
-" “%sâ€\n"
-"vào ổ “%s†và bấm nút Enter\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "không thể đánh dấu %s như là nó chưa được cài đặt.\n"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s được đặt thành được cài đặt bằng tay.\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s đã sẵn được đặt thành cài đặt tự động rồi.\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, c-format
msgid "%s was already set on hold.\n"
msgstr "%s đã sẵn được đặt là giữ lại.\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, c-format
msgid "%s was already not hold.\n"
msgstr "%s đã sẵn được đặt là không giữ lại.\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "Cần %s nhưng mà không thấy nó ở đây"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, c-format
msgid "%s set on hold.\n"
msgstr "%s được đặt là giữ lại.\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, c-format
msgid "Canceled hold on %s.\n"
msgstr "Hủy bỠnắm giữ %s.\n"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
"Thá»±c thi lệnh dpkg gặp lá»—i. Bạn có quyá»n siêu ngÆ°á»i dùng (root) không vậy?"
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1289,6 +714,23 @@ msgstr ""
"Äể tìm thông tin thêm, xem hai trang man (hÆ°á»›ng dẫn)\n"
" apt-mark(8) và apt.conf(5)"
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1386,8 +828,8 @@ msgstr "Thá»i hạn kết nối"
msgid "Server closed the connection"
msgstr "Máy phục vụ đã đóng kết nối"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "Lá»—i Ä‘á»c"
@@ -1400,8 +842,8 @@ msgid "Protocol corruption"
msgstr "Giao thức bị há»ng"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "Lá»—i ghi"
@@ -1413,6 +855,10 @@ msgstr "Không thể tạo ổ cắm"
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:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "Gặp lỗi"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "Không thể kết nối ổ cắm bị động."
@@ -1455,7 +901,7 @@ msgstr "Quá giỠkết nối ổ cắm dữ liệu"
msgid "Unable to accept connection"
msgstr "Không thể chấp nhận kết nối"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "Gặp vấn đỠbăm tập tin"
@@ -1587,85 +1033,601 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr "Các tập tin trống rỗng không phải là kho lưu hợp lệ"
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "Gặp lỗi khi ghi vào tập tin"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Gặp lá»—i khi Ä‘á»c từ máy phục vụ: Máy chủ đã đóng kết nối"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "Gặp lá»—i khi Ä‘á»c từ máy phục vụ"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "Gặp lỗi khi ghi vào tập tin"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "Việc chá»n bị lá»—i"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "Kết nối đã quá giá»"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "Gặp lỗi khi ghi vào tập tin đầu ra"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "Äang đợi phần đầu dữ liệu..."
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "Dòng đầu sai"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
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:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr ""
"Máy phục vụ HTTP đã gửi một dòng đầu Content-Length (độ dài nội dung) không "
"hợp lệ"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr ""
"Máy phục vụ HTTP đã gửi một dòng đầu Content-Range (phạm vi nội dung) không "
"hợp lệ"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "Máy phục vụ HTTP không hỗ trợ tải một phần tập tin"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "Không rõ định dạng ngày"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "Việc chá»n bị lá»—i"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "Dữ liệu dòng đầu sai"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "Kết nối đã quá giá»"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "Kết nối bị ngắt"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "Gặp lỗi khi ghi vào tập tin đầu ra"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "Gặp lỗi nội bộ"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "Gặp lỗi khi ghi vào tập tin"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "Gặp lỗi khi ghi vào tập tin"
+#: apt-private/private-install.cc:93
+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!"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Gặp lá»—i khi Ä‘á»c từ máy phục vụ: Máy chủ đã đóng kết nối"
+#: apt-private/private-install.cc:102
+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."
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "Gặp lá»—i khi Ä‘á»c từ máy phục vụ"
+#: apt-private/private-install.cc:121
+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"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "Dữ liệu dòng đầu sai"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Lạ nhỉ... Kích cỡ không khớp nhau. Hãy gửi thư cho <apt@packages.debian.org>"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "Kết nối bị ngắt"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Cần phải lấy %sB/%sB từ kho chứa.\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "Gặp lỗi nội bộ"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Cần phải lấy %sB từ kho chứa.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Sau thao tác này, %sB dung lượng đĩa sẽ bị chiếm dụng.\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Sau thao tác này, %sB dung lượng đĩa sẽ được giải phóng.\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "Bạn không có đủ dung lượng đĩa còn trống trong %s."
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Có lá»—i và đã dùng tùy chá»n “-y†mà không có “--force-yesâ€"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"Äã Ä‘Æ°a ra “Chỉ không đáng kể†(Trivial Only) nhÆ°ng mà thao tác này là đáng "
+"kể."
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Có, làm đi!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Bạn sắp làm việc mà nó có thể gây hư hại cho hệ thống.\n"
+"Nếu vẫn muốn tiếp tục thì hãy gõ cụm từ “%sâ€\n"
+"?]"
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "Hủy bá»."
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "Bạn có muốn tiếp tục không?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "Một số tập tin không tải vỠđược"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Không thể lấy một số kho, có lẽ hãy chạy lệnh “apt-get update†(apt lấy cập "
+"nhật)\n"
+"hay dùng tùy chá»n “--fix-missing†(sá»­a thiếu sót) không?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr ""
+"ChÆ°a há»— trợ tùy chá»n “--fix-missing†(sá»­a khi thiếu) và trao đổi phÆ°Æ¡ng tiện."
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "Không thể sửa những gói còn thiếu."
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "Äang hủy bá» tiến trình cài đặt."
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+"Những gói theo đây không còn nằm trên hệ thống này vì má»i tập tin Ä‘á»u bị gói "
+"khác ghi đè:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "Ghi chú: Thay đổi này được tự động thực hiện bởi dpkg."
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "Không nên xoá gì thì không thể khởi chạy Bộ Gỡ bỠTự động"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"Ừm, có vẻ là Bá»™ Gỡ bá» Tá»± Ä‘á»™ng đã hủy cái gì, má»™t trÆ°á»ng hợp thá»±c sá»± không "
+"nên xảy ra. Hãy thông báo lỗi vỠapt."
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "Có lẽ thông tin theo đây sẽ giúp đỡ bạn giải quyết tình trạng này:"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Lá»—i ná»™i bá»™: Bá»™ Gỡ bá» Tá»± Ä‘á»™ng đã làm há»ng má»™t thứ gì đó"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] ""
+"(Các) gói sau đây đã được tự động cài đặt nên không còn cần yêu cầu lại:"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "%lu gói đã được tự động cài đặt nên không còn cần yêu cầu lại.\n"
+
+#: apt-private/private-install.cc:530
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "Hãy dùng lệnh `apt-get autoremove' để gỡ bỠchúng."
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Có lẽ bạn cần chạy lệnh “apt-get -f install†để sửa những cái đó:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"ThÆ°a thá»a mãn quan hệ phụ thuá»™c. Hãy thá»­ chạy lệnh “apt-get -f install†mà "
+"không có gói nào (hoặc chỉ định cách thức giải quyết)."
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Không thể cài đặt má»™t số gói. Äiá»u đó có nghÄ©a là bạn đã yêu cầu\n"
+"má»™t trÆ°á»ng hợp không thể, hoặc nếu bạn Ä‘ang sá»­ dụng bản phân phối\n"
+"chưa ổn định cái mà yêu cầu các gói mà nó còn chưa được tạo ra\n"
+"hay chÆ°a được chuyển ra khá»i phần Incoming (Äến)."
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "Gói bị há»ng"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "Những gói thêm theo đây sẽ được cài đặt:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "Các gói đỠnghị:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "Gói khuyến khích:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "CẢNH BÃO: Không thể xác thá»±c những gói theo đây!"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "Cảnh báo xác thực bị đè.\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "Một số gói không thể được xác thực"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "Cài đặt những gói này mà không cần thẩm tra?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Gặp lỗi khi lấy vỠ%s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [Äã cài đặt]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [Äã cài đặt]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [Äã cài đặt]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "Những gói theo đây chÆ°a thá»a mãn quan hệ phụ thuá»™c:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "nhưng mà %s đã được cài đặt"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "nhưng mà %s sẽ được cài đặt"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "nhưng mà nó không có khả năng cài đặt"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "nhưng mà nó là gói ảo"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "nhưng mà nó chưa được cài đặt"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "nhưng mà nó sẽ không được cài đặt"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " hay"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "Theo đây có những gói MỚI sẽ được cài đặt:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "Theo đây có những gói sẽ bị GỠ BỎ:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "Theo đây có những gói đã được giữ lại:"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "Theo đây có những gói sẽ được nâng cấp:"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Theo đây có những gói sẽ được HẠ CẤP:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "Theo đây có những gói sẽ được thay đổi:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (bởi vì %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"CẢNH BÃO: Có những gói chủ yếu sau đây sẽ bị gỡ bá».\n"
+"ÄỪNG làm nhÆ° thế trừ khi bạn biết chính xác mình Ä‘ang làm gì!"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu nâng cấp, %lu được cài đặt mới, "
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu được cài đặt lại, "
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu bị hạ cấp, "
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu cần gỡ bá», và %lu chÆ°a được nâng cấp.\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu chÆ°a được cài đặt toàn bá»™ hay được gỡ bá».\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr "[C/k]"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr "[c/K]"
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr "C"
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr "K"
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Lỗi biên dịch biểu thức chính quy - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "Äang sá»­a chữa quan hệ phụ thuá»™c..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " gặp lỗi."
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "Không thể sửa phần phụ thuộc"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "Không thể tối thiểu hóa tập hợp nâng cấp"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " Xong"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Bạn có thể chạy lệnh “apt-get -f install†để sửa những lỗi trên."
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "ChÆ°a thá»a mãn quan hệ phụ thuá»™c. Hãy thá»­ dùng tùy chá»n “-fâ€."
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "Lệnh cập nhật không chấp nhận đối số"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "Äang tính bÆ°á»›c nâng cấp... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "Lá»—i ná»™i bá»™: AllUpgrade (toàn bá»™ nâng cấp) đã làm há»ng thứ gì đó"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "Xong"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"GHI CHÚ: đây chỉ là mô phá»ng!\n"
+" apt-get yêu cầu quyá»n root để thá»±c hiện thật.\n"
+" Cần nhớ rằng chức năng khóa đã bị tắt,\n"
+" nên có thể nó không chính xác như những gì làm thật!"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "Việc đổi tên %s thành %s bị lỗi"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "Lần tìm "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "Lấy:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "Bá»q "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "Lá»—i "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Äã lấy %sB trong tổng số %s (%sB/g).\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [Hoạt động]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Chuyển đổi thiết bị lưu trữ: hãy nạp đĩa có nhãn\n"
+" “%sâ€\n"
+"vào ổ “%s†và bấm nút Enter\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "Không thể Ä‘á»c %s"
@@ -1727,32 +1689,32 @@ msgstr "Việc tạo ống IPC đến tiến trình con bị lỗi"
msgid "Connection closed prematurely"
msgstr "Kết nối bị đóng quá sớm."
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "Cài đặt mặc định sai!"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "Bấm phím Enter để tiếp tục."
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "Bạn có muốn xoá má»i tập tin .deb đã được tải vá» trÆ°á»›c đây không?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "Gặp một số lỗi trong khi giải nén. Những gói đã được cài đặt"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "sẽ cũng được cấu hình. Việc này có thể sẽ gây ra lỗi trùng lặp"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "hoặc lá»—i do quan hệ phụ thuá»™c chÆ°a thoả. TrÆ°á»ng hợp này vẫn đúng,"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
@@ -2022,36 +1984,36 @@ msgstr "Gặp lá»—i khi Ä‘á»c liên kết %s"
msgid "Failed to unlink %s"
msgstr "Việc bỠliên kết %s bị lỗi"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** Gặp lỗi khi liên kết %s đến %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " Hết hạn bỠliên kết của %sB.\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "Kho không có trÆ°á»ng gói"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s không có mục ghi đè (override)\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " ngÆ°á»i bảo trì %s là %s không phải %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s không có mục ghi đè (override) nguồn\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s cũng không có mục ghi đè (override) nhị phân\n"
@@ -2130,7 +2092,7 @@ msgstr "Gặp lỗi khi bỠliên kết %s"
msgid "Failed to rename %s to %s"
msgstr "Việc đổi tên %s thành %s bị lỗi"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
msgid ""
"Usage: apt-internal-solver\n"
"\n"
@@ -2201,7 +2163,7 @@ msgstr "Kho bị há»ng."
msgid "Tar checksum failed, archive corrupted"
msgstr "Lá»—i kiểm tổng tar, kho bị há»ng"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "Không rõ kiểu phần đầu tar %u, bộ phận %s"
@@ -2325,24 +2287,17 @@ msgid "Unable to stat %s"
msgstr "Không thể lấy thông tin thống kê %s"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "Äây không phải là má»™t kho DEB hợp lệ vì còn thiếu thành viên “%sâ€"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Äây không phải là má»™t kho DEB hợp lệ vì không có thành viên “%sâ€, “%s†hay "
-"“%sâ€"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Gặp lỗi nội bộ, không thể xác định vị trí thành viên %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "Tập tin Ä‘iá»u khiển không có khả năng phân tách"
@@ -2402,87 +2357,87 @@ msgstr ""
"dùng tắt đi."
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr "%li ngày %li giỠ%li phút %li giây"
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%li giỠ%li phút %li giây"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%li phút %li giây"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%li giây"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "Không tìm thấy vùng chá»n %s"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Không nhận biết kiểu viết tắt: “%câ€"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "Äang mở tập tin cấu hình %s..."
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, 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:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Gặp lỗi cú pháp %s:%u: Sai dạng thẻ"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Gặp lỗi cú pháp %s:%u: Có rác sau giá trị"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "Gặp lỗi cú pháp %s:%u: Chỉ có thể thực hiện chỉ thị mức đầu"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Gặp lá»—i cú pháp %s:%u: Quá nhiá»u chỉ thị bao gồm lồng nhau"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Gặp lá»—i cú pháp %s:%u: Äã được bao gồm từ đây"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, 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:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr ""
"Gặp lá»—i cú pháp %s:%u: chỉ thị `clear' thì yêu cầu má»™t cây tuỳ chá»n làm đối "
"số"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Gặp lỗi cú pháp %s:%u: Gặp rác tại kết thúc tập tin"
@@ -2507,48 +2462,48 @@ msgstr "..."
msgid "%c%s... %u%%"
msgstr "%c%s... %u%%"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "Không rõ tùy chá»n dòng lệnh “%c†[từ %s]."
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "Không hiểu tùy chá»n dòng lệnh %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "Tùy chá»n dòng lệnh %s không phải dạng lôgíc (đúng/sai)"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "Tùy chá»n %s yêu cầu má»™t đối số."
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "Tùy chá»n %s: Äặc tả mục cấu hình phải có má»™t “=<giá_trị>â€."
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "Tùy chá»n %s yêu cầu má»™t đối số kiểu số nguyên, không phải “%sâ€"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "Tùy chá»n “%s†quá dài"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "Không hiểu %s: hãy cố dùng true (đúng) hay false (sai)."
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "Thao tác không hợp lệ %s"
@@ -2562,49 +2517,49 @@ msgstr "Không thể lấy các thông tin cho điểm gắn kết %s"
msgid "Failed to stat the cdrom"
msgstr "Việc lấy các thông tin thống kê đĩa CD-ROM bị lỗi"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "Gặp vấn đỠkhi đóng tập tin gzip %s"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "Không dùng khả năng khóa cho tập tin khóa chỉ Ä‘á»c %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "Không thể mở tập tin khóa %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "Không dùng khả năng khóa cho tập tin khóa đã lắp kiểu NFS %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "Không thể lấy khóa %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
"Liệt kê các tập tin không thể được tạo ra vì '%s' không phải là một thư mục"
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr "Bá» qua '%s' trong thÆ° mục '%s'vì nó không phải là tập tin bình thÆ°á»ng"
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
"BỠqua tập tin '%s' trong thư mục '%s' vì nó không có phần đuôi mở rộng"
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
@@ -2612,70 +2567,70 @@ msgstr ""
"BỠqua tập tin '%s' trong thư mục '%s' vì nó có phần đuôi mở rộng không hợp "
"lệ"
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "Tiến trình phụ %s đã nhận một lỗi chia ra từng đoạn."
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "Tiến trình con %s đã nhận tín hiệu %u."
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "Tiến trình con %s đã trả vỠmột mã lỗi (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "Tiến trình con %s đã thoát bất thÆ°á»ng"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "Không thể mở tập tin %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "Không thể mở bộ mô tả tập tin %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "Việc tạo tiến trình con IPC bị lỗi"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "Gặp lỗi khi thực hiện nén"
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, c-format
msgid "read, still have %llu to read but none left"
msgstr "Ä‘á»c, còn cần Ä‘á»c %llu nhÆ°ng mà không có gì còn lại cả"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "ghi, còn cần ghi %llu nhưng mà không thể"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "Gặp vấn đỠkhi đóng tập tin %s"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "Gặp vấn đỠkhi đổi tên tập tin %s thành %s"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "Gặp vấn đỠkhi bỠliên kết tập tin %s"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "Gặp vấn đỠkhi đồng bộ hóa tập tin"
@@ -2792,12 +2747,12 @@ msgstr "Lỗi mở tập tin tình trạng StateFile %s"
msgid "Failed to write temporary StateFile %s"
msgstr "Lá»—i ghi tập tin tình trạng StateFile tạm thá»i %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "Không thể phân tích tập tin gói %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "Không thể phân tích tập tin gói %s (2)"
@@ -2881,7 +2836,7 @@ msgstr "Gặp dòng dạng sai %u trong danh sách nguồn %s (kiểu)."
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/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2890,12 +2845,12 @@ msgstr ""
"Không thể thá»±c hiện ngay lập tức tiến trình cấu hình “%sâ€. Xem “man 5 apt."
"conf †dưới “APT::Immediate-Configure†để tìm chi tiết. (%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, c-format
msgid "Could not configure '%s'. "
msgstr "Không thể cấu hình '%s'. "
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2918,7 +2873,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:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2926,18 +2881,10 @@ 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:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "Không thể sá»­a trục trặc này, bạn đã giữ lại má»™t số gói bị há»ng."
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Một số tập tin chỉ mục không tải vỠđược. Chúng đã bị bỠqua, hoặc cái cũ đã "
-"được dùng thay thế."
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2980,12 +2927,12 @@ msgstr "Phương thức %s đã không khởi chạy đúng đắn."
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "Hãy cho đĩa có nhãn “%s†vào ổ “%s†rồi bấm nút Enter."
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "Không há»— trợ hệ thống đóng gói “%sâ€"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "Không thể quyết định kiểu hệ thống đóng gói thích hợp"
@@ -3022,18 +2969,18 @@ msgstr ""
"Giá trị '%s' không hợp lệ cho APT::Default-Release như vậy bản phát hành "
"không sẵn có trong mã nguồn"
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr ""
"Gặp mục ghi sai trong tập tin tùy thích %s: không có dòng đầu Package (Gói)."
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "Không hiểu kiểu ghim %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "Chưa ghi rõ ưu tiên (hay số không) cho ghim"
@@ -3100,16 +3047,20 @@ msgstr "Lỗi nhập/xuất khi lưu bộ nhớ tạm nguồn"
msgid "rename failed, %s (%s -> %s)."
msgstr "gặp lỗi khi đổi tên, %s (%s → %s)."
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "Mã băm tổng kiểm MD5Sum không khớp"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Mã băm tổng kiểm tra (hash sum) không khớp"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "Kích cỡ không khớp nhau"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "Thao tác không hợp lệ %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
@@ -3118,16 +3069,16 @@ msgstr ""
"Không tìm thấy mục cần thiết '%s' trong tập tin Phát hành (Sai mục trong "
"sources.list hoặc tập tin bị há»ng)"
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "Không thể tìm thấy mã băm tổng kiểm tra cho tập tin Phát hành %s"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "Không có khóa công sẵn sàng cho những mã số khoá theo đây:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
@@ -3136,12 +3087,12 @@ msgstr ""
"Tập tin phát hành %s đã hết hạn (không hợp lệ kể từ %s). Cập nhật cho kho "
"này sẽ không được áp dụng."
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "Bản phát hành xung đột: %s (cần %s nhưng lại nhận được %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3152,12 +3103,12 @@ msgstr ""
"Lá»—i GPG: %s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "Lá»—i GPG: %s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3166,16 +3117,12 @@ msgstr ""
"Không tìm thấy tập tin liên quan đến gói %s. Có lẽ bạn cần phải tự sửa gói "
"này, do thiếu kiến trúc."
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-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."
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr "Không tìm thấy nguồn cho việc tải vỠphiên bản '%s' of '%s'"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
@@ -3183,16 +3130,12 @@ 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:1879
-msgid "Size mismatch"
-msgstr "Kích cỡ không khớp nhau"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "Không thể phân tích cú pháp của tập tin Phát hành %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "Không có phần nào trong tập tin Phát hành %s"
@@ -3341,32 +3284,32 @@ msgstr "Không tìm thấy bản ghi xác thực cho: %s"
msgid "Hash mismatch for: %s"
msgstr "Sai khớp chuỗi duy nhất cho: %s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Không tìm thấy bản phát hành “%s†cho “%sâ€"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Không tìm thấy phiên bản “%s†cho “%sâ€"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "Không tìm thấy tác vụ “%sâ€"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "Không tìm thấy gói nào theo biểu thức chính quy “%sâ€"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "Không thể chá»n phiên bản trong gói “%s†vì nó chỉ là ảo"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
@@ -3375,17 +3318,17 @@ msgstr ""
"Không thể chá»n phiên bản được cài đặt hoặc phiên bản ứng cá»­ trong gói “%s†"
"mà không có trong nó"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr "Không thể chá»n phiên bản má»›i nhất trong gói “%s†vì nó chỉ là ảo"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr "Không thể chá»n phiên bản ứng cá»­ trong gói %s vì nó không có ứng cá»­"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3412,110 +3355,132 @@ msgstr "Bộ phân giải bên ngoài gặp lỗi mà không trả vỠthông t
msgid "Execute external solver"
msgstr "Thi hành bộ phân giải từ bên ngoài"
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "Äang chạy dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Một số tập tin chỉ mục không tải vỠđược. Chúng đã bị bỠqua, hoặc cái cũ đã "
+"được dùng thay thế."
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "Äang cài đặt %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "Äang cấu hình %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "Äang gỡ bá» %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "Äang gỡ bá» hoàn toàn %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "Äang ghi chép sá»± biến mất của %s"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "Äang chạy bẫy sau-cài-đặt %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "Thiếu thÆ° mục “%sâ€"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "Không thể mở tập tin “%sâ€"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "Äang chuẩn bị %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "Äang mở gói %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "Äang chuẩn bị cấu hình %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "Äã cài đặt %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "Äang chuẩn bị gỡ bá» %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "Äã gỡ bá» %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, 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:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "Gỡ bỠhoàn toàn %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr "Không thể ghi nhật ký, openpty() bị lỗi (“/dev/pts†chưa gắn?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "Không thể ghi vào %s"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "Äang chạy dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr "Hệ Ä‘iá»u hành đã ngắt trÆ°á»›c khi nó kịp hoàn thành"
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
"Không ghi báo cáo apport, vì đã tới giới hạn số các báo cáo (MaxReports)"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "gặp vấn đỠvỠquan hệ phụ thuộc nên để lại không cấu hình"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
@@ -3523,14 +3488,14 @@ msgstr ""
"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi kế tiếp "
"do một sự thất bại trước đó."
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
"Không ghi báo cáo apport, vì thông Ä‘iệp lá»—i chỉ thị đây là má»™t lá»—i “đĩa đầyâ€"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
@@ -3538,7 +3503,15 @@ msgstr ""
"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “không đủ "
"bá»™ nhá»›â€"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+"Không ghi báo cáo apport, vì thông Ä‘iệp lá»—i chỉ thị đây là má»™t lá»—i “đĩa đầyâ€"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3572,6 +3545,93 @@ msgstr ""
msgid "Not locked"
msgstr "Chưa được khoá"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "Ghi chú: Ä‘ang chá»n “%s†cho tác vụ “%sâ€\n"
+
+#~ 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"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "Gói %s là gói ảo được cung cấp bởi:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [Không phải phiên bản ứng cử]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "Bạn nên chá»n má»™t rõ ràng gói cần cài."
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "Gói %s không phải sẵn sàng, nhưng mà một gói khác\n"
+#~ "đã tham chiếu đến nó. Có lẽ có gói còn thiếu,\n"
+#~ "không còn dùng nữa, hay chỉ sẵn sàng từ một nguồn khác.\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "Tuy nhiên, những gói theo đây thay thế nó:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "Gói “%s†không có ứng cử cài đặt"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "Không thể gỡ bỠđược gói ảo nhÆ° “%sâ€\n"
+
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr ""
+#~ "Chưa cài đặt gói %s nên không thể gỡ bỠnó. Có phải ý bạn là '%s'?\n"
+
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "Gói %s chưa được cài đặt, thế nên không thể gỡ bỠnó\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "Ghi chú: Ä‘ang chá»n “%s†thay cho “%sâ€\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr ""
+#~ "Äang bá» qua %s vì nó đã được cài đặt và chÆ°a đặt tùy chá»n Nâng cấp.\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr ""
+#~ "Äang bá» qua %s vì nó chÆ°a được cài đặt và chỉ Nâng cấp là được yêu cầu.\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "Không thể cài đặt lại %s vì không thể tải nó vá».\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s là phiên bản mới nhất.\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "Äã chá»n phiên bản “%s†(%s) cho “%sâ€\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "Äã chá»n phiên bản '%s' (%s) cho '%s' vì '%s'\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "Bá» qua bản phát hành đích không sẵn sàng “%s†của gói “%sâ€"
+
+#~ msgid "Downloading %s %s"
+#~ msgstr "Äang tải vá» %s %s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr ""
+#~ "Äây không phải là má»™t kho DEB hợp lệ vì không có thành viên “%sâ€, “%s†"
+#~ "hay “%sâ€"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "Mã băm tổng kiểm MD5Sum không khớp"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ 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."
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr "Không thể ghi nhật ký, openpty() bị lỗi (“/dev/pts†chưa gắn?)\n"
+
#~ msgid ""
#~ "A error occurred during the signature verification. The repository is not "
#~ "updated and the previous index files will be used. GPG error: %s: %s\n"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index ebccc335e..1d0e1ccfb 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.8.0~pre1\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2010-08-26 14:42+0800\n"
"Last-Translator: Aron Xu <happyaron.xu@gmail.com>\n"
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
@@ -19,150 +19,152 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "版本为 %2$s 的软件包 %1$s 有未满足的ä¾èµ–关系:\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "软件包å称总数:"
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
msgid "Total package structures: "
msgstr "全部软件包结构:"
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " 普通软件包:"
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " 完全虚拟软件包:"
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " å•è™šæ‹Ÿè½¯ä»¶åŒ…:"
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " æ··åˆè™šæ‹Ÿè½¯ä»¶åŒ…:"
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " 缺失:"
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "按版本共计:"
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "按ä¸åŒçš„说明共计:"
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "按ä¾èµ–关系共计:"
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "按版本/文件关系共计:"
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "按说明/文件关系共计:"
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "æ供映射共计:"
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "Glob 字串共计:"
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "ä¾èµ–关系版本å所å ç©ºé—´å…±è®¡ï¼š"
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "Slack 空间共计:"
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "总å ç”¨ç©ºé—´ï¼š"
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "软件包文件 %s 尚未åŒæ­¥ã€‚"
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "没有å‘现匹é…的软件包"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
msgid "You must give at least one search pattern"
msgstr "您必须明确地给出至少一个表达å¼"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "未å‘现软件包 %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "软件包文件:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "缓存尚未åŒæ­¥ï¼Œæ— æ³•äº¤å·®å¼•è¯(x-ref)一个软件包文件"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "被é”定的软件包:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(没有找到)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " 已安装:"
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " 候选软件包:"
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(æ— )"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " 软件包é”:"
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " 版本列表:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s,用于 %s 构架,编译于 %s %s\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -237,35 +239,35 @@ msgstr ""
"è‹¥è¦äº†è§£æ›´å¤šä¿¡æ¯ï¼Œæ‚¨è¿˜å¯ä»¥æŸ¥é˜… apt-cache(8) å’Œ apt.conf(5) å‚考手册。\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
msgstr "请给这张盘片起个å字,比如“Debian 5.0.3 Disk 1â€"
-#: cmdline/apt-cdrom.cc:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "请把盘片æ’入驱动器å†æŒ‰å›žè½¦é”®"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "无法将 %s 挂载到 %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "请对您的盘片套件中的其它盘片é‡å¤ç›¸åŒçš„æ“作。"
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "å‚数没有æˆå¯¹"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -293,582 +295,55 @@ msgstr ""
" -c=? 读å–指定的é…置文件\n"
" -o=? 设置任æ„指定的é…置选项,例如:-o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr ""
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "编译正则表达å¼æ—¶å‡ºé”™ - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "下列软件包有未满足的ä¾èµ–关系:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "但是 %s å·²ç»å®‰è£…"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "但是 %s æ­£è¦è¢«å®‰è£…"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "但无法安装它"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "但是它是虚拟软件包"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "但是它还没有被安装"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "但是它将ä¸ä¼šè¢«å®‰è£…"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr " 或"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "下列ã€æ–°ã€‘软件包将被安装:"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "下列软件包将被ã€å¸è½½ã€‘:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "下列软件包的版本将ä¿æŒä¸å˜ï¼š"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "下列软件包将被å‡çº§ï¼š"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "下列软件包将被ã€é™çº§ã€‘:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "下列被è¦æ±‚ä¿æŒç‰ˆæœ¬ä¸å˜çš„软件包将被改å˜ï¼š"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (是由于 %s) "
-
-#: cmdline/apt-get.cc:600
-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"
-"请勿å°è¯•ï¼Œé™¤éžæ‚¨ç¡®å®žçŸ¥é“您在åšä»€ä¹ˆï¼"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "å‡çº§äº† %lu 个软件包,新安装了 %lu 个软件包,"
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "é‡æ–°å®‰è£…了 %lu 个软件包,"
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "é™çº§äº† %lu 个软件包,"
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "è¦å¸è½½ %lu 个软件包,有 %lu 个软件包未被å‡çº§ã€‚\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "有 %lu 个软件包没有被完全安装或å¸è½½ã€‚\n"
-
-#: cmdline/apt-get.cc:664
-#, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "注æ„,为任务 %2$s 选中了 %1$s\n"
-
-#: cmdline/apt-get.cc:669
-#, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "注æ„,根æ®æ­£åˆ™è¡¨è¾¾å¼ %2$s 选中了 %1$s\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "软件包 %s 是一个由下é¢çš„软件包æ供的虚拟软件包:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr " [已安装]"
-
-#: cmdline/apt-get.cc:706
-msgid " [Not candidate version]"
-msgstr " [无候选版本]"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "请您明确地选择一个æ¥è¿›è¡Œå®‰è£…。"
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"现在没有å¯ç”¨çš„软件包 %s,但是它被其它的软件包引用了。\n"
-"è¿™å¯èƒ½æ„味ç€è¿™ä¸ªç¼ºå¤±çš„软件包å¯èƒ½å·²è¢«åºŸå¼ƒï¼Œ\n"
-"或者åªèƒ½åœ¨å…¶ä»–å‘布æºä¸­æ‰¾åˆ°\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "å¯æ˜¯ä¸‹åˆ—软件包å–代了它:"
-
-#: cmdline/apt-get.cc:741
-#, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "软件包 %s 没有å¯ä¾›å®‰è£…的候选者"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr "类似 %s 的虚拟软件包å¯ä»¥å¸è½½\n"
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "软件包 %s 还未安装,因而ä¸ä¼šè¢«å¸è½½\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "软件包 %s 还未安装,因而ä¸ä¼šè¢«å¸è½½\n"
-
-#: cmdline/apt-get.cc:817
-#, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "注æ„ï¼Œé€‰å– %s è€Œéž %s\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "忽略了 %s,它已ç»è¢«å®‰è£…而且没有指定è¦å‡çº§ã€‚\n"
-
-#: cmdline/apt-get.cc:851
-#, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "忽略了 %s,它已ç»è¢«å®‰è£…而且仅请求了å‡çº§ã€‚\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "ä¸èƒ½é‡æ–°å®‰è£… %s,因为无法下载它。\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s å·²ç»æ˜¯æœ€æ–°çš„版本了。\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s 被设置为手动安装。\n"
-
-#: cmdline/apt-get.cc:913
-#, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "正在更正ä¾èµ–关系..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " 失败。"
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "无法更正ä¾èµ–关系"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "无法最å°åŒ–è¦å‡çº§çš„软件包集åˆ"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " 完æˆ"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "您也许需è¦è¿è¡Œâ€œapt-get -f installâ€æ¥ä¿®æ­£ä¸Šé¢çš„错误。"
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "ä¸èƒ½æ»¡è¶³ä¾èµ–关系。ä¸å¦¨è¯•ä¸€ä¸‹ -f 选项。"
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ã€è­¦å‘Šã€‘:下列软件包ä¸èƒ½é€šè¿‡éªŒè¯ï¼"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "忽略了认è¯è­¦å‘Šã€‚\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "ä¸ç»éªŒè¯å°±å®‰è£…这些软件包å—?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "有些软件包ä¸èƒ½é€šè¿‡éªŒè¯"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "碰到了一些问题,您使用了 -y 选项,但是没有用 --force-yes"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "内部错误,InstallPackages 被用在了无法安装的软件包上ï¼"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "有软件包需è¦è¢«å¸è½½ï¼Œä½†æ˜¯å¸è½½åŠ¨ä½œè¢«ç¨‹åºè®¾ç½®æ‰€ç¦æ­¢ã€‚"
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "内部错误,Ordering 未能完æˆ"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "怪了……文件大å°ä¸ç¬¦ï¼Œè¯·å‘ä¿¡ç»™ apt@packages.debian.org å§"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "需è¦ä¸‹è½½ %sB/%sB 的软件包。\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "需è¦ä¸‹è½½ %sB 的软件包。\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "解压缩åŽä¼šæ¶ˆè€—掉 %sB çš„é¢å¤–空间。\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "解压缩åŽå°†ä¼šç©ºå‡º %sB 的空间。\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "无法获知您在 %s 上的å¯ç”¨ç©ºé—´"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "您在 %s 上没有足够的å¯ç”¨ç©ºé—´ã€‚"
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "虽然您指定了仅执行常规æ“作,但这ä¸æ˜¯ä¸ªå¸¸è§„æ“作。"
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "是,按我说的åšï¼"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"您的æ“作会导致潜在的å±å®³ã€‚\n"
-"若还想继续的è¯ï¼Œå°±è¾“入下é¢çš„短å¥â€œ%sâ€\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "中止执行。"
-
-#: cmdline/apt-get.cc:1313
-msgid "Do you want to continue?"
-msgstr "您希望继续执行å—?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "无法下载 %s %s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "有一些文件无法下载"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "下载完毕,目å‰æ˜¯â€œä»…下载â€æ¨¡å¼"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"有几个软件包无法下载,您å¯ä»¥è¿è¡Œ apt-get update 或者加上 --fix-missing 的选项"
-"å†è¯•è¯•ï¼Ÿ"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "ç›®å‰è¿˜ä¸æ”¯æŒ --fix-missing 和介质交æ¢"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "无法更正缺少的软件包。"
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "中止安装。"
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] "以下软件包因为文件已被其他软件包覆盖而消失:"
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr "注æ„:这是自动被 dpkg 有æ„完æˆçš„。"
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr "忽略ä¸å¯ç”¨çš„软件包 %2$s 的目标å‘行版本 %1$s"
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "选择 %s 作为æºä»£ç åŒ…è€Œéž %s\n"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr "忽略ä¸å¯ç”¨çš„ %2$s 软件包的 %1$s 版"
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr " update 命令ä¸éœ€è¦å‚æ•°"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr "我们ä¸åº”该进行删除,无法å¯åŠ¨è‡ªåŠ¨åˆ é™¤å™¨"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr "似乎自动å¸è½½å·¥å…·æŸå了一些软件,这ä¸åº”该å‘ç”Ÿã€‚è¯·å‘ apt æ交错误报告。"
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "下列信æ¯å¯èƒ½ä¼šå¯¹è§£å†³é—®é¢˜æœ‰æ‰€å¸®åŠ©ï¼š"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "内部错误,自动å¸è½½å·¥å…·å事了"
-
-#: cmdline/apt-get.cc:1860
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "下列软件包是自动安装的并且现在ä¸éœ€è¦äº†ï¼š"
-
-#: cmdline/apt-get.cc:1864
-#, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "%lu 个自动安装的的软件包现在已ä¸å†éœ€è¦äº†ã€‚\n"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "使用'apt-get autoremove'æ¥å¸è½½å®ƒä»¬"
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "内部错误,全部å‡çº§å·¥å…·å事了"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "您å¯èƒ½éœ€è¦è¿è¡Œâ€œapt-get -f installâ€æ¥çº æ­£ä¸‹åˆ—错误:"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"有未能满足的ä¾èµ–关系。请å°è¯•ä¸æŒ‡æ˜Žè½¯ä»¶åŒ…çš„åå­—æ¥è¿è¡Œâ€œapt-get -f installâ€(也å¯"
-"以指定一个解决办法)。"
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"有一些软件包无法被安装。如果您用的是 unstable å‘行版,这也许是\n"
-"因为系统无法达到您è¦æ±‚的状æ€é€ æˆçš„。该版本中å¯èƒ½ä¼šæœ‰ä¸€äº›æ‚¨éœ€è¦çš„软件\n"
-"包尚未被创建或是它们已被从新到(Incoming)目录移出。"
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "ç ´æŸçš„软件包"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "将会安装下列é¢å¤–的软件包:"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "建议安装的软件包:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "推è安装的软件包:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "无法找到软件包 %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s 被设置为手动安装。\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s 被设置为手动安装。\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "正在对å‡çº§è¿›è¡Œè®¡ç®—... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "失败"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "完æˆ"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "内部错误,问题解决工具å事了"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "无法é”定下载目录"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "è¦ä¸‹è½½æºä»£ç ï¼Œå¿…须指定至少一个对应的软件包"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "无法找到与 %s 对应的æºä»£ç åŒ…"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
@@ -877,7 +352,7 @@ msgstr ""
"æ示:%s 的打包工作被维护于以下ä½ç½®çš„ %s 版本控制系统中:\n"
"%s\n"
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, fuzzy, c-format
msgid ""
"Please use:\n"
@@ -888,104 +363,114 @@ msgstr ""
"bzr get %s\n"
"获得该软件包的最近更新(å¯èƒ½å°šæœªæ­£å¼å‘布)。\n"
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "忽略已下载过的文件“%sâ€\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "无法获知您在 %s 上的å¯ç”¨ç©ºé—´"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "您在 %s 上没有足够的å¯ç”¨ç©ºé—´"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "需è¦ä¸‹è½½ %sB/%sB çš„æºä»£ç åŒ…。\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "需è¦ä¸‹è½½ %sB çš„æºä»£ç åŒ…。\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "下载æºä»£ç  %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "有一些包文件无法下载。"
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "下载完毕,目å‰æ˜¯â€œä»…下载â€æ¨¡å¼"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "忽略已ç»è¢«è§£åŒ…到 %s 目录的æºä»£ç åŒ…\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "è¿è¡Œè§£åŒ…的命令“%sâ€å‡ºé”™ã€‚\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "请检查是å¦å®‰è£…了“dpkg-devâ€è½¯ä»¶åŒ…。\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "执行构造软件包命令“%sâ€å¤±è´¥ã€‚\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "å­è¿›ç¨‹å‡ºé”™"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr "è¦æ£€æŸ¥ç”Ÿæˆè½¯ä»¶åŒ…的构建ä¾èµ–关系,必须指定至少一个软件包"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "无法获得 %s 的构建ä¾èµ–关系信æ¯"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr " %s 没有构建ä¾èµ–关系信æ¯ã€‚\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
"packages"
msgstr "由于无法找到软件包 %3$s ,因此ä¸èƒ½æ»¡è¶³ %2$s 所è¦æ±‚çš„ %1$s ä¾èµ–关系"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, 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:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -994,37 +479,37 @@ msgstr ""
"由于无法找到符åˆè¦æ±‚的软件包 %3$s çš„å¯ç”¨ç‰ˆæœ¬ï¼Œå› æ­¤ä¸èƒ½æ»¡è¶³ %2$s 所è¦æ±‚çš„ "
"%1$s ä¾èµ–关系"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
"version"
msgstr "由于无法找到软件包 %3$s ,因此ä¸èƒ½æ»¡è¶³ %2$s 所è¦æ±‚çš„ %1$s ä¾èµ–关系"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "无法满足 %2$s 所è¦æ±‚ %1$s ä¾èµ–关系:%3$s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "ä¸èƒ½æ»¡è¶³è½¯ä»¶åŒ… %s 所è¦æ±‚的构建ä¾èµ–关系。"
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "无法处ç†æž„建ä¾èµ–关系"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "正在连接 %s (%s)"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "支æŒçš„模å—:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1112,101 +597,53 @@ msgstr ""
"以获å–更多信æ¯å’Œé€‰é¡¹ã€‚\n"
" 本 APT 具有超级牛力。\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-"注æ„:这åªæ˜¯æ¨¡æ‹Ÿï¼\n"
-"   apt-get éœ€è¦ root 特æƒè¿›è¡Œå®žé™…的执行。\n"
-"   åŒæ—¶è¯·è®°ä½æ­¤æ—¶å¹¶æœªé”定,所以请勿完全相信当å‰çš„情况ï¼"
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "命中 "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "获å–:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "忽略 "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "错误 "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "下载 %sB,耗时 %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [执行中]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"æ›´æ¢ä»‹è´¨ï¼šè¯·æŠŠæ ‡æœ‰\n"
-"“%sâ€\n"
-"的盘片æ’入驱动器“%sâ€å†æŒ‰å›žè½¦é”®\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "但是它还没有被安装"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s 被设置为手动安装。\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s 被设置为手动安装。\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s å·²ç»æ˜¯æœ€æ–°çš„版本了。\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s å·²ç»æ˜¯æœ€æ–°çš„版本了。\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "等待å­è¿›ç¨‹ %s 的退出,但是它并ä¸å­˜åœ¨"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s 已设置为手动安装。\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "无法打开 %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1228,6 +665,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1324,8 +778,8 @@ msgstr "连接超时"
msgid "Server closed the connection"
msgstr "æœåŠ¡å™¨å…³é—­äº†è¿žæŽ¥"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "读错误"
@@ -1338,8 +792,8 @@ msgid "Protocol corruption"
msgstr "å议有误"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "写出错"
@@ -1351,6 +805,10 @@ msgstr "无法创建套接字"
msgid "Could not connect data socket, connection timed out"
msgstr "无法连接上数æ®å¥—接字,连接超时"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "失败"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "无法连接被动模å¼çš„套接字。"
@@ -1393,7 +851,7 @@ msgstr "æ•°æ®å¥—接字连接超时"
msgid "Unable to accept connection"
msgstr "无法接å—连接"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "把文件加入哈希表时出错"
@@ -1521,81 +979,586 @@ msgstr "由于没有公钥,无法验è¯ä¸‹åˆ—ç­¾å:\n"
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "写入文件出错"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "从æœåŠ¡å™¨è¯»å–æ•°æ®æ—¶å‡ºé”™ï¼Œå¯¹æ–¹å…³é—­äº†è¿žæŽ¥"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "从æœåŠ¡å™¨è¯»å–æ•°æ®å‡ºé”™"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "写入文件出错"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "select 调用出错"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "连接超时"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "写输出文件时出错"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "正在等待报头"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "错误的报头行"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "该 HTTP æœåŠ¡å™¨å‘é€äº†ä¸€ä¸ªæ— æ•ˆçš„应答报头"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "该 HTTP æœåŠ¡å™¨å‘é€äº†ä¸€ä¸ªæ— æ•ˆçš„ Content-Length 报头"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "该 HTTP æœåŠ¡å™¨å‘é€äº†ä¸€ä¸ªæ— æ•ˆçš„ Content-Range 报头"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "该 HTTP æœåŠ¡å™¨çš„ range 支æŒä¸æ­£å¸¸"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "无法识别的日期格å¼"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "select 调用出错"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "错误的报头数æ®"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "连接超时"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "连接失败"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "写输出文件时出错"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "内部错误"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "写入文件出错"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "写入文件出错"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "内部错误,InstallPackages 被用在了无法安装的软件包上ï¼"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "从æœåŠ¡å™¨è¯»å–æ•°æ®æ—¶å‡ºé”™ï¼Œå¯¹æ–¹å…³é—­äº†è¿žæŽ¥"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "有软件包需è¦è¢«å¸è½½ï¼Œä½†æ˜¯å¸è½½åŠ¨ä½œè¢«ç¨‹åºè®¾ç½®æ‰€ç¦æ­¢ã€‚"
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "从æœåŠ¡å™¨è¯»å–æ•°æ®å‡ºé”™"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "内部错误,Ordering 未能完æˆ"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "错误的报头数æ®"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "怪了……文件大å°ä¸ç¬¦ï¼Œè¯·å‘ä¿¡ç»™ apt@packages.debian.org å§"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "连接失败"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "需è¦ä¸‹è½½ %sB/%sB 的软件包。\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "内部错误"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "需è¦ä¸‹è½½ %sB 的软件包。\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "解压缩åŽä¼šæ¶ˆè€—掉 %sB çš„é¢å¤–空间。\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "解压缩åŽå°†ä¼šç©ºå‡º %sB 的空间。\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "您在 %s 上没有足够的å¯ç”¨ç©ºé—´ã€‚"
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "碰到了一些问题,您使用了 -y 选项,但是没有用 --force-yes"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "虽然您指定了仅执行常规æ“作,但这ä¸æ˜¯ä¸ªå¸¸è§„æ“作。"
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "是,按我说的åšï¼"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"您的æ“作会导致潜在的å±å®³ã€‚\n"
+"若还想继续的è¯ï¼Œå°±è¾“入下é¢çš„短å¥â€œ%sâ€\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "中止执行。"
+
+#: apt-private/private-install.cc:254
+msgid "Do you want to continue?"
+msgstr "您希望继续执行å—?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "有一些文件无法下载"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"有几个软件包无法下载,您å¯ä»¥è¿è¡Œ apt-get update 或者加上 --fix-missing 的选项"
+"å†è¯•è¯•ï¼Ÿ"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "ç›®å‰è¿˜ä¸æ”¯æŒ --fix-missing 和介质交æ¢"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "无法更正缺少的软件包。"
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "中止安装。"
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] "以下软件包因为文件已被其他软件包覆盖而消失:"
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr "注æ„:这是自动被 dpkg 有æ„完æˆçš„。"
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "我们ä¸åº”该进行删除,无法å¯åŠ¨è‡ªåŠ¨åˆ é™¤å™¨"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr "似乎自动å¸è½½å·¥å…·æŸå了一些软件,这ä¸åº”该å‘ç”Ÿã€‚è¯·å‘ apt æ交错误报告。"
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "下列信æ¯å¯èƒ½ä¼šå¯¹è§£å†³é—®é¢˜æœ‰æ‰€å¸®åŠ©ï¼š"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "内部错误,自动å¸è½½å·¥å…·å事了"
+
+#: apt-private/private-install.cc:524
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "下列软件包是自动安装的并且现在ä¸éœ€è¦äº†ï¼š"
+
+#: apt-private/private-install.cc:528
+#, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "%lu 个自动安装的的软件包现在已ä¸å†éœ€è¦äº†ã€‚\n"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "使用'apt-get autoremove'æ¥å¸è½½å®ƒä»¬"
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "您å¯èƒ½éœ€è¦è¿è¡Œâ€œapt-get -f installâ€æ¥çº æ­£ä¸‹åˆ—错误:"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"有未能满足的ä¾èµ–关系。请å°è¯•ä¸æŒ‡æ˜Žè½¯ä»¶åŒ…çš„åå­—æ¥è¿è¡Œâ€œapt-get -f installâ€(也å¯"
+"以指定一个解决办法)。"
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"有一些软件包无法被安装。如果您用的是 unstable å‘行版,这也许是\n"
+"因为系统无法达到您è¦æ±‚的状æ€é€ æˆçš„。该版本中å¯èƒ½ä¼šæœ‰ä¸€äº›æ‚¨éœ€è¦çš„软件\n"
+"包尚未被创建或是它们已被从新到(Incoming)目录移出。"
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "ç ´æŸçš„软件包"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "将会安装下列é¢å¤–的软件包:"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "建议安装的软件包:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "推è安装的软件包:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ã€è­¦å‘Šã€‘:下列软件包ä¸èƒ½é€šè¿‡éªŒè¯ï¼"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "忽略了认è¯è­¦å‘Šã€‚\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "有些软件包ä¸èƒ½é€šè¿‡éªŒè¯"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "ä¸ç»éªŒè¯å°±å®‰è£…这些软件包å—?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "无法下载 %s %s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr " [已安装]"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr " [已安装]"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr " [已安装]"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "下列软件包有未满足的ä¾èµ–关系:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "但是 %s å·²ç»å®‰è£…"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "但是 %s æ­£è¦è¢«å®‰è£…"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "但无法安装它"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "但是它是虚拟软件包"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "但是它还没有被安装"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "但是它将ä¸ä¼šè¢«å®‰è£…"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr " 或"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "下列ã€æ–°ã€‘软件包将被安装:"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "下列软件包将被ã€å¸è½½ã€‘:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "下列软件包的版本将ä¿æŒä¸å˜ï¼š"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "下列软件包将被å‡çº§ï¼š"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "下列软件包将被ã€é™çº§ã€‘:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "下列被è¦æ±‚ä¿æŒç‰ˆæœ¬ä¸å˜çš„软件包将被改å˜ï¼š"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (是由于 %s) "
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ã€è­¦å‘Šã€‘:下列基础软件包将被å¸è½½ã€‚\n"
+"请勿å°è¯•ï¼Œé™¤éžæ‚¨ç¡®å®žçŸ¥é“您在åšä»€ä¹ˆï¼"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "å‡çº§äº† %lu 个软件包,新安装了 %lu 个软件包,"
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "é‡æ–°å®‰è£…了 %lu 个软件包,"
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "é™çº§äº† %lu 个软件包,"
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "è¦å¸è½½ %lu 个软件包,有 %lu 个软件包未被å‡çº§ã€‚\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "有 %lu 个软件包没有被完全安装或å¸è½½ã€‚\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr ""
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "编译正则表达å¼æ—¶å‡ºé”™ - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "正在更正ä¾èµ–关系..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " 失败。"
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "无法更正ä¾èµ–关系"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "无法最å°åŒ–è¦å‡çº§çš„软件包集åˆ"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " 完æˆ"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "您也许需è¦è¿è¡Œâ€œapt-get -f installâ€æ¥ä¿®æ­£ä¸Šé¢çš„错误。"
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "ä¸èƒ½æ»¡è¶³ä¾èµ–关系。ä¸å¦¨è¯•ä¸€ä¸‹ -f 选项。"
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr " update 命令ä¸éœ€è¦å‚æ•°"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "正在对å‡çº§è¿›è¡Œè®¡ç®—... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "内部错误,全部å‡çº§å·¥å…·å事了"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "完æˆ"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+"注æ„:这åªæ˜¯æ¨¡æ‹Ÿï¼\n"
+"   apt-get éœ€è¦ root 特æƒè¿›è¡Œå®žé™…的执行。\n"
+"   åŒæ—¶è¯·è®°ä½æ­¤æ—¶å¹¶æœªé”定,所以请勿完全相信当å‰çš„情况ï¼"
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "无法将 %s é‡å‘½å为 %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "命中 "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "获å–:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "忽略 "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "错误 "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "下载 %sB,耗时 %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [执行中]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"æ›´æ¢ä»‹è´¨ï¼šè¯·æŠŠæ ‡æœ‰\n"
+"“%sâ€\n"
+"的盘片æ’入驱动器“%sâ€å†æŒ‰å›žè½¦é”®\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "æ— æ³•è¯»å– %s"
@@ -1654,32 +1617,32 @@ msgstr "无法为å­è¿›ç¨‹åˆ›å»º IPC 管é“"
msgid "Connection closed prematurely"
msgstr "连接被永久关闭"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "错误的默认设置ï¼"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "按回车键继续。"
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "您想è¦åˆ é™¤ä¹‹å‰ä¸‹è½½çš„所有 .deb 文件å—?"
-#: dselect/install:101
+#: dselect/install:102
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "在解包时å‘生了一些错误。已ç»å®‰è£…的软件包"
-#: dselect/install:102
+#: dselect/install:103
msgid "will be configured. This may result in duplicate errors"
msgstr "将被é…置。这个æ“作å¯èƒ½ä¼šå¯¼è‡´å‡ºçŽ°é‡å¤çš„错误"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "或一些由于ä¾èµ–关系ä¸èƒ½æ»¡è¶³æ‰€äº§ç”Ÿçš„错误。这个问题ä¸å¤§ï¼Œåªæœ‰"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "这个æ示之å‰çš„错误消æ¯æ‰å€¼å¾—您注æ„。请更正它们,然åŽå†æ¬¡æ‰§è¡Œ [I]nstall"
@@ -1926,36 +1889,36 @@ msgstr "无法读å–符å·é“¾æŽ¥ %s"
msgid "Failed to unlink %s"
msgstr "无法使用 unlink 删除 %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** 无法将 %s 链接到 %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " 达到了 DeLink çš„ä¸Šé™ %sB。\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "å½’æ¡£æ–‡ä»¶æ²¡æœ‰åŒ…å« package 字段"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s 中没有 override 项\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s 的维护者 %s å¹¶éž %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s 没有æºä»£ç çš„ override 项\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s 中没有二进制文件的 override 项\n"
@@ -2034,7 +1997,7 @@ msgstr "在使用 unlink 删除 %s 时出错"
msgid "Failed to rename %s to %s"
msgstr "无法将 %s é‡å‘½å为 %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2103,7 +2066,7 @@ msgstr "包文件已被æŸå"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar 的校验和ä¸ç¬¦ï¼Œæ–‡ä»¶å·²æŸå"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "未知的 TAR æ•°æ®å¤´ç±»åž‹ %u,æˆå‘˜ %s"
@@ -2227,22 +2190,17 @@ msgid "Unable to stat %s"
msgstr "æ— æ³•è¯»å– %s 的状æ€"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "è¿™ä¸æ˜¯ä¸€ä¸ªæœ‰æ•ˆçš„ DEB 包文件,其包内é—æ¼äº†â€œ%sâ€"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "è¿™ä¸æ˜¯ä¸€ä¸ªæœ‰æ•ˆçš„ DEB 包文件,其包内é—æ¼äº†â€œ%sâ€ï¼Œâ€œ%sâ€æˆ–者“%sâ€"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "内部错误,无法定ä½åŒ…内文件 %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "ä¸èƒ½è§£æžçš„主控文件"
@@ -2299,85 +2257,85 @@ msgid ""
msgstr "无法增加 MMap 大å°ï¼Œå› ä¸ºç”¨æˆ·å·²ç¦ç”¨è‡ªåŠ¨å¢žåŠ ã€‚"
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, 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:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr "%liå°æ—¶ %li分 %li秒"
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr "%li分 %li秒"
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr "%li秒"
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "找ä¸åˆ°æ‚¨é€‰åˆ™çš„ %s"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "无法识别的类型缩写:“%câ€"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "正在打开é…置文件 %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "语法错误 %s:%u:é…ç½®å°èŠ‚没有以å字开头"
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "语法错误 %s:%u:标签格å¼æœ‰è¯¯"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "语法错误 %s:%u:é…置值åŽæœ‰å¤šä½™çš„æ— æ„义数æ®"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "语法错误 %s:%u:åªèƒ½åœ¨é¡¶å±‚é…置文件中使用指示"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "语法错误 %s:%u:太多的嵌套 include 命令"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "语法错误 %s:%u:Included from here"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "语法错误 %s:%u:ä¸æ”¯æŒçš„指令“%sâ€"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "语法错误 %s:%u:clean 指令需è¦ä¸€ä¸ªé€‰é¡¹æ ‘作为å‚æ•°"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "语法错误 %s:%u:文件尾部有多余的无æ„义的数æ®"
@@ -2402,48 +2360,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... 完æˆ"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "未知的命令行选项“%c†[æ¥è‡ª %s]"
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "无法识别命令行选项 %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "命令行选项 %s ä¸æ˜¯å¸ƒå°”值"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "选项 %s è¦æ±‚有一个å‚æ•°"
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "选项 %s:é…置项åŽå¿…须包å«æœ‰å½¢å¦‚“=<å˜é‡>â€çš„具体指定"
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "选项 %s è¦æ±‚有一个整数作为å‚数,而ä¸æ˜¯â€œ%sâ€"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "选项“%sâ€å¤ªé•¿"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "ä¸èƒ½è¯†åˆ«å‚æ•° %s,请用 true 或 false"
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "无效的æ“作 %s"
@@ -2457,116 +2415,116 @@ msgstr "无法读å–文件系统挂载点 %s 的状æ€"
msgid "Failed to stat the cdrom"
msgstr "无法读å–盘片的状æ€"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, c-format
msgid "Problem closing the gzip file %s"
msgstr "关闭 gzip %s 文件出错"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "由于文件系统为åªè¯»ï¼Œå› è€Œæ— æ³•ä½¿ç”¨æ–‡ä»¶é” %s"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "无法打开é”文件 %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "无法在 nfs æ–‡ä»¶ç³»ç»Ÿä¸Šä½¿ç”¨æ–‡ä»¶é” %s"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "æ— æ³•èŽ·å¾—é” %s"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "å­è¿›ç¨‹ %s å‘生了段错误"
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, c-format
msgid "Sub-process %s received signal %u."
msgstr "å­è¿›ç¨‹ %s æ”¶åˆ°ä¿¡å· %u。"
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "å­è¿›ç¨‹ %s è¿”å›žäº†ä¸€ä¸ªé”™è¯¯å· (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "å­è¿›ç¨‹ %s 异常退出"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "无法打开文件 %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, c-format
msgid "Could not open file descriptor %d"
msgstr "无法打开文件æ述符 %d"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "无法创建å­è¿›ç¨‹çš„ IPC 管é“"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "无法执行压缩程åº"
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "读å–文件出错,还剩 %lu 字节没有读出"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "写入文件出错,还剩 %lu 字节没有ä¿å­˜"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, c-format
msgid "Problem closing the file %s"
msgstr "关闭文件 %s 出错"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, c-format
msgid "Problem renaming the file %s to %s"
msgstr "é‡å‘½å文件 %s 为 %s 出错"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, c-format
msgid "Problem unlinking the file %s"
msgstr "用 unlink 删除文件 %s 出错"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "åŒæ­¥æ–‡ä»¶å‡ºé”™"
@@ -2684,12 +2642,12 @@ msgstr "无法打开状æ€æ–‡ä»¶ %s"
msgid "Failed to write temporary StateFile %s"
msgstr "无法写入临时状æ€æ–‡ä»¶ %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "无法解æžè½¯ä»¶åŒ…文件 %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "无法解æžè½¯ä»¶åŒ…文件 %s (2)"
@@ -2764,7 +2722,7 @@ msgstr "在æºåˆ—表 %2$s 中第 %1$u 行的格å¼æœ‰è¯¯(类型)"
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "无法识别在æºåˆ—表 %3$s 里,第 %2$u 行中的软件包类别“%1$sâ€"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
@@ -2773,12 +2731,12 @@ msgstr ""
"无法立å³å¯¹ %s 进行é…置。请查看 man 5 apt.conf 中的 APT::Immediate-Configure "
"(%d)"
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "无法打开文件 %s"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2800,7 +2758,7 @@ msgid ""
"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr "软件包 %s 需è¦é‡æ–°å®‰è£…,但是我无法找到相应的安装文件。"
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2808,20 +2766,12 @@ msgstr ""
"错误,pkgProblemResolver::Resolve å‘生故障,这å¯èƒ½æ˜¯æœ‰è½¯ä»¶åŒ…被è¦æ±‚ä¿æŒçŽ°çŠ¶çš„"
"缘故。"
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr ""
"无法修正错误,因为您è¦æ±‚æŸäº›è½¯ä»¶åŒ…ä¿æŒçŽ°çŠ¶ï¼Œå°±æ˜¯å®ƒä»¬ç ´å了软件包间的ä¾èµ–å…³"
"系。"
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr ""
-"有一些索引文件ä¸èƒ½ä¸‹è½½ï¼Œå®ƒä»¬å¯èƒ½è¢«å¿½ç•¥äº†ï¼Œä¹Ÿå¯èƒ½è½¬è€Œä½¿ç”¨äº†æ—§çš„索引文件。"
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, c-format
msgid "List directory %spartial is missing."
@@ -2864,12 +2814,12 @@ msgstr "获å–è½¯ä»¶åŒ…çš„æ¸ é“ %s 所需的驱动程åºæ²¡æœ‰æ­£å¸¸å¯åŠ¨ã€‚"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "请把标有“%sâ€çš„盘片æ’入驱动器“%sâ€å†æŒ‰å›žè½¦é”®ã€‚"
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "ä¸æ”¯æŒâ€œ%sâ€æ‰“包系统"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "无法确定适åˆçš„打包系统类型"
@@ -2901,17 +2851,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "首选项文件 %s 中å‘现有无效的记录,无 Package 字段头"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "无法识别é”定的类型 %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "没有为版本é”定指定优先级(或为零)"
@@ -2978,44 +2928,48 @@ msgstr "无法读å–或写入软件æºç¼“å­˜"
msgid "rename failed, %s (%s -> %s)."
msgstr "无法é‡å‘½å文件,%s (%s -> %s)。"
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5 校验和ä¸ç¬¦"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Hash 校验和ä¸ç¬¦"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "大å°ä¸ç¬¦"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "无效的æ“作 %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "无法解æžè½¯ä»¶åŒ…仓库 Release 文件 %s"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "以下 ID 的密钥没有å¯ç”¨çš„公钥:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "冲çªçš„å‘行版:%s (期望 %s 但得到 %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3024,12 +2978,12 @@ msgstr ""
"校验签å出错。此仓库未被更新,ä»ç„¶ä½¿ç”¨ä»¥å‰çš„索引文件。GPG 错误:%s: %s\n"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr "GPG 错误:%s: %s"
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3038,30 +2992,23 @@ msgstr ""
"我无法找到一个对应 %s 软件包的文件。在这ç§æƒ…况下å¯èƒ½éœ€è¦æ‚¨æ‰‹åŠ¨ä¿®æ­£è¿™ä¸ªè½¯ä»¶"
"包。(缘于架构缺失)"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
+msgid "Can't find a source to download version '%s' of '%s'"
msgstr ""
-"我无法找到对应 %s 软件包的文件。在这ç§æƒ…况下您å¯èƒ½éœ€è¦æ‰‹åŠ¨ä¿®æ­£è¿™ä¸ªè½¯ä»¶åŒ…。"
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr "软件包的索引文件已æŸå。找ä¸åˆ°å¯¹åº”软件包 %s çš„ Filename: 字段。"
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "大å°ä¸ç¬¦"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "无法解æžè½¯ä»¶åŒ…仓库 Release 文件 %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "软件包仓库 Release 文件 %s 内无组件章节信æ¯"
@@ -3206,49 +3153,49 @@ msgstr "无法找到认è¯è®°å½•ï¼š%s"
msgid "Hash mismatch for: %s"
msgstr "Hash 校验和ä¸ç¬¦ï¼š%s"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "未找到“%2$sâ€çš„“%1$sâ€å‘布版本"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "未找到“%2$sâ€çš„“%1$sâ€ç‰ˆæœ¬"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, c-format
msgid "Couldn't find task '%s'"
msgstr "无法找到任务 %s"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "æ— æ³•æŒ‰ç…§æ­£åˆ™è¡¨è¾¾å¼ %s 找到任何软件包"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr "无法从完全虚拟的软件包 %s 中选择版本"
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr "因为软件包 %s 没有已安装或候选的版本,无法进行选择"
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr "因为软件包 %s 是完全的虚拟软件包,无法选择它的最新版"
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr "因为软件包 %s 没有候选版本,无法进行选择"
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr "因为软件包 %s 没有安装,无法选择它的已安装版本"
@@ -3273,127 +3220,156 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr "正在è¿è¡Œ dpkg"
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr ""
+"有一些索引文件ä¸èƒ½ä¸‹è½½ï¼Œå®ƒä»¬å¯èƒ½è¢«å¿½ç•¥äº†ï¼Œä¹Ÿå¯èƒ½è½¬è€Œä½¿ç”¨äº†æ—§çš„索引文件。"
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "正在安装 %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "正在é…ç½® %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "正在删除 %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, c-format
msgid "Completely removing %s"
msgstr "完全删除 %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr "注æ„到 %s å·²ç»æ¶ˆå¤±"
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "执行安装åŽæ‰§è¡Œçš„触å‘器 %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "目录 %s 缺失"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, c-format
msgid "Could not open file '%s'"
msgstr "无法打开文件 %s"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "正在准备 %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "正在解压缩 %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "正在准备é…ç½® %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "已安装 %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "正在准备 %s 的删除æ“作"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "已删除 %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "正在准备完全删除 %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "完全删除了 %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr "无法写入日志。 openpty() 失败(没有挂载 /dev/pts ?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "无法写入 %s"
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
-msgstr "正在è¿è¡Œ dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr "由于已ç»è¾¾åˆ° MaxReports é™åˆ¶ï¼Œæ²¡æœ‰å†™å…¥ apport 报告。"
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr "ä¾èµ–问题 - ä¿æŒæœªé…ç½®"
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr "因为错误消æ¯æŒ‡ç¤ºè¿™æ˜¯ç”±äºŽä¸Šä¸€ä¸ªé—®é¢˜å¯¼è‡´çš„错误,没有写入 apport 报告。"
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr "因为错误消æ¯æŒ‡ç¤ºè¿™æ˜¯ç”±äºŽç£ç›˜å·²æ»¡ï¼Œæ²¡æœ‰å†™å…¥ apport 报告。"
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr "因为错误消æ¯æŒ‡ç¤ºè¿™æ˜¯ç”±äºŽå†…å­˜ä¸è¶³ï¼Œæ²¡æœ‰å†™å…¥ apport 报告。"
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+#, fuzzy
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr "因为错误消æ¯æŒ‡ç¤ºè¿™æ˜¯ç”±äºŽç£ç›˜å·²æ»¡ï¼Œæ²¡æœ‰å†™å…¥ apport 报告。"
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr "因为错误消æ¯æŒ‡ç¤ºè¿™æ˜¯ä¸€ä¸ª dpkg I/O 错误,没有写入 apport 报告。"
@@ -3422,6 +3398,87 @@ msgstr "dpkg 被中断,您必须手工è¿è¡Œ %s 解决此问题。"
msgid "Not locked"
msgstr "未é”定"
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "注æ„,为任务 %2$s 选中了 %1$s\n"
+
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "注æ„,根æ®æ­£åˆ™è¡¨è¾¾å¼ %2$s 选中了 %1$s\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "软件包 %s 是一个由下é¢çš„软件包æ供的虚拟软件包:\n"
+
+#~ msgid " [Not candidate version]"
+#~ msgstr " [无候选版本]"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "请您明确地选择一个æ¥è¿›è¡Œå®‰è£…。"
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "现在没有å¯ç”¨çš„软件包 %s,但是它被其它的软件包引用了。\n"
+#~ "è¿™å¯èƒ½æ„味ç€è¿™ä¸ªç¼ºå¤±çš„软件包å¯èƒ½å·²è¢«åºŸå¼ƒï¼Œ\n"
+#~ "或者åªèƒ½åœ¨å…¶ä»–å‘布æºä¸­æ‰¾åˆ°\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "å¯æ˜¯ä¸‹åˆ—软件包å–代了它:"
+
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "软件包 %s 没有å¯ä¾›å®‰è£…的候选者"
+
+#~ msgid "Virtual packages like '%s' can't be removed\n"
+#~ msgstr "类似 %s 的虚拟软件包å¯ä»¥å¸è½½\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "软件包 %s 还未安装,因而ä¸ä¼šè¢«å¸è½½\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "软件包 %s 还未安装,因而ä¸ä¼šè¢«å¸è½½\n"
+
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "注æ„ï¼Œé€‰å– %s è€Œéž %s\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "忽略了 %s,它已ç»è¢«å®‰è£…而且没有指定è¦å‡çº§ã€‚\n"
+
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "忽略了 %s,它已ç»è¢«å®‰è£…而且仅请求了å‡çº§ã€‚\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "ä¸èƒ½é‡æ–°å®‰è£… %s,因为无法下载它。\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s å·²ç»æ˜¯æœ€æ–°çš„版本了。\n"
+
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n"
+
+#~ msgid "Ignore unavailable target release '%s' of package '%s'"
+#~ msgstr "忽略ä¸å¯ç”¨çš„软件包 %2$s 的目标å‘行版本 %1$s"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "è¿™ä¸æ˜¯ä¸€ä¸ªæœ‰æ•ˆçš„ DEB 包文件,其包内é—æ¼äº†â€œ%sâ€ï¼Œâ€œ%sâ€æˆ–者“%sâ€"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5 校验和ä¸ç¬¦"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr ""
+#~ "我无法找到对应 %s 软件包的文件。在这ç§æƒ…况下您å¯èƒ½éœ€è¦æ‰‹åŠ¨ä¿®æ­£è¿™ä¸ªè½¯ä»¶åŒ…。"
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr "无法写入日志。 openpty() 失败(没有挂载 /dev/pts ?)\n"
+
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "跳过ä¸å­˜åœ¨çš„文件 %s"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 5c1afdd03..ce766e05e 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.5.4\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-07-31 16:24+0200\n"
+"POT-Creation-Date: 2013-12-07 14:40+0100\n"
"PO-Revision-Date: 2009-01-28 10:41+0800\n"
"Last-Translator: Tetralet <tetralet@gmail.com>\n"
"Language-Team: Debian-user in Chinese [Big5] <debian-chinese-big5@lists."
@@ -18,152 +18,154 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: cmdline/apt-cache.cc:158
+#: cmdline/apt-cache.cc:140
#, c-format
msgid "Package %s version %s has an unmet dep:\n"
msgstr "套件 %s 版本 %s 未能滿足相ä¾æ€§ï¼š\n"
-#: cmdline/apt-cache.cc:286
+#: cmdline/apt-cache.cc:268
msgid "Total package names: "
msgstr "套件å稱åˆè¨ˆï¼š"
-#: cmdline/apt-cache.cc:288
+#: cmdline/apt-cache.cc:270
#, fuzzy
msgid "Total package structures: "
msgstr "套件å稱åˆè¨ˆï¼š"
-#: cmdline/apt-cache.cc:328
+#: cmdline/apt-cache.cc:310
msgid " Normal packages: "
msgstr " 一般套件:"
-#: cmdline/apt-cache.cc:329
+#: cmdline/apt-cache.cc:311
msgid " Pure virtual packages: "
msgstr " 完全虛擬套件:"
-#: cmdline/apt-cache.cc:330
+#: cmdline/apt-cache.cc:312
msgid " Single virtual packages: "
msgstr " 單一虛擬套件:"
-#: cmdline/apt-cache.cc:331
+#: cmdline/apt-cache.cc:313
msgid " Mixed virtual packages: "
msgstr " æ··åˆè™›æ“¬å¥—件:"
-#: cmdline/apt-cache.cc:332
+#: cmdline/apt-cache.cc:314
msgid " Missing: "
msgstr " 找ä¸åˆ°ï¼š"
-#: cmdline/apt-cache.cc:334
+#: cmdline/apt-cache.cc:316
msgid "Total distinct versions: "
msgstr "個別版本åˆè¨ˆï¼š"
-#: cmdline/apt-cache.cc:336
+#: cmdline/apt-cache.cc:318
msgid "Total distinct descriptions: "
msgstr "個別版本類別åˆè¨ˆï¼š"
-#: cmdline/apt-cache.cc:338
+#: cmdline/apt-cache.cc:320
msgid "Total dependencies: "
msgstr "相ä¾é—œä¿‚åˆè¨ˆï¼š"
-#: cmdline/apt-cache.cc:341
+#: cmdline/apt-cache.cc:323
msgid "Total ver/file relations: "
msgstr "版本/檔案關è¯åˆè¨ˆï¼š"
-#: cmdline/apt-cache.cc:343
+#: cmdline/apt-cache.cc:325
msgid "Total Desc/File relations: "
msgstr "類別/檔案關è¯åˆè¨ˆï¼š"
-#: cmdline/apt-cache.cc:345
+#: cmdline/apt-cache.cc:327
msgid "Total Provides mappings: "
msgstr "æ供者å°æ‡‰åˆè¨ˆï¼š"
-#: cmdline/apt-cache.cc:357
+#: cmdline/apt-cache.cc:339
msgid "Total globbed strings: "
msgstr "所有字串åˆè¨ˆï¼š"
-#: cmdline/apt-cache.cc:371
+#: cmdline/apt-cache.cc:353
msgid "Total dependency version space: "
msgstr "相ä¾ç‰ˆæœ¬ç©ºé–“åˆè¨ˆï¼š"
-#: cmdline/apt-cache.cc:376
+#: cmdline/apt-cache.cc:358
msgid "Total slack space: "
msgstr "間暇空間åˆè¨ˆï¼š"
-#: cmdline/apt-cache.cc:384
+#: cmdline/apt-cache.cc:366
msgid "Total space accounted for: "
msgstr "統計後的空間åˆè¨ˆï¼š"
-#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1165
+#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
+#: apt-private/private-show.cc:52
#, c-format
msgid "Package file %s is out of sync."
msgstr "套件檔 %s 未åŒæ­¥ã€‚"
-#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1452
-#: cmdline/apt-cache.cc:1454 cmdline/apt-cache.cc:1531 cmdline/apt-mark.cc:46
-#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
+#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
+#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
+#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
+#: apt-private/private-show.cc:114 apt-private/private-show.cc:116
msgid "No packages found"
msgstr "未找到套件"
-#: cmdline/apt-cache.cc:1265
+#: cmdline/apt-cache.cc:1245
#, fuzzy
msgid "You must give at least one search pattern"
msgstr "您必須明確得給定一個樣å¼"
-#: cmdline/apt-cache.cc:1431
+#: cmdline/apt-cache.cc:1411
msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
msgstr ""
-#: cmdline/apt-cache.cc:1526 apt-pkg/cacheset.cc:510
+#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
#, c-format
msgid "Unable to locate package %s"
msgstr "找ä¸åˆ°å¥—件 %s"
-#: cmdline/apt-cache.cc:1556
+#: cmdline/apt-cache.cc:1536
msgid "Package files:"
msgstr "套件檔:"
-#: cmdline/apt-cache.cc:1563 cmdline/apt-cache.cc:1654
+#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
msgid "Cache is out of sync, can't x-ref a package file"
msgstr "å¿«å–資料未åŒæ­¥ï¼Œç„¡æ³• x-ref 套件檔"
#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1577
+#: cmdline/apt-cache.cc:1557
msgid "Pinned packages:"
msgstr "鎖定的套件:"
-#: cmdline/apt-cache.cc:1589 cmdline/apt-cache.cc:1634
+#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
msgid "(not found)"
msgstr "(未找到)"
-#: cmdline/apt-cache.cc:1597
+#: cmdline/apt-cache.cc:1577
msgid " Installed: "
msgstr " 已安è£ï¼š"
-#: cmdline/apt-cache.cc:1598
+#: cmdline/apt-cache.cc:1578
msgid " Candidate: "
msgstr " 候é¸ï¼š"
-#: cmdline/apt-cache.cc:1616 cmdline/apt-cache.cc:1624
+#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
msgid "(none)"
msgstr "(ç„¡)"
-#: cmdline/apt-cache.cc:1631
+#: cmdline/apt-cache.cc:1611
msgid " Package pin: "
msgstr " 套件鎖定:"
#. Show the priority tables
-#: cmdline/apt-cache.cc:1640
+#: cmdline/apt-cache.cc:1620
msgid " Version table:"
msgstr " 版本列表:"
-#: cmdline/apt-cache.cc:1753 cmdline/apt-cdrom.cc:206 cmdline/apt-config.cc:81
-#: cmdline/apt-get.cc:3392 cmdline/apt-mark.cc:375
+#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
+#: cmdline/apt-get.cc:1524 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
-#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
+#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s 是用於 %s 並在 %s %s 上編譯的\n"
-#: cmdline/apt-cache.cc:1760
+#: cmdline/apt-cache.cc:1740
#, fuzzy
msgid ""
"Usage: apt-cache [options] command\n"
@@ -237,36 +239,36 @@ msgstr ""
"è«‹åƒé–± apt-cache(8) åŠ apt.conf(5) åƒè€ƒæ‰‹å†Šä»¥å–得更多資訊。\n"
#. }}}
-#: cmdline/apt-cdrom.cc:43
+#: cmdline/apt-cdrom.cc:45
msgid ""
"No CD-ROM could be auto-detected or found using the default mount point.\n"
"You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
"cdrom' for more information about the CD-ROM auto-detection and mount point."
msgstr ""
-#: cmdline/apt-cdrom.cc:85
+#: cmdline/apt-cdrom.cc:89
#, 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:100
+#: cmdline/apt-cdrom.cc:104
msgid "Please insert a Disc in the drive and press enter"
msgstr "請把光碟放入光碟機,然後按下 [Enter] éµ"
-#: cmdline/apt-cdrom.cc:135
+#: cmdline/apt-cdrom.cc:139
#, fuzzy, c-format
msgid "Failed to mount '%s' to '%s'"
msgstr "無法將 %s æ›´å為 %s"
-#: cmdline/apt-cdrom.cc:170
+#: cmdline/apt-cdrom.cc:174
msgid "Repeat this process for the rest of the CDs in your set."
msgstr "è«‹å°æ‚¨çš„光碟組中的其它光碟é‡è¤‡ç›¸åŒçš„æ“作。"
-#: cmdline/apt-config.cc:46
+#: cmdline/apt-config.cc:48
msgid "Arguments not in pairs"
msgstr "åƒæ•¸ä¸¦æœªæˆå°"
-#: cmdline/apt-config.cc:87
+#: cmdline/apt-config.cc:89
msgid ""
"Usage: apt-config [options] command\n"
"\n"
@@ -294,596 +296,62 @@ msgstr ""
" -c=? 讀å–指定的設定檔\n"
" -o=? 指定任æ„的設定é¸é …,例如:-o dir::cache=/tmp\n"
-#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
-#. e.g. "Do you want to continue? [Y/n] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:146
-msgid "[Y/n]"
-msgstr ""
-
-#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
-#. e.g. "Should this file be removed? [y/N] "
-#. The user has to answer with an input matching the
-#. YESEXPR/NOEXPR defined in your l10n.
-#: cmdline/apt-get.cc:152
-msgid "[y/N]"
-msgstr ""
-
-#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
-#: cmdline/apt-get.cc:163
-msgid "Y"
-msgstr ""
-
-#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
-#: cmdline/apt-get.cc:169
-msgid "N"
-msgstr ""
-
-#: cmdline/apt-get.cc:191 apt-pkg/cachefilter.cc:33
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "編譯正è¦è¡¨ç¤ºå¼æ™‚發生錯誤 - %s"
-
-#: cmdline/apt-get.cc:289
-msgid "The following packages have unmet dependencies:"
-msgstr "下列的套件有未滿足的相ä¾é—œä¿‚:"
-
-#: cmdline/apt-get.cc:379
-#, c-format
-msgid "but %s is installed"
-msgstr "但 %s å»å·²å®‰è£"
-
-#: cmdline/apt-get.cc:381
-#, c-format
-msgid "but %s is to be installed"
-msgstr "但 %s å»å°‡è¢«å®‰è£"
-
-#: cmdline/apt-get.cc:388
-msgid "but it is not installable"
-msgstr "但它å»ç„¡æ³•å®‰è£"
-
-#: cmdline/apt-get.cc:390
-msgid "but it is a virtual package"
-msgstr "但它是虛擬套件"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not installed"
-msgstr "但它å»å°šæœªå®‰è£"
-
-#: cmdline/apt-get.cc:393
-msgid "but it is not going to be installed"
-msgstr "但它å»å°‡ä¸æœƒè¢«å®‰è£"
-
-#: cmdline/apt-get.cc:398
-msgid " or"
-msgstr "或"
-
-#: cmdline/apt-get.cc:427
-msgid "The following NEW packages will be installed:"
-msgstr "下列ã€æ–°ã€‘套件將會被安è£ï¼š"
-
-#: cmdline/apt-get.cc:453
-msgid "The following packages will be REMOVED:"
-msgstr "下列套件將會被ã€ç§»é™¤ã€‘:"
-
-#: cmdline/apt-get.cc:475
-msgid "The following packages have been kept back:"
-msgstr "下列套件將會維æŒå…¶åŽŸæœ‰ç‰ˆæœ¬ï¼š"
-
-#: cmdline/apt-get.cc:496
-msgid "The following packages will be upgraded:"
-msgstr "下列套件將會被å‡ç´šï¼š"
-
-#: cmdline/apt-get.cc:517
-msgid "The following packages will be DOWNGRADED:"
-msgstr "下列套件將會被ã€é™ç´šã€‘:"
-
-#: cmdline/apt-get.cc:537
-msgid "The following held packages will be changed:"
-msgstr "下列被ä¿ç•™ (hold) 的套件將會被更改:"
-
-#: cmdline/apt-get.cc:592
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s(因為 %s)"
-
-#: cmdline/apt-get.cc:600
-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"
-"除éžæ‚¨å¾ˆæ¸…楚您在åšä»€éº¼ï¼Œå¦å‰‡è«‹å‹¿è¼•æ˜“嘗試ï¼"
-
-#: cmdline/apt-get.cc:631
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "å‡ç´š %lu å€‹ï¼Œæ–°å®‰è£ %lu 個,"
-
-#: cmdline/apt-get.cc:635
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "é‡æ–°å®‰è£ %lu 個,"
-
-#: cmdline/apt-get.cc:637
-#, c-format
-msgid "%lu downgraded, "
-msgstr "é™ç´š %lu 個,"
-
-#: cmdline/apt-get.cc:639
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "移除 %lu 個,有 %lu 個未被å‡ç´šã€‚\n"
-
-#: cmdline/apt-get.cc:643
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu 個沒有完整得安è£æˆ–移除。\n"
-
-#: cmdline/apt-get.cc:664
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for task '%s'\n"
-msgstr "注æ„,根據正è¦è¡¨ç¤ºå¼ '%2$s' 而é¸æ“‡äº† %1$s\n"
-
-#: cmdline/apt-get.cc:669
-#, fuzzy, c-format
-msgid "Note, selecting '%s' for regex '%s'\n"
-msgstr "注æ„,根據正è¦è¡¨ç¤ºå¼ '%2$s' 而é¸æ“‡äº† %1$s\n"
-
-#: cmdline/apt-get.cc:686
-#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "套件 %s 是虛擬套件,æ供者為:\n"
-
-#: cmdline/apt-get.cc:697
-msgid " [Installed]"
-msgstr "ã€å·²å®‰è£ã€‘"
-
-#: cmdline/apt-get.cc:706
-#, fuzzy
-msgid " [Not candidate version]"
-msgstr "候é¸ç‰ˆæœ¬"
-
-#: cmdline/apt-get.cc:708
-msgid "You should explicitly select one to install."
-msgstr "請您明確地é¸æ“‡ä¸€å€‹ä¾†é€²è¡Œå®‰è£ã€‚"
-
-#: cmdline/apt-get.cc:711
-#, c-format
-msgid ""
-"Package %s is not available, but is referred to by another package.\n"
-"This may mean that the package is missing, has been obsoleted, or\n"
-"is only available from another source\n"
-msgstr ""
-"無法å–得套件 %s,但它å»è¢«å…¶å®ƒçš„套件引用了。\n"
-"這æ„味著這個套件å¯èƒ½å·²ç¶“消失了ã€è¢«å»¢æ£„了,或是åªèƒ½ç”±å…¶ä»–的來æºå–å¾—\n"
-
-#: cmdline/apt-get.cc:729
-msgid "However the following packages replace it:"
-msgstr "然而,下列的套件å–代了它:"
-
-#: cmdline/apt-get.cc:741
-#, fuzzy, c-format
-msgid "Package '%s' has no installation candidate"
-msgstr "套件 %s 沒有å¯å®‰è£çš„候é¸ç‰ˆæœ¬"
-
-#: cmdline/apt-get.cc:754
-#, c-format
-msgid "Virtual packages like '%s' can't be removed\n"
-msgstr ""
-
-#. TRANSLATORS: Note, this is not an interactive question
-#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:969
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "套件 %s 並沒有被安è£ï¼Œæ‰€ä»¥ä¹Ÿä¸æœƒè¢«ç§»é™¤\n"
-
-#: cmdline/apt-get.cc:772 cmdline/apt-get.cc:975
-#, fuzzy, c-format
-msgid "Package '%s' is not installed, so not removed\n"
-msgstr "套件 %s 並沒有被安è£ï¼Œæ‰€ä»¥ä¹Ÿä¸æœƒè¢«ç§»é™¤\n"
-
-#: cmdline/apt-get.cc:817
-#, fuzzy, c-format
-msgid "Note, selecting '%s' instead of '%s'\n"
-msgstr "注æ„,é¸æ“‡äº†ä»¥ %s 替代 %s\n"
-
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "忽略 %s,它已被安è£ä¸”沒有計劃è¦é€²è¡Œå‡ç´šã€‚\n"
-
-#: cmdline/apt-get.cc:851
-#, fuzzy, c-format
-msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
-msgstr "忽略 %s,它已被安è£ä¸”沒有計劃è¦é€²è¡Œå‡ç´šã€‚\n"
-
-#: cmdline/apt-get.cc:863
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "無法é‡æ–°å®‰è£ %s,因為它無法下載。\n"
-
-#: cmdline/apt-get.cc:868
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s 已經是最新版本了。\n"
-
-#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:2187 cmdline/apt-mark.cc:68
-#, c-format
-msgid "%s set to manually installed.\n"
-msgstr "%s 被設定為手動安è£ã€‚\n"
-
-#: cmdline/apt-get.cc:913
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s'\n"
-msgstr "é¸å®šçš„版本為 %3$s çš„ %1$s (%2$s)\n"
-
-#: cmdline/apt-get.cc:918
-#, fuzzy, c-format
-msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
-msgstr "é¸å®šçš„版本為 %3$s çš„ %1$s (%2$s)\n"
-
-#: cmdline/apt-get.cc:1054
-msgid "Correcting dependencies..."
-msgstr "正在修正相ä¾é—œä¿‚..."
-
-#: cmdline/apt-get.cc:1057
-msgid " failed."
-msgstr " 失敗。"
-
-#: cmdline/apt-get.cc:1060
-msgid "Unable to correct dependencies"
-msgstr "無法修正相ä¾é—œä¿‚"
-
-#: cmdline/apt-get.cc:1063
-msgid "Unable to minimize the upgrade set"
-msgstr "無法將å‡ç´šè¨ˆåŠƒæœ€å°åŒ–"
-
-#: cmdline/apt-get.cc:1065
-msgid " Done"
-msgstr " 完æˆ"
-
-#: cmdline/apt-get.cc:1069
-msgid "You might want to run 'apt-get -f install' to correct these."
-msgstr "您也許得執行 'apt-get -f install' 以修正這些å•é¡Œã€‚"
-
-#: cmdline/apt-get.cc:1072
-msgid "Unmet dependencies. Try using -f."
-msgstr "未能滿足相ä¾é—œä¿‚。試試 -f é¸é …。"
-
-#: cmdline/apt-get.cc:1097
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ã€è­¦å‘Šã€‘:無法驗證下列套件ï¼"
-
-#: cmdline/apt-get.cc:1101
-msgid "Authentication warning overridden.\n"
-msgstr "忽略了驗證警告。\n"
-
-#: cmdline/apt-get.cc:1108
-msgid "Install these packages without verification?"
-msgstr "是å¦ä¸ç¶“驗證就安è£é€™äº›å¥—件?"
-
-#: cmdline/apt-get.cc:1110
-msgid "Some packages could not be authenticated"
-msgstr "有部份套件無法驗證"
-
-#: cmdline/apt-get.cc:1119 cmdline/apt-get.cc:1280
-msgid "There are problems and -y was used without --force-yes"
-msgstr "發生了å•é¡Œï¼Œä¸” -y 並沒有和 --force-yes æ­é…使用"
-
-#: cmdline/apt-get.cc:1160
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "內部錯誤,在æ毀的套件上執行 InstallPackagesï¼"
-
-#: cmdline/apt-get.cc:1169
-msgid "Packages need to be removed but remove is disabled."
-msgstr "有套件需è¦è¢«ç§»é™¤ï¼Œä½†å»è¢«ç¦æ­¢ç§»é™¤ã€‚"
-
-#: cmdline/apt-get.cc:1180
-msgid "Internal error, Ordering didn't finish"
-msgstr "內部錯誤,排åºæœªèƒ½å®Œæˆ"
-
-#: cmdline/apt-get.cc:1218
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "怪哉... 檔案大å°ä¸ç¬¦ï¼Œè«‹ç™¼ä¿¡çµ¦ apt@packages.debian.org"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1225
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "需è¦ä¸‹è¼‰ %sB/%sB 的套件檔。\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1230
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "需è¦ä¸‹è¼‰ %sB 的套件檔。\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1237
-#, c-format
-msgid "After this operation, %sB of additional disk space will be used.\n"
-msgstr "æ­¤æ“作完æˆä¹‹å¾Œï¼Œæœƒå¤šä½”用 %sB çš„ç£ç¢Ÿç©ºé–“。\n"
-
-#. TRANSLATOR: The required space between number and unit is already included
-#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:1242
-#, c-format
-msgid "After this operation, %sB disk space will be freed.\n"
-msgstr "æ­¤æ“作完æˆä¹‹å¾Œï¼Œæœƒç©ºå‡º %sB çš„ç£ç¢Ÿç©ºé–“。\n"
-
-#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1260 cmdline/apt-get.cc:2621
-#: cmdline/apt-get.cc:2624
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "ç„¡æ³•ç¢ºèª %s 的未使用空間"
-
-#: cmdline/apt-get.cc:1270
-#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "在 %s 裡沒有足夠的的未使用空間。"
-
-#: cmdline/apt-get.cc:1286 cmdline/apt-get.cc:1308
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "雖然指定了 Trivial Only(自動答 NO)é¸é …,但這並ä¸æ˜¯ trivial æ“作。"
-
-#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
-#. careful with hard to type or special characters (like non-breaking spaces)
-#: cmdline/apt-get.cc:1290
-msgid "Yes, do as I say!"
-msgstr "Yes, do as I say!"
-
-#: cmdline/apt-get.cc:1292
-#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"您所進行的æ“作å¯èƒ½æœƒå¸¶ä¾†å±éšªã€‚\n"
-"請輸入 '%s' 這個å¥å­ä»¥ç¹¼çºŒé€²è¡Œ\n"
-" ?] "
-
-#: cmdline/apt-get.cc:1298 cmdline/apt-get.cc:1317
-msgid "Abort."
-msgstr "放棄執行。"
-
-#: cmdline/apt-get.cc:1313
-#, fuzzy
-msgid "Do you want to continue?"
-msgstr "是å¦ç¹¼çºŒé€²è¡Œ [Y/n]?"
-
-#: cmdline/apt-get.cc:1385 cmdline/apt-get.cc:2686 apt-pkg/algorithms.cc:1566
-#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "無法å–å¾— %s,%s\n"
-
-#: cmdline/apt-get.cc:1403
-msgid "Some files failed to download"
-msgstr "有部份檔案無法下載"
-
-#: cmdline/apt-get.cc:1404 cmdline/apt-get.cc:2698
-msgid "Download complete and in download only mode"
-msgstr "下載完æˆï¼Œä¸”這是『僅下載ã€æ¨¡å¼"
-
-#: cmdline/apt-get.cc:1410
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"有部份套件檔無法å–得,試著執行 apt-get update 或者試著加上 --fix-missing é¸"
-"項?"
-
-#: cmdline/apt-get.cc:1414
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "ç›®å‰å°šæœªæ”¯æ´ --fix-missing 和媒體抽æ›"
-
-#: cmdline/apt-get.cc:1419
-msgid "Unable to correct missing packages."
-msgstr "無法修正欠缺的套件。"
-
-#: cmdline/apt-get.cc:1420
-msgid "Aborting install."
-msgstr "放棄安è£ã€‚"
-
-#: cmdline/apt-get.cc:1448
-msgid ""
-"The following package disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgid_plural ""
-"The following packages disappeared from your system as\n"
-"all files have been overwritten by other packages:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: cmdline/apt-get.cc:1452
-msgid "Note: This is done automatically and on purpose by dpkg."
-msgstr ""
-
-#: cmdline/apt-get.cc:1590
-#, c-format
-msgid "Ignore unavailable target release '%s' of package '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:1622
+#: cmdline/apt-get.cc:313
#, fuzzy, c-format
msgid "Picking '%s' as source package instead of '%s'\n"
msgstr "無法å–得來æºå¥—件列表 %s 的狀態"
-#. if (VerTag.empty() == false && Last == 0)
-#: cmdline/apt-get.cc:1660
+#: cmdline/apt-get.cc:367
#, c-format
msgid "Ignore unavailable version '%s' of package '%s'"
msgstr ""
-#: cmdline/apt-get.cc:1676
-msgid "The update command takes no arguments"
-msgstr "update 指令ä¸éœ€ä»»ä½•åƒæ•¸"
-
-#: cmdline/apt-get.cc:1742
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr "我們沒有計劃è¦åˆªé™¤ä»»ä½•æ±è¥¿ï¼Œç„¡æ³•å•Ÿå‹• AutoRemover"
-
-#: cmdline/apt-get.cc:1846
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"嗯,看起來 AutoRemover 弄壞了什麼æ±è¥¿ï¼Œè€Œé€™æ˜¯ä¸è©²ç™¼ç”Ÿçš„。\n"
-"è«‹é‡å° apt 發佈錯誤回報。"
-
-#.
-#. if (Packages == 1)
-#. {
-#. c1out << endl;
-#. c1out <<
-#. _("Since you only requested a single operation it is extremely likely that\n"
-#. "the package is simply not installable and a bug report against\n"
-#. "that package should be filed.") << endl;
-#. }
-#.
-#: cmdline/apt-get.cc:1849 cmdline/apt-get.cc:2017
-msgid "The following information may help to resolve the situation:"
-msgstr "以下的資訊或許有助於解決當å‰çš„情æ³ï¼š"
-
-#: cmdline/apt-get.cc:1853
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "內部錯誤,AutoRemover 處ç†å¤±æ•—"
-
-#: cmdline/apt-get.cc:1860
-#, fuzzy
-msgid ""
-"The following package was automatically installed and is no longer required:"
-msgid_plural ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr[0] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š"
-msgstr[1] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š"
-
-#: cmdline/apt-get.cc:1864
-#, fuzzy, c-format
-msgid "%lu package was automatically installed and is no longer required.\n"
-msgid_plural ""
-"%lu packages were automatically installed and are no longer required.\n"
-msgstr[0] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š"
-msgstr[1] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š"
-
-#: cmdline/apt-get.cc:1866
-#, fuzzy
-msgid "Use 'apt-get autoremove' to remove it."
-msgid_plural "Use 'apt-get autoremove' to remove them."
-msgstr[0] "使用 'apt-get autoremove' 來將其移除。"
-msgstr[1] "使用 'apt-get autoremove' 來將其移除。"
-
-#: cmdline/apt-get.cc:1885
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "內部錯誤,AllUpgrade 造æˆäº†æ壞"
-
-#: cmdline/apt-get.cc:1984
-msgid "You might want to run 'apt-get -f install' to correct these:"
-msgstr "您也許得執行 'apt-get -f install' 以修正這些å•é¡Œï¼š"
-
-#: cmdline/apt-get.cc:1988
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"未能滿足相ä¾é—œä¿‚。請試著ä¸æŒ‡å®šå¥—件來執行 'apt-get -f install'(或採å–其它的解"
-"決方案)。"
-
-#: cmdline/apt-get.cc:2002
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"有些套件無法安è£ã€‚這å¯èƒ½æ„謂著您的è¦æ±‚難以解決,或是若您使用的是\n"
-"unstable 發行版,å¯èƒ½æœ‰äº›å¿…è¦çš„套件尚未建立,或是被移出 Incoming 了。"
-
-#: cmdline/apt-get.cc:2023
-msgid "Broken packages"
-msgstr "æ毀的套件"
-
-#: cmdline/apt-get.cc:2049
-msgid "The following extra packages will be installed:"
-msgstr "下列的é¡å¤–套件將被安è£ï¼š"
-
-#: cmdline/apt-get.cc:2139
-msgid "Suggested packages:"
-msgstr "建議套件:"
-
-#: cmdline/apt-get.cc:2140
-msgid "Recommended packages:"
-msgstr "推薦套件:"
-
-#: cmdline/apt-get.cc:2182
+#: cmdline/apt-get.cc:398
#, c-format
msgid "Couldn't find package %s"
msgstr "無法找到套件 %s"
-#: cmdline/apt-get.cc:2189 cmdline/apt-mark.cc:70
+#: cmdline/apt-get.cc:403 cmdline/apt-mark.cc:70
+#, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s 被設定為手動安è£ã€‚\n"
+
+#: cmdline/apt-get.cc:405 cmdline/apt-mark.cc:72
#, fuzzy, c-format
msgid "%s set to automatically installed.\n"
msgstr "%s 被設定為手動安è£ã€‚\n"
-#: cmdline/apt-get.cc:2197 cmdline/apt-mark.cc:114
+#: cmdline/apt-get.cc:413 cmdline/apt-mark.cc:116
msgid ""
"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
"instead."
msgstr ""
-#: cmdline/apt-get.cc:2213
-msgid "Calculating upgrade... "
-msgstr "籌備å‡ç´šä¸­... "
-
-#: cmdline/apt-get.cc:2216 methods/ftp.cc:712 methods/connect.cc:116
-msgid "Failed"
-msgstr "失敗"
-
-#: cmdline/apt-get.cc:2221
-msgid "Done"
-msgstr "完æˆ"
-
-#: cmdline/apt-get.cc:2288 cmdline/apt-get.cc:2296
+#: cmdline/apt-get.cc:482 cmdline/apt-get.cc:490
msgid "Internal error, problem resolver broke stuff"
msgstr "內部錯誤,å•é¡ŒæŽ’除器造æˆäº†æ壞"
-#: cmdline/apt-get.cc:2324 cmdline/apt-get.cc:2361
+#: cmdline/apt-get.cc:518 cmdline/apt-get.cc:555
msgid "Unable to lock the download directory"
msgstr "無法鎖定下載目錄"
-#: cmdline/apt-get.cc:2418
-#, c-format
-msgid "Can't find a source to download version '%s' of '%s'"
-msgstr ""
-
-#: cmdline/apt-get.cc:2423
-#, c-format
-msgid "Downloading %s %s"
-msgstr ""
-
-#: cmdline/apt-get.cc:2483
+#: cmdline/apt-get.cc:667
msgid "Must specify at least one package to fetch source for"
msgstr "在å–得原始碼時必須至少指定一個套件"
-#: cmdline/apt-get.cc:2523 cmdline/apt-get.cc:2835
+#: cmdline/apt-get.cc:707 cmdline/apt-get.cc:1002
#, c-format
msgid "Unable to find a source package for %s"
msgstr "無法找到 %s 的原始碼套件"
-#: cmdline/apt-get.cc:2540
+#: cmdline/apt-get.cc:724
#, c-format
msgid ""
"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
"%s\n"
msgstr ""
-#: cmdline/apt-get.cc:2545
+#: cmdline/apt-get.cc:729
#, c-format
msgid ""
"Please use:\n"
@@ -891,104 +359,114 @@ msgid ""
"to retrieve the latest (possibly unreleased) updates to the package.\n"
msgstr ""
-#: cmdline/apt-get.cc:2598
+#: cmdline/apt-get.cc:782
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "ç•¥éŽå·²ä¸‹è¼‰çš„檔案 '%s'\n"
-#: cmdline/apt-get.cc:2635
+#: cmdline/apt-get.cc:805 cmdline/apt-get.cc:808
+#: apt-private/private-install.cc:198 apt-private/private-install.cc:201
+#, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "ç„¡æ³•ç¢ºèª %s 的未使用空間"
+
+#: cmdline/apt-get.cc:819
#, c-format
msgid "You don't have enough free space in %s"
msgstr "在 %s 裡沒有足夠的的未使用空間"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2644
+#: cmdline/apt-get.cc:828
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "需è¦ä¸‹è¼‰ %sB/%sB 的原始套件檔。\n"
#. TRANSLATOR: The required space between number and unit is already included
#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
-#: cmdline/apt-get.cc:2649
+#: cmdline/apt-get.cc:833
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "需è¦ä¸‹è¼‰ %sB 的原始套件檔。\n"
-#: cmdline/apt-get.cc:2655
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Fetch source %s\n"
msgstr "å–得原始碼 %s\n"
-#: cmdline/apt-get.cc:2693
+#: cmdline/apt-get.cc:860
msgid "Failed to fetch some archives."
msgstr "無法å–å¾—æŸäº›å¥—件檔。"
-#: cmdline/apt-get.cc:2724
+#: cmdline/apt-get.cc:865 apt-private/private-install.cc:325
+msgid "Download complete and in download only mode"
+msgstr "下載完æˆï¼Œä¸”這是『僅下載ã€æ¨¡å¼"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "ä¸è§£é–‹ï¼Œå› åŽŸå§‹ç¢¼å·²è§£é–‹è‡³ %s\n"
-#: cmdline/apt-get.cc:2736
+#: cmdline/apt-get.cc:903
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "解開指令 '%s' 失敗。\n"
-#: cmdline/apt-get.cc:2737
+#: cmdline/apt-get.cc:904
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "請檢查是å¦å·²å®‰è£äº† 'dpkg-dev' 套件。\n"
-#: cmdline/apt-get.cc:2759
+#: cmdline/apt-get.cc:926
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "編譯指令 '%s' 失敗。\n"
-#: cmdline/apt-get.cc:2779
+#: cmdline/apt-get.cc:946
msgid "Child process failed"
msgstr "å­ç¨‹åºå¤±æ•—"
-#: cmdline/apt-get.cc:2798
+#: cmdline/apt-get.cc:965
msgid "Must specify at least one package to check builddeps for"
msgstr "在檢查編譯相ä¾é—œä¿‚時必須至少指定一個套件"
-#: cmdline/apt-get.cc:2823
+#: cmdline/apt-get.cc:990
#, c-format
msgid ""
"No architecture information available for %s. See apt.conf(5) APT::"
"Architectures for setup"
msgstr ""
-#: cmdline/apt-get.cc:2847 cmdline/apt-get.cc:2850
+#: cmdline/apt-get.cc:1014 cmdline/apt-get.cc:1017
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "無法å–å¾— %s 的編譯相ä¾é—œä¿‚資訊"
-#: cmdline/apt-get.cc:2870
+#: cmdline/apt-get.cc:1037
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s 沒有編譯相ä¾é—œä¿‚。\n"
-#: cmdline/apt-get.cc:3040
+#: cmdline/apt-get.cc:1207
#, fuzzy, c-format
msgid ""
"%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
"packages"
msgstr "無法滿足 %2$s 所è¦æ±‚çš„ %1$s 相ä¾é—œä¿‚,因為找ä¸åˆ°å¥—件 %3$s"
-#: cmdline/apt-get.cc:3058
+#: cmdline/apt-get.cc:1225
#, 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:3081
+#: cmdline/apt-get.cc:1248
#, 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:3120
+#: cmdline/apt-get.cc:1287
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because candidate version of "
@@ -996,37 +474,37 @@ msgid ""
msgstr ""
"無法滿足 %2$s 所è¦æ±‚çš„ %1$s 相ä¾é—œä¿‚,因為套件 %3$s 沒有版本符åˆå…¶ç‰ˆæœ¬éœ€æ±‚"
-#: cmdline/apt-get.cc:3126
+#: cmdline/apt-get.cc:1293
#, fuzzy, c-format
msgid ""
"%s dependency for %s cannot be satisfied because package %s has no candidate "
"version"
msgstr "無法滿足 %2$s 所è¦æ±‚çš„ %1$s 相ä¾é—œä¿‚,因為找ä¸åˆ°å¥—件 %3$s"
-#: cmdline/apt-get.cc:3149
+#: cmdline/apt-get.cc:1316
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "無法滿足 %2$s 的相ä¾é—œä¿‚ %1$s:%3$s"
-#: cmdline/apt-get.cc:3164
+#: cmdline/apt-get.cc:1331
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "無法滿足套件 %s 的編譯相ä¾é—œä¿‚。"
-#: cmdline/apt-get.cc:3169
+#: cmdline/apt-get.cc:1336
msgid "Failed to process build dependencies"
msgstr "無法處ç†ç·¨è­¯ç›¸ä¾é—œä¿‚"
-#: cmdline/apt-get.cc:3262 cmdline/apt-get.cc:3274
+#: cmdline/apt-get.cc:1429 cmdline/apt-get.cc:1441
#, fuzzy, c-format
msgid "Changelog for %s (%s)"
msgstr "正和 %s (%s) 連線"
-#: cmdline/apt-get.cc:3397
+#: cmdline/apt-get.cc:1529
msgid "Supported modules:"
msgstr "已支æ´æ¨¡çµ„:"
-#: cmdline/apt-get.cc:3438
+#: cmdline/apt-get.cc:1570
#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
@@ -1112,98 +590,53 @@ msgstr ""
"以å–得更多資訊和é¸é …。\n"
" 該 APT 有著超級牛力。\n"
-#: cmdline/apt-get.cc:3603
-msgid ""
-"NOTE: This is only a simulation!\n"
-" apt-get needs root privileges for real execution.\n"
-" Keep also in mind that locking is deactivated,\n"
-" so don't depend on the relevance to the real current situation!"
-msgstr ""
-
-#: cmdline/acqprogress.cc:60
-msgid "Hit "
-msgstr "已有 "
-
-#: cmdline/acqprogress.cc:84
-msgid "Get:"
-msgstr "下載:"
-
-#: cmdline/acqprogress.cc:115
-msgid "Ign "
-msgstr "ç•¥éŽ "
-
-#: cmdline/acqprogress.cc:119
-msgid "Err "
-msgstr "錯誤 "
-
-#: cmdline/acqprogress.cc:140
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "å–å¾— %sB 用了 %s (%sB/s)\n"
-
-#: cmdline/acqprogress.cc:230
-#, c-format
-msgid " [Working]"
-msgstr " [工作中]"
-
-#: cmdline/acqprogress.cc:286
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"æ›´æ›åª’體:請把以下å稱的光碟\n"
-" '%s'\n"
-"放入 '%s' è£ç½®ï¼Œç„¶å¾ŒæŒ‰ [Enter] éµ\n"
-
-#: cmdline/apt-mark.cc:55
+#: cmdline/apt-mark.cc:57
#, fuzzy, c-format
msgid "%s can not be marked as it is not installed.\n"
msgstr "但它å»å°šæœªå®‰è£"
-#: cmdline/apt-mark.cc:61
+#: cmdline/apt-mark.cc:63
#, fuzzy, c-format
msgid "%s was already set to manually installed.\n"
msgstr "%s 被設定為手動安è£ã€‚\n"
-#: cmdline/apt-mark.cc:63
+#: cmdline/apt-mark.cc:65
#, fuzzy, c-format
msgid "%s was already set to automatically installed.\n"
msgstr "%s 被設定為手動安è£ã€‚\n"
-#: cmdline/apt-mark.cc:228
+#: cmdline/apt-mark.cc:230
#, fuzzy, c-format
msgid "%s was already set on hold.\n"
msgstr "%s 已經是最新版本了。\n"
-#: cmdline/apt-mark.cc:230
+#: cmdline/apt-mark.cc:232
#, fuzzy, c-format
msgid "%s was already not hold.\n"
msgstr "%s 已經是最新版本了。\n"
-#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
-#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:223
-#: apt-pkg/deb/dpkgpm.cc:1032
+#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
+#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:223
+#: apt-pkg/deb/dpkgpm.cc:1174
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr "等待 %s 但是它並ä¸å­˜åœ¨"
-#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
+#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
#, fuzzy, c-format
msgid "%s set on hold.\n"
msgstr "%s 被設定為手動安è£ã€‚\n"
-#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
+#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
#, fuzzy, c-format
msgid "Canceled hold on %s.\n"
msgstr "無法開啟 %s"
-#: cmdline/apt-mark.cc:332
+#: cmdline/apt-mark.cc:334
msgid "Executing dpkg failed. Are you root?"
msgstr ""
-#: cmdline/apt-mark.cc:379
+#: cmdline/apt-mark.cc:381
msgid ""
"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
"\n"
@@ -1225,6 +658,23 @@ msgid ""
"See the apt-mark(8) and apt.conf(5) manual pages for more information."
msgstr ""
+#: cmdline/apt.cc:71
+msgid ""
+"Usage: apt [options] command\n"
+"\n"
+"CLI for apt.\n"
+"Commands: \n"
+" list - list packages based on package names\n"
+" search - search in package descriptions\n"
+" show - show package details\n"
+"\n"
+" update - update list of available packages\n"
+" install - install packages\n"
+" upgrade - upgrade the systems packages\n"
+"\n"
+" edit-sources - edit the source information file\n"
+msgstr ""
+
#: methods/cdrom.cc:203
#, c-format
msgid "Unable to read the cdrom database %s"
@@ -1320,8 +770,8 @@ msgstr "連線逾時"
msgid "Server closed the connection"
msgstr "伺æœå™¨å·²é—œé–‰é€£ç·š"
-#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1264
-#: apt-pkg/contrib/fileutl.cc:1273 apt-pkg/contrib/fileutl.cc:1276
+#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
+#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
msgid "Read error"
msgstr "讀å–錯誤"
@@ -1334,8 +784,8 @@ msgid "Protocol corruption"
msgstr "å”定失敗"
#: methods/ftp.cc:458 methods/rred.cc:238 methods/rsh.cc:243
-#: apt-pkg/contrib/fileutl.cc:1360 apt-pkg/contrib/fileutl.cc:1369
-#: apt-pkg/contrib/fileutl.cc:1372 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1388 apt-pkg/contrib/fileutl.cc:1397
+#: apt-pkg/contrib/fileutl.cc:1400 apt-pkg/contrib/fileutl.cc:1425
msgid "Write error"
msgstr "寫入錯誤"
@@ -1347,6 +797,10 @@ msgstr "無法建立 Socket"
msgid "Could not connect data socket, connection timed out"
msgstr "無法和 data socket 連線,連線逾時"
+#: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
+msgid "Failed"
+msgstr "失敗"
+
#: methods/ftp.cc:714
msgid "Could not connect passive socket."
msgstr "無法和 passive socket 連線。"
@@ -1389,7 +843,7 @@ msgstr "Data socket 連線逾時"
msgid "Unable to accept connection"
msgstr "無法接å—連線"
-#: methods/ftp.cc:873 methods/http.cc:1038 methods/rsh.cc:313
+#: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
msgid "Problem hashing file"
msgstr "有å•é¡Œçš„雜湊檔"
@@ -1518,81 +972,590 @@ msgstr "由於無法å–得它們的公鑰,以下簽章無法進行驗證:\n"
msgid "Empty files can't be valid archives"
msgstr ""
-#: methods/http.cc:394
+#: methods/http.cc:519
+msgid "Error writing to the file"
+msgstr "在寫入該檔時發生錯誤"
+
+#: methods/http.cc:533
+msgid "Error reading from server. Remote end closed connection"
+msgstr "在讀å–伺æœå™¨æ™‚發生錯誤,é ç«¯ä¸»æ©Ÿå·²é—œé–‰é€£ç·š"
+
+#: methods/http.cc:535
+msgid "Error reading from server"
+msgstr "在讀å–伺æœå™¨æ™‚發生錯誤"
+
+#: methods/http.cc:571
+msgid "Error writing to file"
+msgstr "在寫入檔案時發生錯誤"
+
+#: methods/http.cc:631
+msgid "Select failed"
+msgstr "é¸æ“‡å¤±æ•—"
+
+#: methods/http.cc:636
+msgid "Connection timed out"
+msgstr "連線逾時"
+
+#: methods/http.cc:659
+msgid "Error writing to output file"
+msgstr "在寫入輸出檔時發生錯誤"
+
+#: methods/server.cc:56
msgid "Waiting for headers"
msgstr "等待標頭"
-#: methods/http.cc:544
+#: methods/server.cc:114
msgid "Bad header line"
msgstr "標頭行錯誤"
-#: methods/http.cc:569 methods/http.cc:576
+#: methods/server.cc:139 methods/server.cc:146
msgid "The HTTP server sent an invalid reply header"
msgstr "HTTP 伺æœå™¨å‚³é€äº†ä¸€å€‹ç„¡æ•ˆçš„回覆標頭"
-#: methods/http.cc:606
+#: methods/server.cc:176
msgid "The HTTP server sent an invalid Content-Length header"
msgstr "HTTP 伺æœå™¨å‚³é€äº†ä¸€å€‹ç„¡æ•ˆçš„ Content-Length 標頭"
-#: methods/http.cc:621
+#: methods/server.cc:199
msgid "The HTTP server sent an invalid Content-Range header"
msgstr "HTTP 伺æœå™¨å‚³é€äº†ä¸€å€‹ç„¡æ•ˆçš„ Content-Range 標頭"
-#: methods/http.cc:623
+#: methods/server.cc:201
msgid "This HTTP server has broken range support"
msgstr "這個 HTTP 伺æœå™¨çš„範åœæ”¯æ´æœ‰å•é¡Œ"
-#: methods/http.cc:647
+#: methods/server.cc:225
msgid "Unknown date format"
msgstr "未知的資料格å¼"
-#: methods/http.cc:826
-msgid "Select failed"
-msgstr "é¸æ“‡å¤±æ•—"
+#: methods/server.cc:490
+msgid "Bad header data"
+msgstr "錯誤的標頭資料"
-#: methods/http.cc:831
-msgid "Connection timed out"
-msgstr "連線逾時"
+#: methods/server.cc:507 methods/server.cc:564
+msgid "Connection failed"
+msgstr "連線失敗"
-#: methods/http.cc:854
-msgid "Error writing to output file"
-msgstr "在寫入輸出檔時發生錯誤"
+#: methods/server.cc:656
+msgid "Internal error"
+msgstr "內部錯誤"
-#: methods/http.cc:885
-msgid "Error writing to file"
-msgstr "在寫入檔案時發生錯誤"
+#: apt-private/private-list.cc:143
+msgid "Listing"
+msgstr ""
-#: methods/http.cc:913
-msgid "Error writing to the file"
-msgstr "在寫入該檔時發生錯誤"
+#: apt-private/private-install.cc:93
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "內部錯誤,在æ毀的套件上執行 InstallPackagesï¼"
-#: methods/http.cc:927
-msgid "Error reading from server. Remote end closed connection"
-msgstr "在讀å–伺æœå™¨æ™‚發生錯誤,é ç«¯ä¸»æ©Ÿå·²é—œé–‰é€£ç·š"
+#: apt-private/private-install.cc:102
+msgid "Packages need to be removed but remove is disabled."
+msgstr "有套件需è¦è¢«ç§»é™¤ï¼Œä½†å»è¢«ç¦æ­¢ç§»é™¤ã€‚"
-#: methods/http.cc:929
-msgid "Error reading from server"
-msgstr "在讀å–伺æœå™¨æ™‚發生錯誤"
+#: apt-private/private-install.cc:121
+msgid "Internal error, Ordering didn't finish"
+msgstr "內部錯誤,排åºæœªèƒ½å®Œæˆ"
-#: methods/http.cc:1197
-msgid "Bad header data"
-msgstr "錯誤的標頭資料"
+#: apt-private/private-install.cc:159
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "怪哉... 檔案大å°ä¸ç¬¦ï¼Œè«‹ç™¼ä¿¡çµ¦ apt@packages.debian.org"
-#: methods/http.cc:1214 methods/http.cc:1269
-msgid "Connection failed"
-msgstr "連線失敗"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:166
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "需è¦ä¸‹è¼‰ %sB/%sB 的套件檔。\n"
-#: methods/http.cc:1361
-msgid "Internal error"
-msgstr "內部錯誤"
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:171
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "需è¦ä¸‹è¼‰ %sB 的套件檔。\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:178
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "æ­¤æ“作完æˆä¹‹å¾Œï¼Œæœƒå¤šä½”用 %sB çš„ç£ç¢Ÿç©ºé–“。\n"
+
+#. TRANSLATOR: The required space between number and unit is already included
+#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
+#: apt-private/private-install.cc:183
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "æ­¤æ“作完æˆä¹‹å¾Œï¼Œæœƒç©ºå‡º %sB çš„ç£ç¢Ÿç©ºé–“。\n"
+
+#: apt-private/private-install.cc:211
+#, c-format
+msgid "You don't have enough free space in %s."
+msgstr "在 %s 裡沒有足夠的的未使用空間。"
+
+#: apt-private/private-install.cc:221 apt-private/private-download.cc:55
+msgid "There are problems and -y was used without --force-yes"
+msgstr "發生了å•é¡Œï¼Œä¸” -y 並沒有和 --force-yes æ­é…使用"
+
+#: apt-private/private-install.cc:227 apt-private/private-install.cc:249
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "雖然指定了 Trivial Only(自動答 NO)é¸é …,但這並ä¸æ˜¯ trivial æ“作。"
+
+#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
+#. careful with hard to type or special characters (like non-breaking spaces)
+#: apt-private/private-install.cc:231
+msgid "Yes, do as I say!"
+msgstr "Yes, do as I say!"
+
+#: apt-private/private-install.cc:233
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"您所進行的æ“作å¯èƒ½æœƒå¸¶ä¾†å±éšªã€‚\n"
+"請輸入 '%s' 這個å¥å­ä»¥ç¹¼çºŒé€²è¡Œ\n"
+" ?] "
+
+#: apt-private/private-install.cc:239 apt-private/private-install.cc:257
+msgid "Abort."
+msgstr "放棄執行。"
+
+#: apt-private/private-install.cc:254
+#, fuzzy
+msgid "Do you want to continue?"
+msgstr "是å¦ç¹¼çºŒé€²è¡Œ [Y/n]?"
+
+#: apt-private/private-install.cc:324
+msgid "Some files failed to download"
+msgstr "有部份檔案無法下載"
+
+#: apt-private/private-install.cc:331
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"有部份套件檔無法å–得,試著執行 apt-get update 或者試著加上 --fix-missing é¸"
+"項?"
+
+#: apt-private/private-install.cc:335
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "ç›®å‰å°šæœªæ”¯æ´ --fix-missing 和媒體抽æ›"
+
+#: apt-private/private-install.cc:340
+msgid "Unable to correct missing packages."
+msgstr "無法修正欠缺的套件。"
+
+#: apt-private/private-install.cc:341
+msgid "Aborting install."
+msgstr "放棄安è£ã€‚"
+
+#: apt-private/private-install.cc:377
+msgid ""
+"The following package disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgid_plural ""
+"The following packages disappeared from your system as\n"
+"all files have been overwritten by other packages:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: apt-private/private-install.cc:381
+msgid "Note: This is done automatically and on purpose by dpkg."
+msgstr ""
+
+#: apt-private/private-install.cc:402
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "我們沒有計劃è¦åˆªé™¤ä»»ä½•æ±è¥¿ï¼Œç„¡æ³•å•Ÿå‹• AutoRemover"
+
+#: apt-private/private-install.cc:510
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"嗯,看起來 AutoRemover 弄壞了什麼æ±è¥¿ï¼Œè€Œé€™æ˜¯ä¸è©²ç™¼ç”Ÿçš„。\n"
+"è«‹é‡å° apt 發佈錯誤回報。"
+
+#.
+#. if (Packages == 1)
+#. {
+#. c1out << std::endl;
+#. c1out <<
+#. _("Since you only requested a single operation it is extremely likely that\n"
+#. "the package is simply not installable and a bug report against\n"
+#. "that package should be filed.") << std::endl;
+#. }
+#.
+#: apt-private/private-install.cc:513 apt-private/private-install.cc:654
+msgid "The following information may help to resolve the situation:"
+msgstr "以下的資訊或許有助於解決當å‰çš„情æ³ï¼š"
+
+#: apt-private/private-install.cc:517
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "內部錯誤,AutoRemover 處ç†å¤±æ•—"
+
+#: apt-private/private-install.cc:524
+#, fuzzy
+msgid ""
+"The following package was automatically installed and is no longer required:"
+msgid_plural ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr[0] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š"
+msgstr[1] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š"
+
+#: apt-private/private-install.cc:528
+#, fuzzy, c-format
+msgid "%lu package was automatically installed and is no longer required.\n"
+msgid_plural ""
+"%lu packages were automatically installed and are no longer required.\n"
+msgstr[0] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š"
+msgstr[1] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š"
+
+#: apt-private/private-install.cc:530
+#, fuzzy
+msgid "Use 'apt-get autoremove' to remove it."
+msgid_plural "Use 'apt-get autoremove' to remove them."
+msgstr[0] "使用 'apt-get autoremove' 來將其移除。"
+msgstr[1] "使用 'apt-get autoremove' 來將其移除。"
+
+#: apt-private/private-install.cc:624
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "您也許得執行 'apt-get -f install' 以修正這些å•é¡Œï¼š"
+
+#: apt-private/private-install.cc:626
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"未能滿足相ä¾é—œä¿‚。請試著ä¸æŒ‡å®šå¥—件來執行 'apt-get -f install'(或採å–其它的解"
+"決方案)。"
+
+#: apt-private/private-install.cc:639
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"有些套件無法安è£ã€‚這å¯èƒ½æ„謂著您的è¦æ±‚難以解決,或是若您使用的是\n"
+"unstable 發行版,å¯èƒ½æœ‰äº›å¿…è¦çš„套件尚未建立,或是被移出 Incoming 了。"
+
+#: apt-private/private-install.cc:660
+msgid "Broken packages"
+msgstr "æ毀的套件"
+
+#: apt-private/private-install.cc:713
+msgid "The following extra packages will be installed:"
+msgstr "下列的é¡å¤–套件將被安è£ï¼š"
+
+#: apt-private/private-install.cc:803
+msgid "Suggested packages:"
+msgstr "建議套件:"
+
+#: apt-private/private-install.cc:804
+msgid "Recommended packages:"
+msgstr "推薦套件:"
+
+#: apt-private/private-download.cc:32
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ã€è­¦å‘Šã€‘:無法驗證下列套件ï¼"
+
+#: apt-private/private-download.cc:36
+msgid "Authentication warning overridden.\n"
+msgstr "忽略了驗證警告。\n"
+
+#: apt-private/private-download.cc:41 apt-private/private-download.cc:48
+msgid "Some packages could not be authenticated"
+msgstr "有部份套件無法驗證"
+
+#: apt-private/private-download.cc:46
+msgid "Install these packages without verification?"
+msgstr "是å¦ä¸ç¶“驗證就安è£é€™äº›å¥—件?"
+
+#: apt-private/private-download.cc:87 apt-pkg/update.cc:84
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "無法å–å¾— %s,%s\n"
+
+#: apt-private/private-output.cc:198
+msgid "installed,upgradable to: "
+msgstr ""
+
+#: apt-private/private-output.cc:204
+#, fuzzy
+msgid "[installed,local]"
+msgstr "ã€å·²å®‰è£ã€‘"
+
+#: apt-private/private-output.cc:207
+msgid "[installed,auto-removable]"
+msgstr ""
+
+#: apt-private/private-output.cc:209
+#, fuzzy
+msgid "[installed,automatic]"
+msgstr "ã€å·²å®‰è£ã€‘"
+
+#: apt-private/private-output.cc:211
+#, fuzzy
+msgid "[installed]"
+msgstr "ã€å·²å®‰è£ã€‘"
+
+#: apt-private/private-output.cc:217
+msgid "[upgradable from: "
+msgstr ""
+
+#: apt-private/private-output.cc:223
+msgid "[residual-config]"
+msgstr ""
+
+#: apt-private/private-output.cc:314
+msgid "The following packages have unmet dependencies:"
+msgstr "下列的套件有未滿足的相ä¾é—œä¿‚:"
+
+#: apt-private/private-output.cc:404
+#, c-format
+msgid "but %s is installed"
+msgstr "但 %s å»å·²å®‰è£"
+
+#: apt-private/private-output.cc:406
+#, c-format
+msgid "but %s is to be installed"
+msgstr "但 %s å»å°‡è¢«å®‰è£"
+
+#: apt-private/private-output.cc:413
+msgid "but it is not installable"
+msgstr "但它å»ç„¡æ³•å®‰è£"
+
+#: apt-private/private-output.cc:415
+msgid "but it is a virtual package"
+msgstr "但它是虛擬套件"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not installed"
+msgstr "但它å»å°šæœªå®‰è£"
+
+#: apt-private/private-output.cc:418
+msgid "but it is not going to be installed"
+msgstr "但它å»å°‡ä¸æœƒè¢«å®‰è£"
+
+#: apt-private/private-output.cc:423
+msgid " or"
+msgstr "或"
+
+#: apt-private/private-output.cc:452
+msgid "The following NEW packages will be installed:"
+msgstr "下列ã€æ–°ã€‘套件將會被安è£ï¼š"
+
+#: apt-private/private-output.cc:478
+msgid "The following packages will be REMOVED:"
+msgstr "下列套件將會被ã€ç§»é™¤ã€‘:"
+
+#: apt-private/private-output.cc:500
+msgid "The following packages have been kept back:"
+msgstr "下列套件將會維æŒå…¶åŽŸæœ‰ç‰ˆæœ¬ï¼š"
+
+#: apt-private/private-output.cc:521
+msgid "The following packages will be upgraded:"
+msgstr "下列套件將會被å‡ç´šï¼š"
+
+#: apt-private/private-output.cc:542
+msgid "The following packages will be DOWNGRADED:"
+msgstr "下列套件將會被ã€é™ç´šã€‘:"
+
+#: apt-private/private-output.cc:562
+msgid "The following held packages will be changed:"
+msgstr "下列被ä¿ç•™ (hold) 的套件將會被更改:"
+
+#: apt-private/private-output.cc:617
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s(因為 %s)"
+
+#: apt-private/private-output.cc:625
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ã€è­¦å‘Šã€‘:下列的基本套件都將被移除。\n"
+"除éžæ‚¨å¾ˆæ¸…楚您在åšä»€éº¼ï¼Œå¦å‰‡è«‹å‹¿è¼•æ˜“嘗試ï¼"
+
+#: apt-private/private-output.cc:656
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "å‡ç´š %lu å€‹ï¼Œæ–°å®‰è£ %lu 個,"
+
+#: apt-private/private-output.cc:660
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "é‡æ–°å®‰è£ %lu 個,"
+
+#: apt-private/private-output.cc:662
+#, c-format
+msgid "%lu downgraded, "
+msgstr "é™ç´š %lu 個,"
+
+#: apt-private/private-output.cc:664
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "移除 %lu 個,有 %lu 個未被å‡ç´šã€‚\n"
+
+#: apt-private/private-output.cc:668
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu 個沒有完整得安è£æˆ–移除。\n"
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
+#. e.g. "Do you want to continue? [Y/n] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:690
+msgid "[Y/n]"
+msgstr ""
+
+#. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
+#. e.g. "Should this file be removed? [y/N] "
+#. The user has to answer with an input matching the
+#. YESEXPR/NOEXPR defined in your l10n.
+#: apt-private/private-output.cc:696
+msgid "[y/N]"
+msgstr ""
+
+#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
+#: apt-private/private-output.cc:707
+msgid "Y"
+msgstr ""
+
+#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
+#: apt-private/private-output.cc:713
+msgid "N"
+msgstr ""
+
+#: apt-private/private-output.cc:735 apt-pkg/cachefilter.cc:33
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "編譯正è¦è¡¨ç¤ºå¼æ™‚發生錯誤 - %s"
+
+#: apt-private/private-cachefile.cc:87
+msgid "Correcting dependencies..."
+msgstr "正在修正相ä¾é—œä¿‚..."
+
+#: apt-private/private-cachefile.cc:90
+msgid " failed."
+msgstr " 失敗。"
+
+#: apt-private/private-cachefile.cc:93
+msgid "Unable to correct dependencies"
+msgstr "無法修正相ä¾é—œä¿‚"
+
+#: apt-private/private-cachefile.cc:96
+msgid "Unable to minimize the upgrade set"
+msgstr "無法將å‡ç´šè¨ˆåŠƒæœ€å°åŒ–"
+
+#: apt-private/private-cachefile.cc:98
+msgid " Done"
+msgstr " 完æˆ"
+
+#: apt-private/private-cachefile.cc:102
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "您也許得執行 'apt-get -f install' 以修正這些å•é¡Œã€‚"
+
+#: apt-private/private-cachefile.cc:105
+msgid "Unmet dependencies. Try using -f."
+msgstr "未能滿足相ä¾é—œä¿‚。試試 -f é¸é …。"
+
+#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
+msgid "Sorting"
+msgstr ""
+
+#: apt-private/private-update.cc:45
+msgid "The update command takes no arguments"
+msgstr "update 指令ä¸éœ€ä»»ä½•åƒæ•¸"
+
+#: apt-private/private-upgrade.cc:18
+msgid "Calculating upgrade... "
+msgstr "籌備å‡ç´šä¸­... "
+
+#: apt-private/private-upgrade.cc:23
+#, fuzzy
+msgid "Internal error, Upgrade broke stuff"
+msgstr "內部錯誤,AllUpgrade 造æˆäº†æ壞"
+
+#: apt-private/private-upgrade.cc:25
+msgid "Done"
+msgstr "完æˆ"
+
+#: apt-private/private-search.cc:61
+msgid "Full Text Search"
+msgstr ""
+
+#: apt-private/private-show.cc:106
+msgid "not a real package (virtual)"
+msgstr ""
+
+#: apt-private/private-main.cc:19
+msgid ""
+"NOTE: This is only a simulation!\n"
+" apt-get needs root privileges for real execution.\n"
+" Keep also in mind that locking is deactivated,\n"
+" so don't depend on the relevance to the real current situation!"
+msgstr ""
+
+#: apt-private/private-sources.cc:41
+#, fuzzy, c-format
+msgid "Failed to parse %s. Edit again? "
+msgstr "無法將 %s æ›´å為 %s"
+
+#: apt-private/private-sources.cc:52
+#, c-format
+msgid "Your '%s' file changed, please run 'apt-get update'."
+msgstr ""
+
+#: apt-private/acqprogress.cc:60
+msgid "Hit "
+msgstr "已有 "
+
+#: apt-private/acqprogress.cc:84
+msgid "Get:"
+msgstr "下載:"
+
+#: apt-private/acqprogress.cc:115
+msgid "Ign "
+msgstr "ç•¥éŽ "
+
+#: apt-private/acqprogress.cc:119
+msgid "Err "
+msgstr "錯誤 "
+
+#: apt-private/acqprogress.cc:140
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "å–å¾— %sB 用了 %s (%sB/s)\n"
+
+#: apt-private/acqprogress.cc:230
+#, c-format
+msgid " [Working]"
+msgstr " [工作中]"
+
+#: apt-private/acqprogress.cc:291
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"æ›´æ›åª’體:請把以下å稱的光碟\n"
+" '%s'\n"
+"放入 '%s' è£ç½®ï¼Œç„¶å¾ŒæŒ‰ [Enter] éµ\n"
#. Only warn if there are no sources.list.d.
#. Only warn if there is no sources.list file.
#: methods/mirror.cc:95 apt-inst/extract.cc:464
-#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:404
-#: apt-pkg/contrib/fileutl.cc:517 apt-pkg/sourcelist.cc:208
-#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
-#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
+#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
+#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:208
+#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
+#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
#, c-format
msgid "Unable to read %s"
msgstr "ç„¡æ³•è®€å– %s"
@@ -1651,34 +1614,34 @@ msgstr "無法和å­ç¨‹åºå»ºç«‹ IPC 管線"
msgid "Connection closed prematurely"
msgstr "連線çªç„¶çµ‚æ­¢"
-#: dselect/install:32
+#: dselect/install:33
msgid "Bad default setting!"
msgstr "錯誤的é è¨­è¨­å®šï¼"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
-#: dselect/install:105 dselect/update:45
+#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
+#: dselect/install:106 dselect/update:45
msgid "Press enter to continue."
msgstr "請按 [Enter] éµä»¥ç¹¼çºŒé€²è¡Œã€‚"
-#: dselect/install:91
+#: dselect/install:92
msgid "Do you want to erase any previously downloaded .deb files?"
msgstr "您想移除所有先å‰ä¸‹è¼‰çš„ .deb 檔嗎?"
-#: dselect/install:101
+#: dselect/install:102
#, fuzzy
msgid "Some errors occurred while unpacking. Packages that were installed"
msgstr "在解開套件時發生錯誤。我è¦æº–備設定"
-#: dselect/install:102
+#: dselect/install:103
#, fuzzy
msgid "will be configured. This may result in duplicate errors"
msgstr "套件已安è£éŽã€‚這會造æˆé‡è¤‡éŒ¯èª¤"
-#: dselect/install:103
+#: dselect/install:104
msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr "或是因為沒有相ä¾é—œä¿‚而造æˆéŒ¯èª¤ã€‚那麼這個錯誤是無關緊è¦çš„"
-#: dselect/install:104
+#: dselect/install:105
msgid ""
"above this message are important. Please fix them and run [I]nstall again"
msgstr "以上的訊æ¯ç›¸ç•¶é‡è¦ã€‚請修正它們並é‡æ–°åŸ·è¡Œå®‰è£[I]"
@@ -1924,36 +1887,36 @@ msgstr "無法讀å–é€£çµ %s"
msgid "Failed to unlink %s"
msgstr "ç„¡æ³•ç§»é™¤é€£çµ %s"
-#: ftparchive/writer.cc:288
+#: ftparchive/writer.cc:289
#, c-format
msgid "*** Failed to link %s to %s"
msgstr "*** 無法將 %s 連çµåˆ° %s"
-#: ftparchive/writer.cc:298
+#: ftparchive/writer.cc:299
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr " é”到了 DeLink çš„ä¸Šé™ %sB。\n"
-#: ftparchive/writer.cc:403
+#: ftparchive/writer.cc:404
msgid "Archive had no package field"
msgstr "套件檔裡沒有套件資訊"
-#: ftparchive/writer.cc:411 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:412 ftparchive/writer.cc:702
#, c-format
msgid " %s has no override entry\n"
msgstr " %s 沒有é‡æ–°å®šç¾©é …ç›®\n"
-#: ftparchive/writer.cc:479 ftparchive/writer.cc:845
+#: ftparchive/writer.cc:480 ftparchive/writer.cc:846
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr " %s 的維護者是 %sï¼Œè€Œéž %s\n"
-#: ftparchive/writer.cc:711
+#: ftparchive/writer.cc:712
#, c-format
msgid " %s has no source override entry\n"
msgstr " %s 沒有原始碼é‡æ–°å®šç¾©é …ç›®\n"
-#: ftparchive/writer.cc:715
+#: ftparchive/writer.cc:716
#, c-format
msgid " %s has no binary override entry either\n"
msgstr " %s 也沒有二元碼é‡æ–°å®šç¾©é …ç›®\n"
@@ -2032,7 +1995,7 @@ msgstr "在å–消 %s 的連çµæ™‚發生å•é¡Œ"
msgid "Failed to rename %s to %s"
msgstr "無法將 %s æ›´å為 %s"
-#: cmdline/apt-internal-solver.cc:37
+#: cmdline/apt-internal-solver.cc:38
#, fuzzy
msgid ""
"Usage: apt-internal-solver\n"
@@ -2100,7 +2063,7 @@ msgstr "æ毀的套件檔"
msgid "Tar checksum failed, archive corrupted"
msgstr "Tar checksum 失敗,套件檔已æ毀"
-#: apt-inst/contrib/extracttar.cc:302
+#: apt-inst/contrib/extracttar.cc:300
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "未知的 TAR 標頭類型 %u,æˆå“¡ %s"
@@ -2224,22 +2187,17 @@ msgid "Unable to stat %s"
msgstr "無法å–å¾— %s 的狀態"
#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
+#: apt-inst/deb/debfile.cc:54
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr "這是個ä¸æ­£ç¢ºçš„ DEB 套件檔,沒有 '%s' æˆå“¡"
-#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
-#: apt-inst/deb/debfile.cc:55
-#, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "這是個ä¸æ­£ç¢ºçš„ DEB 套件檔,沒有 '%s', '%s' 或 '%s' æˆå“¡"
-
-#: apt-inst/deb/debfile.cc:120
+#: apt-inst/deb/debfile.cc:119
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "內部錯誤,找ä¸æ‰¾åˆ°æˆå“¡ %s"
-#: apt-inst/deb/debfile.cc:214
+#: apt-inst/deb/debfile.cc:213
msgid "Unparsable control file"
msgstr "無法分æžçš„ control 檔"
@@ -2298,85 +2256,85 @@ msgid ""
msgstr ""
#. d means days, h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:378
+#: apt-pkg/contrib/strutl.cc:401
#, c-format
msgid "%lid %lih %limin %lis"
msgstr ""
#. h means hours, min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:385
+#: apt-pkg/contrib/strutl.cc:408
#, c-format
msgid "%lih %limin %lis"
msgstr ""
#. min means minutes, s means seconds
-#: apt-pkg/contrib/strutl.cc:392
+#: apt-pkg/contrib/strutl.cc:415
#, c-format
msgid "%limin %lis"
msgstr ""
#. s means seconds
-#: apt-pkg/contrib/strutl.cc:397
+#: apt-pkg/contrib/strutl.cc:420
#, c-format
msgid "%lis"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:1173
+#: apt-pkg/contrib/strutl.cc:1229
#, c-format
msgid "Selection %s not found"
msgstr "é¸é … %s 找ä¸åˆ°"
-#: apt-pkg/contrib/configuration.cc:491
+#: apt-pkg/contrib/configuration.cc:503
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "無法辨識的縮寫類型:'%c'"
-#: apt-pkg/contrib/configuration.cc:605
+#: apt-pkg/contrib/configuration.cc:617
#, c-format
msgid "Opening configuration file %s"
msgstr "開啟設定檔 %s"
-#: apt-pkg/contrib/configuration.cc:773
+#: apt-pkg/contrib/configuration.cc:785
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "語法錯誤 %s:%u:å€å¡Šé–‹é ­æ²’有å稱。"
-#: apt-pkg/contrib/configuration.cc:792
+#: apt-pkg/contrib/configuration.cc:804
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "語法錯誤 %s:%u:標籤格å¼éŒ¯èª¤"
-#: apt-pkg/contrib/configuration.cc:809
+#: apt-pkg/contrib/configuration.cc:821
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "語法錯誤 %s:%u:數值後有多餘的垃圾"
-#: apt-pkg/contrib/configuration.cc:849
+#: apt-pkg/contrib/configuration.cc:861
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "語法錯誤 %s:%u:指令åªèƒ½æ–¼æœ€é«˜å±¤ç´šåŸ·è¡Œ"
-#: apt-pkg/contrib/configuration.cc:856
+#: apt-pkg/contrib/configuration.cc:868
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "語法錯誤 %s:%u: 太多巢狀引入檔"
-#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
+#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "語法錯誤 %s:%u:從此引入"
-#: apt-pkg/contrib/configuration.cc:869
+#: apt-pkg/contrib/configuration.cc:881
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "語法錯誤 %s:%u:ä¸æ”¯æ´çš„指令 '%s'"
-#: apt-pkg/contrib/configuration.cc:872
+#: apt-pkg/contrib/configuration.cc:884
#, fuzzy, c-format
msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
msgstr "語法錯誤 %s:%u:指令åªèƒ½æ–¼æœ€é«˜å±¤ç´šåŸ·è¡Œ"
-#: apt-pkg/contrib/configuration.cc:922
+#: apt-pkg/contrib/configuration.cc:934
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "語法錯誤 %s:%u:在檔案çµå°¾æœ‰å¤šé¤˜çš„垃圾"
@@ -2401,48 +2359,48 @@ msgstr ""
msgid "%c%s... %u%%"
msgstr "%c%s... 完æˆ"
-#: apt-pkg/contrib/cmndline.cc:80
+#: apt-pkg/contrib/cmndline.cc:116
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr "未知的命令列é¸é … '%c' [來自 %s]。"
-#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122
+#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
+#: apt-pkg/contrib/cmndline.cc:158
#, c-format
msgid "Command line option %s is not understood"
msgstr "無法ç†è§£çš„命令列é¸é … %s"
-#: apt-pkg/contrib/cmndline.cc:127
+#: apt-pkg/contrib/cmndline.cc:163
#, c-format
msgid "Command line option %s is not boolean"
msgstr "命令列é¸é … %s ä¸æ˜¯ boolean 值"
-#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
+#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
#, c-format
msgid "Option %s requires an argument."
msgstr "需替é¸é … %s 指定åƒæ•¸ã€‚"
-#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
+#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr "é¸é … %s:在指定設定項目時應該有 =<val>。"
-#: apt-pkg/contrib/cmndline.cc:237
+#: apt-pkg/contrib/cmndline.cc:273
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr "é¸é … %s çš„åƒæ•¸æ‡‰è©²æ˜¯æ•¸å­—,而ä¸æ˜¯ '%s'"
-#: apt-pkg/contrib/cmndline.cc:268
+#: apt-pkg/contrib/cmndline.cc:304
#, c-format
msgid "Option '%s' is too long"
msgstr "é¸é … %s 太長"
-#: apt-pkg/contrib/cmndline.cc:300
+#: apt-pkg/contrib/cmndline.cc:336
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr "åµæ¸¬å™¨ %s 無法ç†è§£ï¼Œè©¦è©¦ true 或 false。"
-#: apt-pkg/contrib/cmndline.cc:350
+#: apt-pkg/contrib/cmndline.cc:386
#, c-format
msgid "Invalid operation %s"
msgstr "無效的æ“作 %s"
@@ -2456,116 +2414,116 @@ msgstr "無法å–得掛載點 %s 的狀態"
msgid "Failed to stat the cdrom"
msgstr "無法å–å¾— CD-ROM 的狀態"
-#: apt-pkg/contrib/fileutl.cc:93
+#: apt-pkg/contrib/fileutl.cc:95
#, fuzzy, c-format
msgid "Problem closing the gzip file %s"
msgstr "在關閉檔案時發生å•é¡Œ"
-#: apt-pkg/contrib/fileutl.cc:226
+#: apt-pkg/contrib/fileutl.cc:228
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr "ä¸åœ¨å”¯è®€æª”案 %s 上使用檔案鎖定"
-#: apt-pkg/contrib/fileutl.cc:231
+#: apt-pkg/contrib/fileutl.cc:233
#, c-format
msgid "Could not open lock file %s"
msgstr "無法開啟鎖定檔 %s"
-#: apt-pkg/contrib/fileutl.cc:254
+#: apt-pkg/contrib/fileutl.cc:256
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr "ä¸åœ¨ä»¥ nfs 掛載的檔案 %s 上使用檔案鎖定"
-#: apt-pkg/contrib/fileutl.cc:259
+#: apt-pkg/contrib/fileutl.cc:261
#, c-format
msgid "Could not get lock %s"
msgstr "無法將 %s 鎖定"
-#: apt-pkg/contrib/fileutl.cc:396 apt-pkg/contrib/fileutl.cc:510
+#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
#, c-format
msgid "List of files can't be created as '%s' is not a directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:430
+#: apt-pkg/contrib/fileutl.cc:432
#, c-format
msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:448
+#: apt-pkg/contrib/fileutl.cc:450
#, c-format
msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:457
+#: apt-pkg/contrib/fileutl.cc:459
#, c-format
msgid ""
"Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:844
+#: apt-pkg/contrib/fileutl.cc:862
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr "å­ç¨‹åº %s 收到一個記憶體錯誤。"
-#: apt-pkg/contrib/fileutl.cc:846
+#: apt-pkg/contrib/fileutl.cc:864
#, fuzzy, c-format
msgid "Sub-process %s received signal %u."
msgstr "å­ç¨‹åº %s 收到一個記憶體錯誤。"
-#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:243
+#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:243
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr "å­ç¨‹åº %s 傳回錯誤碼 (%u)"
-#: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:236
+#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:236
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr "å­ç¨‹åº %s ä¸é æœŸå¾—çµæŸ"
-#: apt-pkg/contrib/fileutl.cc:988
+#: apt-pkg/contrib/fileutl.cc:1016
#, c-format
msgid "Could not open file %s"
msgstr "無法開啟檔案 %s"
-#: apt-pkg/contrib/fileutl.cc:1065
+#: apt-pkg/contrib/fileutl.cc:1093
#, fuzzy, c-format
msgid "Could not open file descriptor %d"
msgstr "無法開啟管線給 %s 使用"
-#: apt-pkg/contrib/fileutl.cc:1150
+#: apt-pkg/contrib/fileutl.cc:1178
msgid "Failed to create subprocess IPC"
msgstr "無法建立å­ç¨‹åº IPC"
-#: apt-pkg/contrib/fileutl.cc:1205
+#: apt-pkg/contrib/fileutl.cc:1233
msgid "Failed to exec compressor "
msgstr "無法執行壓縮程å¼"
-#: apt-pkg/contrib/fileutl.cc:1298
+#: apt-pkg/contrib/fileutl.cc:1326
#, fuzzy, c-format
msgid "read, still have %llu to read but none left"
msgstr "讀å–,ä»æœ‰ %lu 未讀但已無空間"
-#: apt-pkg/contrib/fileutl.cc:1385 apt-pkg/contrib/fileutl.cc:1407
+#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
#, fuzzy, c-format
msgid "write, still have %llu to write but couldn't"
msgstr "寫入,ä»æœ‰ %lu 待寫入但已沒辨法"
-#: apt-pkg/contrib/fileutl.cc:1695
+#: apt-pkg/contrib/fileutl.cc:1726
#, fuzzy, c-format
msgid "Problem closing the file %s"
msgstr "在關閉檔案時發生å•é¡Œ"
-#: apt-pkg/contrib/fileutl.cc:1707
+#: apt-pkg/contrib/fileutl.cc:1738
#, fuzzy, c-format
msgid "Problem renaming the file %s to %s"
msgstr "在åŒæ­¥æª”案時發生å•é¡Œ"
-#: apt-pkg/contrib/fileutl.cc:1718
+#: apt-pkg/contrib/fileutl.cc:1749
#, fuzzy, c-format
msgid "Problem unlinking the file %s"
msgstr "在刪除檔案時發生å•é¡Œ"
-#: apt-pkg/contrib/fileutl.cc:1731
+#: apt-pkg/contrib/fileutl.cc:1762
msgid "Problem syncing the file"
msgstr "在åŒæ­¥æª”案時發生å•é¡Œ"
@@ -2683,12 +2641,12 @@ msgstr "無法開啟 StateFile %s"
msgid "Failed to write temporary StateFile %s"
msgstr "無法寫入暫存的 StateFile %s"
-#: apt-pkg/tagfile.cc:129
+#: apt-pkg/tagfile.cc:138
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr "無法辨識套件檔 %s (1)"
-#: apt-pkg/tagfile.cc:216
+#: apt-pkg/tagfile.cc:231
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr "無法辨識套件檔 %s (2)"
@@ -2763,19 +2721,19 @@ msgstr "來æºåˆ—表 %2$s 中的第 %1$u 行的格å¼éŒ¯èª¤ï¼ˆé¡žåž‹ï¼‰"
msgid "Type '%s' is not known on line %u in source list %s"
msgstr "未知的類型 '%1$s',ä½æ–¼åœ¨ä¾†æºåˆ—表 %3$s 中的第 %2$u è¡Œ"
-#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:923
+#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
#, c-format
msgid ""
"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
"under APT::Immediate-Configure for details. (%d)"
msgstr ""
-#: apt-pkg/packagemanager.cc:498 apt-pkg/packagemanager.cc:529
+#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
#, fuzzy, c-format
msgid "Could not configure '%s'. "
msgstr "無法開啟檔案 %s"
-#: apt-pkg/packagemanager.cc:571
+#: apt-pkg/packagemanager.cc:570
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
@@ -2796,7 +2754,7 @@ msgid ""
"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr "套件 %s 需è¦é‡æ–°å®‰è£ï¼Œä½†æ‰¾ä¸åˆ°å®ƒçš„套件檔。"
-#: apt-pkg/algorithms.cc:1238
+#: apt-pkg/algorithms.cc:1068
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
@@ -2804,17 +2762,10 @@ msgstr ""
"錯誤,pkgProblemResolver::Resolve 的建立中斷了,這å¯èƒ½è‚‡å› æ–¼ä¿ç•™ (hold) 套"
"件。"
-#: apt-pkg/algorithms.cc:1240
+#: apt-pkg/algorithms.cc:1070
msgid "Unable to correct problems, you have held broken packages."
msgstr "無法修正å•é¡Œï¼Œæ‚¨ä¿ç•™ (hold) 了æ毀的套件。"
-#: apt-pkg/algorithms.cc:1592 apt-pkg/algorithms.cc:1594
-#, fuzzy
-msgid ""
-"Some index files failed to download. They have been ignored, or old ones "
-"used instead."
-msgstr "有一些索引檔ä¸èƒ½ä¸‹è¼‰ï¼Œå®ƒå€‘å¯èƒ½è¢«ç•¥éŽäº†ï¼Œæˆ–是替而使用原有的索引檔。"
-
#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
#, fuzzy, c-format
msgid "List directory %spartial is missing."
@@ -2857,12 +2808,12 @@ msgstr "安è£æ–¹å¼ %s 沒有正確啟動"
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr "請把標籤為 '%s' 的光碟放入 '%s' è£ç½®ä¸­ï¼Œç„¶å¾ŒæŒ‰ä¸‹ [Enter] éµã€‚"
-#: apt-pkg/init.cc:151
+#: apt-pkg/init.cc:143
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr "ä¸æ”¯æ´çš„套件包è£ç³»çµ± '%s'"
-#: apt-pkg/init.cc:167
+#: apt-pkg/init.cc:159
msgid "Unable to determine a suitable packaging system type"
msgstr "無法確èªåˆé©çš„套件包è£ç³»çµ±é¡žåž‹"
@@ -2894,17 +2845,17 @@ msgid ""
"available in the sources"
msgstr ""
-#: apt-pkg/policy.cc:399
+#: apt-pkg/policy.cc:410
#, fuzzy, c-format
msgid "Invalid record in the preferences file %s, no Package header"
msgstr "個人設定檔中有些ä¸æ­£ç¢ºè³‡æ–™ï¼Œæ²’有以 Package é–‹é ­"
-#: apt-pkg/policy.cc:421
+#: apt-pkg/policy.cc:432
#, c-format
msgid "Did not understand pin type %s"
msgstr "無法分æžéŽ–定類型 %s"
-#: apt-pkg/policy.cc:429
+#: apt-pkg/policy.cc:440
msgid "No priority (or zero) specified for pin"
msgstr "銷定並沒有優先順åºä¹‹åˆ†ï¼ˆæˆ–零)"
@@ -2971,44 +2922,48 @@ msgstr "在儲存來æºå¿«å–時 IO 錯誤"
msgid "rename failed, %s (%s -> %s)."
msgstr "無法é‡æ–°å‘½å,%s (%s -> %s)。"
-#: apt-pkg/acquire-item.cc:599
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum ä¸ç¬¦"
-
-#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1887
-#: apt-pkg/acquire-item.cc:2030
+#: apt-pkg/acquire-item.cc:154
msgid "Hash Sum mismatch"
msgstr "Hash Sum ä¸ç¬¦"
-#: apt-pkg/acquire-item.cc:1388
+#: apt-pkg/acquire-item.cc:159
+msgid "Size mismatch"
+msgstr "大å°ä¸ç¬¦"
+
+#: apt-pkg/acquire-item.cc:164
+#, fuzzy
+msgid "Invalid file format"
+msgstr "無效的æ“作 %s"
+
+#: apt-pkg/acquire-item.cc:1419
#, c-format
msgid ""
"Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
"or malformed file)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1404
+#: apt-pkg/acquire-item.cc:1435
#, fuzzy, c-format
msgid "Unable to find hash sum for '%s' in Release file"
msgstr "無法辨別 Release 檔 %s"
-#: apt-pkg/acquire-item.cc:1446
+#: apt-pkg/acquire-item.cc:1477
msgid "There is no public key available for the following key IDs:\n"
msgstr "無法å–得以下的密鑰 ID 的公鑰:\n"
-#: apt-pkg/acquire-item.cc:1484
+#: apt-pkg/acquire-item.cc:1515
#, c-format
msgid ""
"Release file for %s is expired (invalid since %s). Updates for this "
"repository will not be applied."
msgstr ""
-#: apt-pkg/acquire-item.cc:1506
+#: apt-pkg/acquire-item.cc:1537
#, c-format
msgid "Conflicting distribution: %s (expected %s but got %s)"
msgstr "發行版本è¡çªï¼š%s(應當是 %s 但å»å¾—到 %s)"
-#: apt-pkg/acquire-item.cc:1536
+#: apt-pkg/acquire-item.cc:1567
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
@@ -3016,12 +2971,12 @@ msgid ""
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
-#: apt-pkg/acquire-item.cc:1546 apt-pkg/acquire-item.cc:1551
+#: apt-pkg/acquire-item.cc:1577 apt-pkg/acquire-item.cc:1582
#, c-format
msgid "GPG error: %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1663
+#: apt-pkg/acquire-item.cc:1705
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
@@ -3030,29 +2985,23 @@ msgstr ""
"找ä¸åˆ° %s 套件的æŸå€‹æª”案。這æ„味著您å¯èƒ½è¦æ‰‹å‹•ä¿®å¾©é€™å€‹å¥—件。(因為找ä¸åˆ°å¹³"
"å°ï¼‰"
-#: apt-pkg/acquire-item.cc:1722
+#: apt-pkg/acquire-item.cc:1771
#, 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."
-msgstr "找ä¸åˆ° %s 套件的æŸå€‹æª”案。這æ„味著您å¯èƒ½è¦æ‰‹å‹•ä¿®å¾©é€™å€‹å¥—件。"
+msgid "Can't find a source to download version '%s' of '%s'"
+msgstr ""
-#: apt-pkg/acquire-item.cc:1781
+#: apt-pkg/acquire-item.cc:1829
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr "這個套件的索引檔æ壞了。沒有套件 %s çš„ Filename: 欄ä½ã€‚"
-#: apt-pkg/acquire-item.cc:1879
-msgid "Size mismatch"
-msgstr "大å°ä¸ç¬¦"
-
-#: apt-pkg/indexrecords.cc:68
+#: apt-pkg/indexrecords.cc:73
#, c-format
msgid "Unable to parse Release file %s"
msgstr "無法辨別 Release 檔 %s"
-#: apt-pkg/indexrecords.cc:78
+#: apt-pkg/indexrecords.cc:81
#, c-format
msgid "No sections in Release file %s"
msgstr "在 Release 檔 %s 裡沒有å€æ®µ"
@@ -3193,49 +3142,49 @@ msgstr ""
msgid "Hash mismatch for: %s"
msgstr "Hash Sum ä¸ç¬¦"
-#: apt-pkg/cacheset.cc:403
+#: apt-pkg/cacheset.cc:467
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "找ä¸åˆ° '%2$s' çš„ '%1$s' 發行版"
-#: apt-pkg/cacheset.cc:406
+#: apt-pkg/cacheset.cc:470
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "找ä¸åˆ° '%s' 版的 '%s'"
-#: apt-pkg/cacheset.cc:517
+#: apt-pkg/cacheset.cc:581
#, fuzzy, c-format
msgid "Couldn't find task '%s'"
msgstr "無法找到主題 %s"
-#: apt-pkg/cacheset.cc:523
+#: apt-pkg/cacheset.cc:587
#, fuzzy, c-format
msgid "Couldn't find any package by regex '%s'"
msgstr "無法找到套件 %s"
-#: apt-pkg/cacheset.cc:534
+#: apt-pkg/cacheset.cc:598
#, c-format
msgid "Can't select versions from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
+#: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
#, c-format
msgid ""
"Can't select installed nor candidate version from package '%s' as it has "
"neither of them"
msgstr ""
-#: apt-pkg/cacheset.cc:555
+#: apt-pkg/cacheset.cc:619
#, c-format
msgid "Can't select newest version from package '%s' as it is purely virtual"
msgstr ""
-#: apt-pkg/cacheset.cc:563
+#: apt-pkg/cacheset.cc:627
#, c-format
msgid "Can't select candidate version from package %s as it has no candidate"
msgstr ""
-#: apt-pkg/cacheset.cc:571
+#: apt-pkg/cacheset.cc:635
#, c-format
msgid "Can't select installed version from package %s as it is not installed"
msgstr ""
@@ -3260,127 +3209,154 @@ msgstr ""
msgid "Execute external solver"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:73
+#: apt-pkg/install-progress.cc:50
+#, c-format
+msgid "Progress: [%3i%%]"
+msgstr ""
+
+#: apt-pkg/install-progress.cc:84 apt-pkg/install-progress.cc:167
+msgid "Running dpkg"
+msgstr ""
+
+#: apt-pkg/update.cc:110 apt-pkg/update.cc:112
+#, fuzzy
+msgid ""
+"Some index files failed to download. They have been ignored, or old ones "
+"used instead."
+msgstr "有一些索引檔ä¸èƒ½ä¸‹è¼‰ï¼Œå®ƒå€‘å¯èƒ½è¢«ç•¥éŽäº†ï¼Œæˆ–是替而使用原有的索引檔。"
+
+#: apt-pkg/deb/dpkgpm.cc:90
#, c-format
msgid "Installing %s"
msgstr "æ­£åœ¨å®‰è£ %s"
-#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:982
+#: apt-pkg/deb/dpkgpm.cc:91 apt-pkg/deb/dpkgpm.cc:977
#, c-format
msgid "Configuring %s"
msgstr "正在設定 %s"
-#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:989
+#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:984
#, c-format
msgid "Removing %s"
msgstr "正在移除 %s"
-#: apt-pkg/deb/dpkgpm.cc:76
+#: apt-pkg/deb/dpkgpm.cc:93
#, fuzzy, c-format
msgid "Completely removing %s"
msgstr "已完整移除 %s"
-#: apt-pkg/deb/dpkgpm.cc:77
+#: apt-pkg/deb/dpkgpm.cc:94
#, c-format
msgid "Noting disappearance of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:78
+#: apt-pkg/deb/dpkgpm.cc:95
#, c-format
msgid "Running post-installation trigger %s"
msgstr "正在執行安è£å¾Œå¥—件後續處ç†ç¨‹å¼ %s"
#. FIXME: use a better string after freeze
-#: apt-pkg/deb/dpkgpm.cc:735
+#: apt-pkg/deb/dpkgpm.cc:808
#, c-format
msgid "Directory '%s' missing"
msgstr "找ä¸åˆ° '%s' 目錄"
-#: apt-pkg/deb/dpkgpm.cc:750 apt-pkg/deb/dpkgpm.cc:770
+#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845
#, fuzzy, c-format
msgid "Could not open file '%s'"
msgstr "無法開啟檔案 %s"
-#: apt-pkg/deb/dpkgpm.cc:975
+#: apt-pkg/deb/dpkgpm.cc:970
#, c-format
msgid "Preparing %s"
msgstr "正在準備 %s"
-#: apt-pkg/deb/dpkgpm.cc:976
+#: apt-pkg/deb/dpkgpm.cc:971
#, c-format
msgid "Unpacking %s"
msgstr "正在解開 %s"
-#: apt-pkg/deb/dpkgpm.cc:981
+#: apt-pkg/deb/dpkgpm.cc:976
#, c-format
msgid "Preparing to configure %s"
msgstr "正在準備設定 %s"
-#: apt-pkg/deb/dpkgpm.cc:983
+#: apt-pkg/deb/dpkgpm.cc:978
#, c-format
msgid "Installed %s"
msgstr "å·²å®‰è£ %s"
-#: apt-pkg/deb/dpkgpm.cc:988
+#: apt-pkg/deb/dpkgpm.cc:983
#, c-format
msgid "Preparing for removal of %s"
msgstr "正在準備移除 %s"
-#: apt-pkg/deb/dpkgpm.cc:990
+#: apt-pkg/deb/dpkgpm.cc:985
#, c-format
msgid "Removed %s"
msgstr "已移除 %s"
-#: apt-pkg/deb/dpkgpm.cc:995
+#: apt-pkg/deb/dpkgpm.cc:990
#, c-format
msgid "Preparing to completely remove %s"
msgstr "正在準備完整移除 %s"
-#: apt-pkg/deb/dpkgpm.cc:996
+#: apt-pkg/deb/dpkgpm.cc:991
#, c-format
msgid "Completely removed %s"
msgstr "已完整移除 %s"
-#: apt-pkg/deb/dpkgpm.cc:1243
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr "無法寫入記錄檔,openpty() 失敗(/dev/pts 未掛載?)\n"
+#: apt-pkg/deb/dpkgpm.cc:1041 apt-pkg/deb/dpkgpm.cc:1062
+#, fuzzy, c-format
+msgid "Can not write log (%s)"
+msgstr "無法寫入 %s"
+
+#: apt-pkg/deb/dpkgpm.cc:1041
+msgid "Is /dev/pts mounted?"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1273
-msgid "Running dpkg"
+#: apt-pkg/deb/dpkgpm.cc:1062
+msgid "Is stdout a terminal?"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1445
+#: apt-pkg/deb/dpkgpm.cc:1545
msgid "Operation was interrupted before it could finish"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1507
+#: apt-pkg/deb/dpkgpm.cc:1607
msgid "No apport report written because MaxReports is reached already"
msgstr ""
#. check if its not a follow up error
-#: apt-pkg/deb/dpkgpm.cc:1512
+#: apt-pkg/deb/dpkgpm.cc:1612
msgid "dependency problems - leaving unconfigured"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1514
+#: apt-pkg/deb/dpkgpm.cc:1614
msgid ""
"No apport report written because the error message indicates its a followup "
"error from a previous failure."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1520
+#: apt-pkg/deb/dpkgpm.cc:1620
msgid ""
"No apport report written because the error message indicates a disk full "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1526
+#: apt-pkg/deb/dpkgpm.cc:1627
msgid ""
"No apport report written because the error message indicates a out of memory "
"error"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:1533
+#: apt-pkg/deb/dpkgpm.cc:1634 apt-pkg/deb/dpkgpm.cc:1640
+msgid ""
+"No apport report written because the error message indicates an issue on the "
+"local system"
+msgstr ""
+
+#: apt-pkg/deb/dpkgpm.cc:1661
msgid ""
"No apport report written because the error message indicates a dpkg I/O error"
msgstr ""
@@ -3410,6 +3386,86 @@ msgid "Not locked"
msgstr ""
#, fuzzy
+#~ msgid "Note, selecting '%s' for task '%s'\n"
+#~ msgstr "注æ„,根據正è¦è¡¨ç¤ºå¼ '%2$s' 而é¸æ“‡äº† %1$s\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' for regex '%s'\n"
+#~ msgstr "注æ„,根據正è¦è¡¨ç¤ºå¼ '%2$s' 而é¸æ“‡äº† %1$s\n"
+
+#~ msgid "Package %s is a virtual package provided by:\n"
+#~ msgstr "套件 %s 是虛擬套件,æ供者為:\n"
+
+#, fuzzy
+#~ msgid " [Not candidate version]"
+#~ msgstr "候é¸ç‰ˆæœ¬"
+
+#~ msgid "You should explicitly select one to install."
+#~ msgstr "請您明確地é¸æ“‡ä¸€å€‹ä¾†é€²è¡Œå®‰è£ã€‚"
+
+#~ msgid ""
+#~ "Package %s is not available, but is referred to by another package.\n"
+#~ "This may mean that the package is missing, has been obsoleted, or\n"
+#~ "is only available from another source\n"
+#~ msgstr ""
+#~ "無法å–得套件 %s,但它å»è¢«å…¶å®ƒçš„套件引用了。\n"
+#~ "這æ„味著這個套件å¯èƒ½å·²ç¶“消失了ã€è¢«å»¢æ£„了,或是åªèƒ½ç”±å…¶ä»–的來æºå–å¾—\n"
+
+#~ msgid "However the following packages replace it:"
+#~ msgstr "然而,下列的套件å–代了它:"
+
+#, fuzzy
+#~ msgid "Package '%s' has no installation candidate"
+#~ msgstr "套件 %s 沒有å¯å®‰è£çš„候é¸ç‰ˆæœ¬"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
+#~ msgstr "套件 %s 並沒有被安è£ï¼Œæ‰€ä»¥ä¹Ÿä¸æœƒè¢«ç§»é™¤\n"
+
+#, fuzzy
+#~ msgid "Package '%s' is not installed, so not removed\n"
+#~ msgstr "套件 %s 並沒有被安è£ï¼Œæ‰€ä»¥ä¹Ÿä¸æœƒè¢«ç§»é™¤\n"
+
+#, fuzzy
+#~ msgid "Note, selecting '%s' instead of '%s'\n"
+#~ msgstr "注æ„,é¸æ“‡äº†ä»¥ %s 替代 %s\n"
+
+#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#~ msgstr "忽略 %s,它已被安è£ä¸”沒有計劃è¦é€²è¡Œå‡ç´šã€‚\n"
+
+#, fuzzy
+#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
+#~ msgstr "忽略 %s,它已被安è£ä¸”沒有計劃è¦é€²è¡Œå‡ç´šã€‚\n"
+
+#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#~ msgstr "無法é‡æ–°å®‰è£ %s,因為它無法下載。\n"
+
+#~ msgid "%s is already the newest version.\n"
+#~ msgstr "%s 已經是最新版本了。\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s'\n"
+#~ msgstr "é¸å®šçš„版本為 %3$s çš„ %1$s (%2$s)\n"
+
+#, fuzzy
+#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
+#~ msgstr "é¸å®šçš„版本為 %3$s çš„ %1$s (%2$s)\n"
+
+#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#~ msgstr "這是個ä¸æ­£ç¢ºçš„ DEB 套件檔,沒有 '%s', '%s' 或 '%s' æˆå“¡"
+
+#~ msgid "MD5Sum mismatch"
+#~ msgstr "MD5Sum ä¸ç¬¦"
+
+#~ msgid ""
+#~ "I wasn't able to locate a file for the %s package. This might mean you "
+#~ "need to manually fix this package."
+#~ msgstr "找ä¸åˆ° %s 套件的æŸå€‹æª”案。這æ„味著您å¯èƒ½è¦æ‰‹å‹•ä¿®å¾©é€™å€‹å¥—件。"
+
+#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#~ msgstr "無法寫入記錄檔,openpty() 失敗(/dev/pts 未掛載?)\n"
+
+#, fuzzy
#~ msgid "Skipping nonexistent file %s"
#~ msgstr "開啟設定檔 %s"
diff --git a/prepare-release b/prepare-release
index a9cc49cfd..dfa37631b 100755
--- a/prepare-release
+++ b/prepare-release
@@ -1,15 +1,18 @@
#!/bin/sh
-
set -e
+dpkg-checkbuilddeps -d 'libxml2-utils'
+
+if [ -n "${GBP_BUILD_DIR}" ]; then
+ cd "$GBP_BUILD_DIR"
+fi
+
VERSION=$(dpkg-parsechangelog | sed -n -e '/^Version:/s/^Version: //p')
DISTRIBUTION=$(dpkg-parsechangelog | sed -n -e '/^Distribution:/s/^Distribution: //p')
LIBAPTPKGVERSION="$(awk -v ORS='.' '/^\#define APT_PKG_M/ {print $3}' apt-pkg/init.h | sed 's/\.$//')"
LIBAPTINSTVERSION="$(egrep '^MAJOR=' apt-inst/makefile |cut -d '=' -f 2)"
-dpkg-checkbuilddeps -d 'libxml2-utils'
-
if [ "$1" = 'pre-export' ]; then
libraryversioncheck() {
local LIBRARY="$1"
@@ -47,27 +50,41 @@ if [ "$1" = 'pre-export' ]; then
sed -i -e "s/^<!ENTITY apt-product-version \".*\">$/<!ENTITY apt-product-version \"${VERSION}\">/" doc/apt-verbatim.ent
elif [ "$1" = 'post-build' ]; then
if [ "$DISTRIBUTION" != "UNRELEASED" ]; then
- echo >&2 "REMEMBER: Tag this release with »bzr tag ${VERSION}« if you are satisfied"
+ echo >&2 "REMEMBER: Tag this release with »git tag ${VERSION}« if you are satisfied"
else
echo >&2 'REMEMBER: Change to a valid distribution before release'
fi
- if ! xmllint --nonet --valid --noout $(find doc/ -maxdepth 1 -name '*.xml'); then
- echo >&2 'WARNING: original docbook manpages have errors!'
- elif ! xmllint --nonet --valid --noout $(find doc/ -mindepth 2 -maxdepth 2 -name '*.xml'); then
- echo >&2 'WARNING: translated docbook manpages have errors, but originals are okay!'
+
+ # check the manpages with each vendor for vendor-specific errors…
+ find vendor -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 2 | while read DISTRO; do
+ ln -sf ../vendor/${DISTRO}/apt-vendor.ent doc
+ if ! xmllint --nonet --valid --noout $(find doc/ -maxdepth 1 -name '*.xml'); then
+ echo >&2 "WARNING: original docbook manpages have errors with vendor ${DISTRO}!"
+ fi
+ done
+ # lets assume we will always have a german manpage translation
+ if [ -e 'doc/de/' ]; then
+ # … but check the translations only with one vendor for translation-specific errors
+ if ! xmllint --nonet --valid --noout $(find doc/ -mindepth 2 -maxdepth 2 -name '*.xml'); then
+ echo >&2 "WARNING: translated docbook manpages have errors!"
+ fi
+ else
+ echo >&2 "ERROR: translated manpages need to be build before they can be checked!"
fi
+ rm -f doc/apt-vendor.ent
+
elif [ "$1" = 'library' ]; then
librarysymbols() {
echo "Checking $1 in version $2"
local tmpfile=$(mktemp)
- dpkg-gensymbols -p${1}${2} -ebuild/bin/${1}.so.${2} -Idebian/${1}${2}.symbols -O/dev/null 2> /dev/null > $tmpfile
+ dpkg-gensymbols -p${1}${2} -ebuild/bin/${1}.so.${2} -Idebian/${1}${2}.symbols -O/dev/null 2> /dev/null > $tmpfile || true
echo '=== Missing symbols:'
- grep '^+#MISSING' $tmpfile
+ grep '^+#MISSING' $tmpfile || true
echo '=== New symbols:'
grep '^+ ' $tmpfile | cut -d' ' -f 2 | cut -d'@' -f 1 | c++filt | while read line; do
echo " (c++)\"${line}@Base\" $VERSION"
done | sort -u
- rm $tmpfile
+ rm -f $tmpfile
}
librarysymbols 'libapt-pkg' "${LIBAPTPKGVERSION}"
echo
@@ -77,7 +94,7 @@ else
\t$0 post-build
\t$0 library
-If you use »bzr builddeb« you can leave this script alone as it will
+If you use »git buildpackage« you can leave this script alone as it will
be run at the right places auto-magically. Otherwise you should use
»pre-export« to update po and pot files as well as version numbering.
»post-build« can be used to run some more or less useful checks later on.
diff --git a/vendor/debian/makefile b/vendor/debian/makefile
index 42c86e1c4..1f82d7f47 100644
--- a/vendor/debian/makefile
+++ b/vendor/debian/makefile
@@ -5,7 +5,7 @@ SUBDIR=vendor/debian
# Bring in the default rules
include ../../buildlib/defaults.mak
-doc binary: sources.list
+doc binary manpages: sources.list
sources.list: sources.list.in ../../doc/apt-verbatim.ent
sed -e 's#&stable-codename;#$(shell ../getinfo debian-stable-codename)#g' $< > $@
diff --git a/vendor/makefile b/vendor/makefile
index a6d53abd0..c05b516ef 100644
--- a/vendor/makefile
+++ b/vendor/makefile
@@ -12,8 +12,9 @@ doc: doc/subdirs
clean: clean/subdirs
veryclean: veryclean/subdirs
dirs: dirs/subdirs
+manpages: manpages/subdirs
-all/subdirs binary/subdirs doc/subdirs dirs/subdirs:
+all/subdirs binary/subdirs doc/subdirs dirs/subdirs manpages/subdirs:
$(MAKE) -C current $(patsubst %/subdirs,%,$@)
clean/subdirs veryclean/subdirs:
diff --git a/vendor/ubuntu/makefile b/vendor/ubuntu/makefile
index 88061bde2..c4b35935f 100644
--- a/vendor/ubuntu/makefile
+++ b/vendor/ubuntu/makefile
@@ -5,7 +5,7 @@ SUBDIR=vendor/ubuntu
# Bring in the default rules
include ../../buildlib/defaults.mak
-doc binary: sources.list
+doc binary manpages: sources.list
sources.list: sources.list.in ../../doc/apt-verbatim.ent
sed -e 's#&ubuntu-codename;#$(shell ../getinfo ubuntu-codename)#g' $< > $@